From 4607a101c3e47ecea1ccd883b1f71163f97662db Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Wed, 24 Jul 2024 17:47:03 +0530 Subject: [PATCH 01/14] feat(android): calculate CPU usage in SDK --- .../android/performance/CpuUsageCalculator.kt | 40 ++++++ .../android/performance/CpuUsageCollector.kt | 22 ++- .../android/performance/CpuUsageData.kt | 4 + .../measure/android/fakes/FakeEventFactory.kt | 2 + .../performance/CpuUsageCollectorTest.kt | 128 ++++++++++++++++-- 5 files changed, 180 insertions(+), 16 deletions(-) create mode 100644 measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCalculator.kt diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCalculator.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCalculator.kt new file mode 100644 index 000000000..219aaec30 --- /dev/null +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCalculator.kt @@ -0,0 +1,40 @@ +package sh.measure.android.performance + +internal fun calculatePercentageUsage( + utime: Long, + stime: Long, + cutime: Long, + cstime: Long, + uptime: Long, + previousUtime: Long, + previousStime: Long, + previousCutime: Long, + previousCstime: Long, + previousUptime: Long, + numCores: Int, + clockSpeedHz: Long, +): Double { + if (numCores <= 0) { + // This should never happen, but just in case. + return 0.0 + } + val durationInSeconds = (uptime - previousUptime) / 1000 + if (durationInSeconds <= 0) { + // This should never happen, but just in case. + return 0.0 + } + val total = utime + stime + cutime + cstime + val previousTotal = previousUtime + previousStime + previousCutime + previousCstime + val deltaTotalUsage = total - previousTotal + + val usageTimeInSeconds = deltaTotalUsage / clockSpeedHz.toDouble() + val usageOverInterval = usageTimeInSeconds / durationInSeconds + val averageUsagePerCore = usageOverInterval / numCores + val percentageUsage = averageUsagePerCore * 100 + if (percentageUsage < 0) { + // This should never happen (utime, stime, cutime, cstime are cumulative values), but + // just in case. + return 0.0 + } + return percentageUsage +} diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt index f15043f76..f1c3df94f 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt @@ -60,6 +60,24 @@ internal class CpuUsageCollector( val clockSpeedHz = osSysConfProvider.get(OsConstants._SC_CLK_TCK) if (clockSpeedHz <= 0L || numCores <= 0L) return val uptime = timeProvider.elapsedRealtime + val percentageCpuUsage = if (prevCpuUsageData == null) { + 0.0 + } else { + calculatePercentageUsage( + utime = utime, + stime = stime, + cutime = cutime, + cstime = cstime, + uptime = uptime, + previousCstime = prevCpuUsageData!!.cstime, + previousCutime = prevCpuUsageData!!.cutime, + previousStime = prevCpuUsageData!!.stime, + previousUtime = prevCpuUsageData!!.utime, + previousUptime = prevCpuUsageData!!.uptime, + numCores = numCores, + clockSpeedHz = clockSpeedHz, + ) + } val cpuUsageData = CpuUsageData( num_cores = numCores, clock_speed = clockSpeedHz, @@ -70,8 +88,10 @@ internal class CpuUsageCollector( cstime = cstime, start_time = startTime, interval_config = CPU_TRACKING_INTERVAL_MS, + percentage_usage = percentageCpuUsage, ) - if (prevCpuUsageData?.utime == cpuUsageData.utime && prevCpuUsageData?.stime == cpuUsageData.stime) { + if (prevCpuUsageData?.percentage_usage == cpuUsageData.percentage_usage) { + // do not track the event if the usage is the same as the previous one. return } eventProcessor.track( diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt index 6dda257ed..88c39217f 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt @@ -40,4 +40,8 @@ internal data class CpuUsageData( * The interval between two collections. */ val interval_config: Long, + /** + * Average %CPU usage in the interval set by [interval_config]. + */ + val percentage_usage: Double, ) diff --git a/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt b/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt index 632bc4b1a..f0da61e3a 100644 --- a/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt +++ b/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt @@ -296,6 +296,7 @@ internal object FakeEventFactory { cstime: Long = 1234L, stime: Long = 9876L, intervalConfig: Long = 1000, + percentageUsage: Double = 0.0, ): CpuUsageData { return CpuUsageData( numCores, @@ -307,6 +308,7 @@ internal object FakeEventFactory { cstime, stime, intervalConfig, + percentageUsage, ) } diff --git a/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt b/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt index 68edb7746..8dec339fa 100644 --- a/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt +++ b/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt @@ -43,7 +43,13 @@ internal class CpuUsageCollectorTest { ) // setup mocks - val file = createDummyProcStatFile() + val file = createDummyProcStatFile( + utime = 400, + stime = 500, + cuTime = 600, + csTime = 700, + startTime = 58385, + ) `when`(procProvider.getStatFile(processInfo.getPid())).thenReturn(file) // The OsConstants are all zero, hence we need to depend on sequence of calls in code. // The first call is for _SC_NPROCESSORS_CONF and the second call is for _SC_CLK_TCK. @@ -51,7 +57,16 @@ internal class CpuUsageCollectorTest { } @Test - fun `CpuUsageCollector tracks cpu usage`() { + fun `CpuUsageCollector tracks cpu usage data`() { + val file = createDummyProcStatFile( + utime = 100, + stime = 200, + cuTime = 300, + csTime = 400, + startTime = 5835385, + ) + `when`(procProvider.getStatFile(processInfo.getPid())).thenReturn(file) + cpuUsageCollector.register() verify(eventProcessor).track( type = EventType.CPU_USAGE, @@ -60,16 +75,100 @@ internal class CpuUsageCollectorTest { num_cores = 1, clock_speed = 100, uptime = 20_000, - utime = 500, - stime = 600, - cutime = 100, - cstime = 200, + utime = 100, + stime = 200, + cutime = 300, + cstime = 400, start_time = 5835385, interval_config = CPU_TRACKING_INTERVAL_MS, + percentage_usage = 0.0, ), ) } + @Test + fun `calculates percentage cpu usage`() { + val result = calculatePercentageUsage( + utime = 300, + stime = 400, + cutime = 500, + cstime = 600, + uptime = 2000, + previousUtime = 200, + previousStime = 300, + previousCutime = 400, + previousCstime = 500, + previousUptime = 1000, + numCores = 8, + clockSpeedHz = 100, + ) + // verified manually using the formula: + // ((utime + stime + cutime + cstime) + // - (previousUtime + previousStime + previousCutime + previousCstime)) + // divided by + // (((uptime - previousUptime) / previousUptime) * numCores * clockSpeedHz) + // + // and then multiply the result by 100. + Assert.assertEquals(50.0, result, 0.0) + } + + @Test + fun `cou usage calculation returns 0 when CPU cores are 0`() { + val result = calculatePercentageUsage( + utime = 300, + stime = 400, + cutime = 500, + cstime = 600, + uptime = 2000, + previousUtime = 200, + previousStime = 300, + previousCutime = 400, + previousCstime = 500, + previousUptime = 1000, + numCores = 0, + clockSpeedHz = 100, + ) + Assert.assertEquals(0.0, result, 0.0) + } + + @Test + fun `cou usage calculation returns 0 when uptime between previous and current reading is same`() { + val result = calculatePercentageUsage( + utime = 300, + stime = 400, + cutime = 500, + cstime = 600, + uptime = 1000, + previousUtime = 200, + previousStime = 300, + previousCutime = 400, + previousCstime = 500, + previousUptime = 1000, + numCores = 0, + clockSpeedHz = 100, + ) + Assert.assertEquals(0.0, result, 0.0) + } + + @Test + fun `cpu usage calculation does not return negative usage, instead returns 0`() { + val result = calculatePercentageUsage( + utime = 100, + stime = 200, + cutime = 300, + cstime = 400, + uptime = 2000, + previousUtime = 200, + previousStime = 300, + previousCutime = 400, + previousCstime = 500, + previousUptime = 1000, + numCores = 0, + clockSpeedHz = 100, + ) + Assert.assertEquals(0.0, result, 0.0) + } + @Test fun `CpuUsageCollector pauses and resumes`() { cpuUsageCollector.register() @@ -87,17 +186,16 @@ internal class CpuUsageCollectorTest { assertNull(cpuUsageCollector.future) } - /** - * utime: 500 - * stime: 600 - * cutime: 100 - * cstime: 200 - * start_time: 5835385 - */ - private fun createDummyProcStatFile(): File { + private fun createDummyProcStatFile( + utime: Long = 500, + stime: Long = 600, + cuTime: Long = 100, + csTime: Long = 200, + startTime: Long = 5835385, + ): File { return File.createTempFile("stat", null).apply { writeText( - "15354 (.measure.sample) R 1274 1274 0 0 -1 4194624 16399 0 0 0 500 600 100 200 30 10 24 0 5835385 15334526976 31865 18446744073709551615 434698489856 434698501984 548727546288 0 0 0 4612 1 1073775864 0 0 0 17 7 0 0 0 0 0 434698502144 434698503416 434785861632 548727550460 548727550559 548727550559 548727554014 0", + "15354 (.measure.sample) R 1274 1274 0 0 -1 4194624 16399 0 0 0 $utime $stime $cuTime $csTime 30 10 24 0 $startTime 15334526976 31865 18446744073709551615 434698489856 434698501984 548727546288 0 0 0 4612 1 1073775864 0 0 0 17 7 0 0 0 0 0 434698502144 434698503416 434785861632 548727550460 548727550559 548727550559 548727554014 0", ) } } From aebfe7144e27d7cce2334df775f3be01234102b6 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 09:42:28 +0530 Subject: [PATCH 02/14] fix(android): dynamically calculate interval_config for memory usage and cpu usage --- .../android/performance/CpuUsageCollector.kt | 61 +++++++++++++------ .../performance/MemoryUsageCollector.kt | 35 ++++++++--- .../performance/CpuUsageCollectorTest.kt | 41 ++++++++++++- .../performance/MemoryUsageCollectorTest.kt | 37 ++++++++++- 4 files changed, 140 insertions(+), 34 deletions(-) diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt index f1c3df94f..cbd751619 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt @@ -27,7 +27,8 @@ internal class CpuUsageCollector( private val procProvider: ProcProvider = ProcProviderImpl(), private val osSysConfProvider: OsSysConfProvider = OsSysConfProviderImpl(), ) { - private var prevCpuUsageData: CpuUsageData? = null + @VisibleForTesting + var prevCpuUsageData: CpuUsageData? = null @VisibleForTesting var future: Future<*>? = null @@ -60,24 +61,9 @@ internal class CpuUsageCollector( val clockSpeedHz = osSysConfProvider.get(OsConstants._SC_CLK_TCK) if (clockSpeedHz <= 0L || numCores <= 0L) return val uptime = timeProvider.elapsedRealtime - val percentageCpuUsage = if (prevCpuUsageData == null) { - 0.0 - } else { - calculatePercentageUsage( - utime = utime, - stime = stime, - cutime = cutime, - cstime = cstime, - uptime = uptime, - previousCstime = prevCpuUsageData!!.cstime, - previousCutime = prevCpuUsageData!!.cutime, - previousStime = prevCpuUsageData!!.stime, - previousUtime = prevCpuUsageData!!.utime, - previousUptime = prevCpuUsageData!!.uptime, - numCores = numCores, - clockSpeedHz = clockSpeedHz, - ) - } + val percentageCpuUsage = + getPercentageCpuUsage(utime, stime, cutime, cstime, uptime, numCores, clockSpeedHz) + val interval = getInterval(uptime) val cpuUsageData = CpuUsageData( num_cores = numCores, clock_speed = clockSpeedHz, @@ -87,7 +73,7 @@ internal class CpuUsageCollector( cutime = cutime, cstime = cstime, start_time = startTime, - interval_config = CPU_TRACKING_INTERVAL_MS, + interval_config = interval, percentage_usage = percentageCpuUsage, ) if (prevCpuUsageData?.percentage_usage == cpuUsageData.percentage_usage) { @@ -102,6 +88,41 @@ internal class CpuUsageCollector( prevCpuUsageData = cpuUsageData } + private fun getInterval(uptime: Long): Long { + return if (prevCpuUsageData != null) { + uptime - prevCpuUsageData!!.uptime + } else { + 0 + } + } + + private fun getPercentageCpuUsage( + utime: Long, + stime: Long, + cutime: Long, + cstime: Long, + uptime: Long, + numCores: Int, + clockSpeedHz: Long, + ) = if (prevCpuUsageData == null) { + 0.0 + } else { + calculatePercentageUsage( + utime = utime, + stime = stime, + cutime = cutime, + cstime = cstime, + uptime = uptime, + previousCstime = prevCpuUsageData!!.cstime, + previousCutime = prevCpuUsageData!!.cutime, + previousStime = prevCpuUsageData!!.stime, + previousUtime = prevCpuUsageData!!.utime, + previousUptime = prevCpuUsageData!!.uptime, + numCores = numCores, + clockSpeedHz = clockSpeedHz, + ) + } + private fun readStatFile(): Array? { val pid = processInfo.getPid() val file = procProvider.getStatFile(pid) diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt index dbe9c871a..70188a338 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt @@ -22,6 +22,12 @@ internal class MemoryUsageCollector( @VisibleForTesting var future: Future<*>? = null + @VisibleForTesting + internal var previousMemoryUsage: MemoryUsageData? = null + + @VisibleForTesting + internal var previousMemoryUsageReadTimeMs = 0L + fun register() { if (!processInfo.isForegroundProcess()) return if (future != null) return @@ -45,19 +51,28 @@ internal class MemoryUsageCollector( } private fun trackMemoryUsage() { + val interval = if (previousMemoryUsageReadTimeMs != 0L) { + timeProvider.elapsedRealtime - previousMemoryUsageReadTimeMs + } else { + 0 + } + previousMemoryUsageReadTimeMs = timeProvider.elapsedRealtime + + val data = MemoryUsageData( + java_max_heap = memoryReader.maxHeapSize(), + java_total_heap = memoryReader.totalHeapSize(), + java_free_heap = memoryReader.freeHeapSize(), + total_pss = memoryReader.totalPss(), + rss = memoryReader.rss(), + native_total_heap = memoryReader.nativeTotalHeapSize(), + native_free_heap = memoryReader.nativeFreeHeapSize(), + interval_config = interval, + ) eventProcessor.track( timestamp = timeProvider.currentTimeSinceEpochInMillis, type = EventType.MEMORY_USAGE, - data = MemoryUsageData( - java_max_heap = memoryReader.maxHeapSize(), - java_total_heap = memoryReader.totalHeapSize(), - java_free_heap = memoryReader.freeHeapSize(), - total_pss = memoryReader.totalPss(), - rss = memoryReader.rss(), - native_total_heap = memoryReader.nativeTotalHeapSize(), - native_free_heap = memoryReader.nativeFreeHeapSize(), - interval_config = MEMORY_TRACKING_INTERVAL_MS, - ), + data = data, ) + previousMemoryUsage = data } } diff --git a/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt b/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt index 8dec339fa..68a367a87 100644 --- a/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt +++ b/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt @@ -80,7 +80,7 @@ internal class CpuUsageCollectorTest { cutime = 300, cstime = 400, start_time = 5835385, - interval_config = CPU_TRACKING_INTERVAL_MS, + interval_config = 0, percentage_usage = 0.0, ), ) @@ -186,6 +186,45 @@ internal class CpuUsageCollectorTest { assertNull(cpuUsageCollector.future) } + @Test + fun `CpuUsageCollector calculates interval config dynamically`() { + cpuUsageCollector.prevCpuUsageData = CpuUsageData( + num_cores = 1, + clock_speed = 100, + uptime = 1000, + utime = 100, + stime = 200, + cutime = 300, + cstime = 400, + start_time = 58185, + interval_config = 0, + percentage_usage = 0.0, + ) + timeProvider.fakeElapsedRealtime = 15_000 + cpuUsageCollector.register() + verify(eventProcessor).track( + type = EventType.CPU_USAGE, + timestamp = timeProvider.currentTimeSinceEpochInMillis, + data = CpuUsageData( + num_cores = 1, + clock_speed = 100, + uptime = 15_000, + utime = 400, + stime = 500, + cutime = 600, + cstime = 700, + start_time = 58385, + interval_config = 14_000, + // calculate manually using the formula: + // ((utime + stime + cutime + cstime) + // - (previousUtime + previousStime + previousCutime + previousCstime)) + // divided by + // (((uptime - previousUptime) / previousUptime) * numCores * clockSpeedHz) + percentage_usage = 85.71428571428571, + ), + ) + } + private fun createDummyProcStatFile( utime: Long = 500, stime: Long = 600, diff --git a/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt b/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt index 25c4cef44..c823b8479 100644 --- a/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt +++ b/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt @@ -13,11 +13,10 @@ import sh.measure.android.fakes.FakeMemoryReader import sh.measure.android.fakes.FakeProcessInfoProvider import sh.measure.android.fakes.FakeTimeProvider import sh.measure.android.fakes.ImmediateExecutorService -import sh.measure.android.utils.TimeProvider internal class MemoryUsageCollectorTest { private lateinit var memoryUsageCollector: MemoryUsageCollector - private lateinit var timeProvider: TimeProvider + private lateinit var timeProvider: FakeTimeProvider private val eventProcessor = mock() private val executorService = ImmediateExecutorService(ResolvableFuture.create()) private val memoryReader = FakeMemoryReader() @@ -50,7 +49,7 @@ internal class MemoryUsageCollectorTest { rss = memoryReader.rss(), native_total_heap = memoryReader.nativeTotalHeapSize(), native_free_heap = memoryReader.nativeFreeHeapSize(), - interval_config = MEMORY_TRACKING_INTERVAL_MS, + interval_config = 0, ), ) } @@ -71,4 +70,36 @@ internal class MemoryUsageCollectorTest { memoryUsageCollector.register() assertNull(memoryUsageCollector.future) } + + @Test + fun `interval_config between two events`() { + memoryUsageCollector.previousMemoryUsageReadTimeMs = 1000 + memoryUsageCollector.previousMemoryUsage = MemoryUsageData( + java_max_heap = 0, + java_total_heap = 0, + java_free_heap = 0, + total_pss = 0, + rss = 0, + native_total_heap = 0, + native_free_heap = 0, + interval_config = 10_000, + ) + timeProvider.fakeElapsedRealtime = 15_000 + memoryUsageCollector.register() + + verify(eventProcessor).track( + type = EventType.MEMORY_USAGE, + timestamp = timeProvider.currentTimeSinceEpochInMillis, + data = MemoryUsageData( + java_max_heap = memoryReader.maxHeapSize(), + java_total_heap = memoryReader.totalHeapSize(), + java_free_heap = memoryReader.freeHeapSize(), + total_pss = memoryReader.totalPss(), + rss = memoryReader.rss(), + native_total_heap = memoryReader.nativeTotalHeapSize(), + native_free_heap = memoryReader.nativeFreeHeapSize(), + interval_config = 14_000, + ), + ) + } } From f141ee5f89ad7134a5033afc516862a2914e0a19 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 10:00:52 +0530 Subject: [PATCH 03/14] fix(android): rename interval_config to interval --- .../sh/measure/android/performance/CpuUsageCollector.kt | 2 +- .../java/sh/measure/android/performance/CpuUsageData.kt | 4 ++-- .../java/sh/measure/android/performance/MemoryEvents.kt | 2 +- .../measure/android/performance/MemoryUsageCollector.kt | 2 +- .../java/sh/measure/android/fakes/FakeEventFactory.kt | 8 ++++---- .../measure/android/performance/CpuUsageCollectorTest.kt | 8 ++++---- .../android/performance/MemoryUsageCollectorTest.kt | 8 ++++---- 7 files changed, 17 insertions(+), 17 deletions(-) diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt index cbd751619..ce63938d1 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt @@ -73,7 +73,7 @@ internal class CpuUsageCollector( cutime = cutime, cstime = cstime, start_time = startTime, - interval_config = interval, + interval = interval, percentage_usage = percentageCpuUsage, ) if (prevCpuUsageData?.percentage_usage == cpuUsageData.percentage_usage) { diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt index 88c39217f..75bc182d1 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageData.kt @@ -39,9 +39,9 @@ internal data class CpuUsageData( /** * The interval between two collections. */ - val interval_config: Long, + val interval: Long, /** - * Average %CPU usage in the interval set by [interval_config]. + * Average %CPU usage in the interval set by [interval]. */ val percentage_usage: Double, ) diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryEvents.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryEvents.kt index 968c60e0b..460372276 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryEvents.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryEvents.kt @@ -11,7 +11,7 @@ internal data class MemoryUsageData( val rss: Long?, val native_total_heap: Long, val native_free_heap: Long, - val interval_config: Long, + val interval: Long, ) @Serializable diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt index 70188a338..d3479f012 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt @@ -66,7 +66,7 @@ internal class MemoryUsageCollector( rss = memoryReader.rss(), native_total_heap = memoryReader.nativeTotalHeapSize(), native_free_heap = memoryReader.nativeFreeHeapSize(), - interval_config = interval, + interval = interval, ) eventProcessor.track( timestamp = timeProvider.currentTimeSinceEpochInMillis, diff --git a/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt b/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt index f0da61e3a..8d1a9c0ba 100644 --- a/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt +++ b/measure-android/measure/src/test/java/sh/measure/android/fakes/FakeEventFactory.kt @@ -238,7 +238,7 @@ internal object FakeEventFactory { rss: Long? = 500, nativeTotalHeap: Long = 600, nativeFreeHeap: Long = 700, - intervalConfig: Long = 800, + interval: Long = 800, ): MemoryUsageData { return MemoryUsageData( javaMaxHeap, @@ -248,7 +248,7 @@ internal object FakeEventFactory { rss, nativeTotalHeap, nativeFreeHeap, - intervalConfig, + interval, ) } @@ -295,7 +295,7 @@ internal object FakeEventFactory { cutime: Long = 9876L, cstime: Long = 1234L, stime: Long = 9876L, - intervalConfig: Long = 1000, + interval: Long = 1000, percentageUsage: Double = 0.0, ): CpuUsageData { return CpuUsageData( @@ -307,7 +307,7 @@ internal object FakeEventFactory { cutime, cstime, stime, - intervalConfig, + interval, percentageUsage, ) } diff --git a/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt b/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt index 68a367a87..4485bc50d 100644 --- a/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt +++ b/measure-android/measure/src/test/java/sh/measure/android/performance/CpuUsageCollectorTest.kt @@ -80,7 +80,7 @@ internal class CpuUsageCollectorTest { cutime = 300, cstime = 400, start_time = 5835385, - interval_config = 0, + interval = 0, percentage_usage = 0.0, ), ) @@ -187,7 +187,7 @@ internal class CpuUsageCollectorTest { } @Test - fun `CpuUsageCollector calculates interval config dynamically`() { + fun `CpuUsageCollector calculates interval dynamically`() { cpuUsageCollector.prevCpuUsageData = CpuUsageData( num_cores = 1, clock_speed = 100, @@ -197,7 +197,7 @@ internal class CpuUsageCollectorTest { cutime = 300, cstime = 400, start_time = 58185, - interval_config = 0, + interval = 0, percentage_usage = 0.0, ) timeProvider.fakeElapsedRealtime = 15_000 @@ -214,7 +214,7 @@ internal class CpuUsageCollectorTest { cutime = 600, cstime = 700, start_time = 58385, - interval_config = 14_000, + interval = 14_000, // calculate manually using the formula: // ((utime + stime + cutime + cstime) // - (previousUtime + previousStime + previousCutime + previousCstime)) diff --git a/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt b/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt index c823b8479..7b8e5f59c 100644 --- a/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt +++ b/measure-android/measure/src/test/java/sh/measure/android/performance/MemoryUsageCollectorTest.kt @@ -49,7 +49,7 @@ internal class MemoryUsageCollectorTest { rss = memoryReader.rss(), native_total_heap = memoryReader.nativeTotalHeapSize(), native_free_heap = memoryReader.nativeFreeHeapSize(), - interval_config = 0, + interval = 0, ), ) } @@ -72,7 +72,7 @@ internal class MemoryUsageCollectorTest { } @Test - fun `interval_config between two events`() { + fun `calculates interval between two events dynamically`() { memoryUsageCollector.previousMemoryUsageReadTimeMs = 1000 memoryUsageCollector.previousMemoryUsage = MemoryUsageData( java_max_heap = 0, @@ -82,7 +82,7 @@ internal class MemoryUsageCollectorTest { rss = 0, native_total_heap = 0, native_free_heap = 0, - interval_config = 10_000, + interval = 10_000, ) timeProvider.fakeElapsedRealtime = 15_000 memoryUsageCollector.register() @@ -98,7 +98,7 @@ internal class MemoryUsageCollectorTest { rss = memoryReader.rss(), native_total_heap = memoryReader.nativeTotalHeapSize(), native_free_heap = memoryReader.nativeFreeHeapSize(), - interval_config = 14_000, + interval = 14_000, ), ) } From 46b774b6022986c041c59d6bd9b49394a650eb0d Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 10:02:37 +0530 Subject: [PATCH 04/14] chore(backend): update cpu and memory usage events schema * rename interval_config to interval * add percentage_usage to CPUUsage event * use percentage_usage from the event in session replay instead of calculating it --- measure-backend/measure-go/event/event.go | 32 +++++++++++-------- measure-backend/measure-go/measure/app.go | 9 +++--- measure-backend/measure-go/measure/event.go | 10 +++--- measure-backend/measure-go/replay/cpu.go | 21 +----------- measure-web-app/app/api/api_calls.ts | 2 +- .../20231117020810_create_events_table.sql | 5 +-- self-host/clickhouse/schema.sql | 5 +-- 7 files changed, 37 insertions(+), 47 deletions(-) diff --git a/measure-backend/measure-go/event/event.go b/measure-backend/measure-go/event/event.go index ea854eb07..be611e97a 100644 --- a/measure-backend/measure-go/event/event.go +++ b/measure-backend/measure-go/event/event.go @@ -313,7 +313,7 @@ type MemoryUsage struct { RSS uint64 `json:"rss"` NativeTotalHeap uint64 `json:"native_total_heap" binding:"required"` NativeFreeHeap uint64 `json:"native_free_heap" binding:"required"` - IntervalConfig uint32 `json:"interval_config" binding:"required"` + Interval uint32 `json:"config" binding:"required"` } type LowMemory struct { @@ -331,15 +331,16 @@ type TrimMemory struct { } type CPUUsage struct { - NumCores uint8 `json:"num_cores" binding:"required"` - ClockSpeed uint32 `json:"clock_speed" binding:"required"` - StartTime uint64 `json:"start_time" binding:"required"` - Uptime uint64 `json:"uptime" binding:"required"` - UTime uint64 `json:"utime" binding:"required"` - CUTime uint64 `json:"cutime" binding:"required"` - STime uint64 `json:"stime" binding:"required"` - CSTime uint64 `json:"cstime" binding:"required"` - IntervalConfig uint32 `json:"interval_config" binding:"required"` + NumCores uint8 `json:"num_cores" binding:"required"` + ClockSpeed uint32 `json:"clock_speed" binding:"required"` + StartTime uint64 `json:"start_time" binding:"required"` + Uptime uint64 `json:"uptime" binding:"required"` + UTime uint64 `json:"utime" binding:"required"` + CUTime uint64 `json:"cutime" binding:"required"` + STime uint64 `json:"stime" binding:"required"` + CSTime uint64 `json:"cstime" binding:"required"` + Interval uint32 `json:"interval" binding:"required"` + PercentageUsage float64 `json:"percentage_usage" binding:"required"` } type Navigation struct { @@ -851,8 +852,8 @@ func (e *EventField) Validate() error { } if e.IsMemoryUsage() { - if e.MemoryUsage.IntervalConfig <= 0 { - return fmt.Errorf(`%q must be greater than 0`, `memory_usage.interval_config`) + if e.MemoryUsage.Interval <= 0 { + return fmt.Errorf(`%q must be greater than 0`, `memory_usage.interval`) } } @@ -872,8 +873,11 @@ func (e *EventField) Validate() error { if e.CPUUsage.ClockSpeed <= 0 { return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.clock_speed`) } - if e.CPUUsage.IntervalConfig <= 0 { - return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.interval_config`) + if e.CPUUsage.Interval <= 0 { + return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.interval`) + } + if e.CPUUsage.PercentageUsage <= 0 { + return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.percentage_usage`) } } diff --git a/measure-backend/measure-go/measure/app.go b/measure-backend/measure-go/measure/app.go index 1efa57440..241f0af88 100644 --- a/measure-backend/measure-go/measure/app.go +++ b/measure-backend/measure-go/measure/app.go @@ -1215,7 +1215,7 @@ func (a *App) GetSessionEvents(ctx context.Context, sessionId uuid.UUID) (*Sessi `memory_usage.rss`, `memory_usage.native_total_heap`, `memory_usage.native_free_heap`, - `memory_usage.interval_config`, + `memory_usage.interval`, `low_memory.java_max_heap`, `low_memory.java_total_heap`, `low_memory.java_free_heap`, @@ -1232,7 +1232,8 @@ func (a *App) GetSessionEvents(ctx context.Context, sessionId uuid.UUID) (*Sessi `cpu_usage.cutime`, `cpu_usage.stime`, `cpu_usage.cstime`, - `cpu_usage.interval_config`, + `cpu_usage.interval`, + `cpu_usage.percentage_usage`, `toString(navigation.to)`, `toString(navigation.from)`, `toString(navigation.source)`, @@ -1452,7 +1453,7 @@ func (a *App) GetSessionEvents(ctx context.Context, sessionId uuid.UUID) (*Sessi &memoryUsage.RSS, &memoryUsage.NativeTotalHeap, &memoryUsage.NativeFreeHeap, - &memoryUsage.IntervalConfig, + &memoryUsage.Interval, // low memory &lowMemory.JavaMaxHeap, @@ -1475,7 +1476,7 @@ func (a *App) GetSessionEvents(ctx context.Context, sessionId uuid.UUID) (*Sessi &cpuUsage.CUTime, &cpuUsage.STime, &cpuUsage.CSTime, - &cpuUsage.IntervalConfig, + &cpuUsage.Interval, // navigation &navigation.To, diff --git a/measure-backend/measure-go/measure/event.go b/measure-backend/measure-go/measure/event.go index ac4a9cea5..6fbb17416 100644 --- a/measure-backend/measure-go/measure/event.go +++ b/measure-backend/measure-go/measure/event.go @@ -817,7 +817,7 @@ func (e eventreq) ingest(ctx context.Context) error { Set(`memory_usage.rss`, e.events[i].MemoryUsage.RSS). Set(`memory_usage.native_total_heap`, e.events[i].MemoryUsage.NativeTotalHeap). Set(`memory_usage.native_free_heap`, e.events[i].MemoryUsage.NativeFreeHeap). - Set(`memory_usage.interval_config`, e.events[i].MemoryUsage.IntervalConfig) + Set(`memory_usage.interval`, e.events[i].MemoryUsage.Interval) } else { row. Set(`memory_usage.java_max_heap`, nil). @@ -827,7 +827,7 @@ func (e eventreq) ingest(ctx context.Context) error { Set(`memory_usage.rss`, nil). Set(`memory_usage.native_total_heap`, nil). Set(`memory_usage.native_free_heap`, nil). - Set(`memory_usage.interval_config`, nil) + Set(`memory_usage.interval`, nil) } // low memory @@ -870,7 +870,8 @@ func (e eventreq) ingest(ctx context.Context) error { Set(`cpu_usage.cutime`, e.events[i].CPUUsage.CUTime). Set(`cpu_usage.stime`, e.events[i].CPUUsage.STime). Set(`cpu_usage.cstime`, e.events[i].CPUUsage.CSTime). - Set(`cpu_usage.interval_config`, e.events[i].CPUUsage.IntervalConfig) + Set(`cpu_usage.interval`, e.events[i].CPUUsage.Interval). + Set(`cpu_usage.percentage_usage`, e.events[i].CPUUsage.PercentageUsage) } else { row. Set(`cpu_usage.num_cores`, nil). @@ -880,7 +881,8 @@ func (e eventreq) ingest(ctx context.Context) error { Set(`cpu_usage.cutime`, nil). Set(`cpu_usage.stime`, nil). Set(`cpu_usage.cstime`, nil). - Set(`cpu_usage.interval_config`, nil) + Set(`cpu_usage.interval`, nil). + Set(`cpu_usage.percentage_usage`, nil) } diff --git a/measure-backend/measure-go/replay/cpu.go b/measure-backend/measure-go/replay/cpu.go index c233ef140..f87299a7c 100644 --- a/measure-backend/measure-go/replay/cpu.go +++ b/measure-backend/measure-go/replay/cpu.go @@ -14,29 +14,10 @@ func ComputeCPUUsage(events []event.EventField) (result []CPUUsage) { for _, event := range events { usage := CPUUsage{ Time: event.Timestamp, - Value: calculate(event.CPUUsage), + Value: event.CPUUsage.PercentageUsage, } result = append(result, usage) } return } - -func calculate(u *event.CPUUsage) (usage float64) { - // Sum the CPU times - total := float64(u.UTime + u.STime + u.CUTime + u.CSTime) - - // Convert interval configuration from milliseconds to seconds - elapsed := float64(u.IntervalConfig) / 1000 - - // Divide total CPU time by the clock speed to get time in seconds - usageTime := total / float64(u.ClockSpeed) - - // Divide by the elapsed time to get usage over the interval - usageOverInterval := usageTime / elapsed - - // Divide by the number of cores to get the average usage per core - averageUsage := (usageOverInterval / float64(u.NumCores)) * 100.0 - - return averageUsage -} diff --git a/measure-web-app/app/api/api_calls.ts b/measure-web-app/app/api/api_calls.ts index 1e1dcb110..3695d52be 100644 --- a/measure-web-app/app/api/api_calls.ts +++ b/measure-web-app/app/api/api_calls.ts @@ -480,7 +480,7 @@ export const emptySessionReplay = { "rss": 0, "native_total_heap": 0, "native_free_heap": 0, - "interval_config": 0, + "interval": 0, "timestamp": "" } ], diff --git a/self-host/clickhouse/20231117020810_create_events_table.sql b/self-host/clickhouse/20231117020810_create_events_table.sql index 6a27f1b40..098c42528 100644 --- a/self-host/clickhouse/20231117020810_create_events_table.sql +++ b/self-host/clickhouse/20231117020810_create_events_table.sql @@ -129,7 +129,7 @@ create table if not exists default.events `memory_usage.rss` UInt64 comment 'resident set size - amount of physical memory currently used, in kb', `memory_usage.native_total_heap` UInt64 comment 'total size of the native heap (memory out of java''s control) available for allocation, in kb', `memory_usage.native_free_heap` UInt64 comment 'amount of free memory available in the native heap, in kb', - `memory_usage.interval_config` UInt32 comment 'interval between two consecutive readings, in msec', + `memory_usage.interval` UInt32 comment 'interval between two consecutive readings, in msec', `low_memory.java_max_heap` UInt64 comment 'maximum size of the java heap allocated, in kb', `low_memory.java_total_heap` UInt64 comment 'total size of the java heap available for allocation, in kb', `low_memory.java_free_heap` UInt64 comment 'free memory available in the java heap, in kb', @@ -146,7 +146,8 @@ create table if not exists default.events `cpu_usage.cutime` UInt64 comment 'execution time in user mode with child processes, in jiffies', `cpu_usage.stime` UInt64 comment 'execution time in kernel mode, in jiffies', `cpu_usage.cstime` UInt64 comment 'execution time in user mode with child processes, in jiffies', - `cpu_usage.interval_config` UInt32 comment 'interval between two consecutive readings, in msec', + `cpu_usage.interval` UInt32 comment 'interval between two consecutive readings, in msec', + `cpu_usage.percentage_usage` Float64 comment 'percentage of cpu usage in the interval', `navigation.to` FixedString(128) comment 'destination page or screen where the navigation led to', `navigation.from` FixedString(128) comment 'source page or screen from where the navigation was triggered', `navigation.source` FixedString(128) comment 'how the event was collected example a library or framework name', diff --git a/self-host/clickhouse/schema.sql b/self-host/clickhouse/schema.sql index 13f7e9f4a..b42b95095 100644 --- a/self-host/clickhouse/schema.sql +++ b/self-host/clickhouse/schema.sql @@ -135,7 +135,7 @@ CREATE TABLE default.events `memory_usage.rss` UInt64 COMMENT 'resident set size - amount of physical memory currently used, in kb', `memory_usage.native_total_heap` UInt64 COMMENT 'total size of the native heap (memory out of java\'s control) available for allocation, in kb', `memory_usage.native_free_heap` UInt64 COMMENT 'amount of free memory available in the native heap, in kb', - `memory_usage.interval_config` UInt32 COMMENT 'interval between two consecutive readings, in msec', + `memory_usage.interval` UInt32 COMMENT 'interval between two consecutive readings, in msec', `low_memory.java_max_heap` UInt64 COMMENT 'maximum size of the java heap allocated, in kb', `low_memory.java_total_heap` UInt64 COMMENT 'total size of the java heap available for allocation, in kb', `low_memory.java_free_heap` UInt64 COMMENT 'free memory available in the java heap, in kb', @@ -152,7 +152,8 @@ CREATE TABLE default.events `cpu_usage.cutime` UInt64 COMMENT 'execution time in user mode with child processes, in jiffies', `cpu_usage.stime` UInt64 COMMENT 'execution time in kernel mode, in jiffies', `cpu_usage.cstime` UInt64 COMMENT 'execution time in user mode with child processes, in jiffies', - `cpu_usage.interval_config` UInt32 COMMENT 'interval between two consecutive readings, in msec', + `cpu_usage.interval` UInt32 COMMENT 'interval between two consecutive readings, in msec', + `cpu_usage.percentage_usage` Float64 COMMENT 'percentage of cpu usage in the interval', `navigation.to` FixedString(128) COMMENT 'destination page or screen where the navigation led to', `navigation.from` FixedString(128) COMMENT 'source page or screen from where the navigation was triggered', `navigation.source` FixedString(128) COMMENT 'how the event was collected example a library or framework name', From 43e438bd55766411bb04d990f40f709d8649d99b Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 10:10:55 +0530 Subject: [PATCH 05/14] docs: update API docs with cpu and memory usage schema changes --- docs/api/dashboard/README.md | 12 ++++++------ docs/api/sdk/README.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/api/dashboard/README.md b/docs/api/dashboard/README.md index 597718c5a..01ee7ddb8 100644 --- a/docs/api/dashboard/README.md +++ b/docs/api/dashboard/README.md @@ -2028,7 +2028,7 @@ These headers must be present in each request. "rss": 171692, "native_total_heap": 21872, "native_free_heap": 1299, - "interval_config": 2000, + "interval": 2000, "timestamp": "2024-05-03T23:34:17.607Z" }, { @@ -2039,7 +2039,7 @@ These headers must be present in each request. "rss": 187708, "native_total_heap": 24060, "native_free_heap": 1171, - "interval_config": 2000, + "interval": 2000, "timestamp": "2024-05-03T23:34:19.566Z" }, { @@ -2050,7 +2050,7 @@ These headers must be present in each request. "rss": 185312, "native_total_heap": 24828, "native_free_heap": 1452, - "interval_config": 2000, + "interval": 2000, "timestamp": "2024-05-03T23:34:21.565Z" }, { @@ -2061,7 +2061,7 @@ These headers must be present in each request. "rss": 185920, "native_total_heap": 24828, "native_free_heap": 1452, - "interval_config": 2000, + "interval": 2000, "timestamp": "2024-05-03T23:34:23.571Z" }, { @@ -2072,7 +2072,7 @@ These headers must be present in each request. "rss": 185920, "native_total_heap": 24828, "native_free_heap": 1436, - "interval_config": 2000, + "interval": 2000, "timestamp": "2024-05-03T23:34:25.568Z" }, { @@ -2083,7 +2083,7 @@ These headers must be present in each request. "rss": 191340, "native_total_heap": 26620, "native_free_heap": 2879, - "interval_config": 2000, + "interval": 2000, "timestamp": "2024-05-03T23:34:27.565Z" } ], diff --git a/docs/api/sdk/README.md b/docs/api/sdk/README.md index 6a563b0da..7f39bf24d 100644 --- a/docs/api/sdk/README.md +++ b/docs/api/sdk/README.md @@ -613,7 +613,8 @@ Use the `cpu_usage` type for CPU usage of a Linux based OS. | `stime` | number | No | Time spent executing code in kernel mode, in Jiffies. | | `cutime` | number | No | Time spent executing code in user mode with children, in Jiffies. | | `cstime` | number | No | Time spent executing code in kernel mode with children, in Jiffies. | -| `interval_config` | number | No | The interval between two collections, in ms. | +| `interval` | number | No | The interval between two collections, in ms. | +| `percentage_usage`| number | No | The percentage CPU usage in the interval. | | `start_time` | number | No | The process start time, in Jiffies. | #### **`memory_usage`** @@ -629,7 +630,7 @@ Use the `memory_usage` type for memory usage of JVM applications. | rss | number | Yes | Resident set size of the Java process - the amount of physical memory currently used by the Java application. Measured in kB. | | native_total_heap | number | No | Total size of the native heap (memory outside of Java's control) available for memory allocation. Measured in kB. | | native_free_heap | number | No | Amount of free memory available in the native heap. Measured in kB. | -| interval_config | number | No | The interval between two consecutive readings. Measured in ms. | +| interval | number | No | The interval between two consecutive readings. Measured in ms. | #### **`low_memory`** @@ -644,7 +645,6 @@ Use the `low_memory` type for a low memory event from the system. | rss | number | Yes | Resident set size of the Java process - the amount of physical memory currently used by the Java application. Measured in kB. | | native_total_heap | number | No | Total size of the native heap (memory outside of Java's control) available for memory allocation. Measured in kB. | | native_free_heap | number | No | Amount of free memory available in the native heap. Measured in kB. | -| interval_config | number | No | The interval between two consecutive readings. Measured in ms. | #### **`trim_memory`** From c5abd50c0a3fd7221c6df8d0c38cc2bff591c19e Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 10:17:57 +0530 Subject: [PATCH 06/14] chore(backend): update interval_config to interval in session data --- .../593dc663-3c37-4878-a651-3d5af0fafeb0.json | 2 +- .../76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json | 2 +- .../35df2d28-f636-420b-9045-ea1dcc41f543.json | 2 +- .../4ad8ba76-83fb-496c-9893-7889f82d280a.json | 2 +- .../b59194de-783c-468b-9ece-65bb2921a097.json | 2 +- .../eb714993-8c45-4eab-9040-99073290bc57.json | 2 +- .../01685d51-71b9-4482-9668-8b2e5ae8f8dd.json | 2 +- .../17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json | 2 +- .../28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json | 2 +- .../297652fc-0d30-45ef-a68b-e8a8edebbb18.json | 2 +- .../34cc5ee9-6bff-4627-9582-6ad2d52e030a.json | 2 +- .../35c101b3-bf3d-4386-90d3-f0d61406bbeb.json | 2 +- .../3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json | 2 +- .../39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json | 2 +- .../43105f54-8cd6-4c27-802e-d933732a88ea.json | 2 +- .../4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json | 2 +- .../5042cbe5-c87a-4057-855e-bbdc4768196a.json | 2 +- .../579bdc09-24e1-4dcc-ba7d-e954505a9341.json | 2 +- .../5a4065bd-60a3-4146-ac6d-c4d637772a3c.json | 2 +- .../5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json | 2 +- .../71328a17-de01-40c7-b02f-16651a939d92.json | 2 +- .../bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json | 2 +- .../bc40a0ca-34a1-461f-b59f-21b3b3c30297.json | 2 +- .../c3929414-e862-4eeb-a108-6048f47a53ed.json | 2 +- .../c7340029-e1f6-46eb-8dbd-c37da561fd7c.json | 2 +- .../d0be6d67-9f94-42af-8bb9-dfcb7feada57.json | 2 +- .../d739b906-a193-4659-801e-654570f5f1b4.json | 2 +- .../dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json | 2 +- .../fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json | 2 +- .../07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json | 2 +- .../08e7e57e-8f1b-4659-9bea-8f1563329ca7.json | 2 +- .../0c0a90a6-64f9-47a5-a722-02f1d8f04142.json | 2 +- .../0ef223a2-3619-4f56-a9ec-733f52751537.json | 2 +- .../1590899d-3a2e-49ef-aae5-966eac419e80.json | 2 +- .../18629179-ac60-4bec-872a-8a93f923ddf3.json | 2 +- .../1c61a2ab-69aa-402a-b9da-b50d021586ce.json | 2 +- .../251d679a-6a8b-42a5-aa2c-066f155d1017.json | 2 +- .../2560bf44-6af0-45e7-bc79-36e83a08eb38.json | 2 +- .../25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json | 2 +- .../2659be34-244e-4870-bebe-309369a3f9c7.json | 2 +- .../278558fd-9aa6-40ce-afd4-1b18ab749cda.json | 2 +- .../2c771702-69c1-49cb-bbcf-42840bf18a6c.json | 2 +- .../327f3de8-7446-4c18-9f6c-12ba715314da.json | 2 +- .../3695198c-a399-42f7-839a-1c71bb4b1e27.json | 2 +- .../38c01e1f-75e7-46c0-b062-f00de70eb644.json | 2 +- .../41ab73cf-066a-415f-9e80-45974709df51.json | 2 +- .../47326461-d4bb-4e88-9cfb-65b31528c9fe.json | 2 +- .../495fae08-a7e7-4555-b0ce-d078179f036a.json | 2 +- .../4a56a9c9-e2db-4419-b086-ce3214ba2238.json | 2 +- .../4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json | 2 +- .../53799900-d10a-4673-ad70-85f13f867549.json | 2 +- .../576ff39a-e5c7-45d4-a194-fcd1263d8d32.json | 2 +- .../60a6943a-6c11-4ee1-9260-42b988676747.json | 2 +- .../615f7151-9423-43fc-883f-37f8ca0bb121.json | 2 +- .../690139b4-0da0-4776-9555-556124f0dd6b.json | 2 +- .../6c2c124e-1691-4d33-92d9-bba77fbe6646.json | 2 +- .../7396da4e-6350-4279-a2b6-5ea116f87a28.json | 2 +- .../75b9d99c-648e-4c68-b2b7-fca985de6a71.json | 2 +- .../75c35af8-9386-4923-b96c-1f8463b0f3be.json | 2 +- .../7c66168e-48b5-445e-9910-72b56fce54d3.json | 2 +- .../81c606fc-eab0-46a7-a43c-93582573e120.json | 24 +++++++++---------- .../846997c8-5161-4a7a-877e-c38595ade128.json | 2 +- .../8591c71a-8a60-4773-937e-f0543dc48bb5.json | 2 +- .../8847c7a3-09ab-488b-aab1-94d1cf86427f.json | 2 +- .../91f592df-e543-47b2-aafb-ef67f050ac91.json | 2 +- .../9393c6dd-b66c-4cee-8665-42f407db0bac.json | 2 +- .../9ba32a49-6884-4183-bb88-330089292b4f.json | 2 +- .../9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json | 2 +- .../a1156417-19b5-4a41-88d1-b1fbef080967.json | 2 +- .../a7828add-b022-412d-9ec4-a30d6f219222.json | 2 +- .../ab802397-91ef-4ef9-89d0-b8c35c292dec.json | 2 +- .../ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json | 2 +- .../b2e27af1-675d-435b-98b9-df5fd22e72e5.json | 2 +- .../b3d6e0f8-d610-4e24-827a-fd4c75918b66.json | 2 +- .../b6299111-84cd-425e-bb72-6a03f343ae1e.json | 2 +- .../b871f71a-2596-49bc-809e-ec3e571347fe.json | 2 +- .../bda41c20-e157-4f84-b20a-9b33cb05e4b1.json | 2 +- .../c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json | 2 +- .../c69b41cd-a9f8-46a9-800e-cc9746ce5299.json | 2 +- .../c7887d60-9823-4018-8b79-0e2c8399258c.json | 2 +- .../cfaee6a6-d764-4084-a290-30490abb96a4.json | 2 +- .../e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json | 2 +- .../e822f6c2-cb1d-4e31-af3c-63693afba6ff.json | 2 +- .../f936f133-3581-4f2f-bd6d-670ef03b70b0.json | 2 +- .../fa8f3249-669d-441a-8eed-d7c19fc16cfd.json | 2 +- 85 files changed, 96 insertions(+), 96 deletions(-) diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json index b9060380e..85621172a 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json @@ -1 +1 @@ -[{"id":"0fdf1568-bd09-4a11-9b87-3d55256ed626","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.01800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3e58b4ea-a82c-4fec-80d0-18aded7951b8","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.26700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637227,"uptime":6373225,"utime":21,"cutime":0,"cstime":0,"stime":11,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"51f58575-f762-4a47-9659-4096fa5fdd77","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.90500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"6aa39463-008e-410d-b3b7-0828d44553d9","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.08200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a374aa52-d8d7-451e-a43a-e92a02b65601","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.18900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b735f173-b620-466d-a32c-5bcf5785b40c","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||a014308b-8620-4c61-a88b-6d4008cb154a|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"c49ebd32-388f-45c1-82b2-ddae968a7fa3","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.29000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512522,"total_pss":75586,"rss":150712,"native_total_heap":12004,"native_free_heap":1548,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file +[{"id":"0fdf1568-bd09-4a11-9b87-3d55256ed626","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.01800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3e58b4ea-a82c-4fec-80d0-18aded7951b8","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.26700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637227,"uptime":6373225,"utime":21,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"51f58575-f762-4a47-9659-4096fa5fdd77","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.90500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"6aa39463-008e-410d-b3b7-0828d44553d9","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.08200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a374aa52-d8d7-451e-a43a-e92a02b65601","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.18900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b735f173-b620-466d-a32c-5bcf5785b40c","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||a014308b-8620-4c61-a88b-6d4008cb154a|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"c49ebd32-388f-45c1-82b2-ddae968a7fa3","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.29000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512522,"total_pss":75586,"rss":150712,"native_total_heap":12004,"native_free_heap":1548,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json index 9ba078090..07c89fc4e 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json @@ -1 +1 @@ -[{"id":"0727e5e9-ef85-44ef-9c1c-a5acafe1ee4c","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.41100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"129758e7-111d-465f-8d64-0ef74df727cd","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.75900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375681,"end_time":6375717,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"37934","content-type":"multipart/form-data; boundary=b6c3e6b9-236e-4cba-893d-647a7256c524","host":"10.0.2.2:8080","msr-req-id":"0c05d561-5643-469d-b9fd-99989f87ff64","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3478d701-1ed1-4219-91ea-96a65cd55215","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.72000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"391dee0e-33a9-4454-beca-f0338ce23245","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512335,"total_pss":76673,"rss":152208,"native_total_heap":12004,"native_free_heap":1277,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"42807dfe-13fa-4748-b689-c19f11a63b55","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86300000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512398,"total_pss":69852,"rss":149360,"native_total_heap":11864,"native_free_heap":1544,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4422cb27-7b39-4342-9a05-a92e565e8f08","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.47000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375385,"end_time":6375428,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7871","content-type":"multipart/form-data; boundary=f19f0e00-6506-4528-bb0f-a965c0673d45","host":"10.0.2.2:8080","msr-req-id":"593dc663-3c37-4878-a651-3d5af0fafeb0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4495d842-b58b-435b-9928-7bfcc7d133d1","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.49700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"53d95cf2-5930-4143-bc93-fce2a73f3f1f","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.58600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375433,"end_time":6375541,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"40015","content-type":"multipart/form-data; boundary=394b755f-ba3e-4648-b3c4-1b5f7ad8e215","host":"10.0.2.2:8080","msr-req-id":"d30ee46b-20d6-4c6b-9fb5-8678ceb3c9df","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"57195690-1ea7-4048-9256-00dea98adf7d","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:22.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11173,"total_pss":117157,"rss":195636,"native_total_heap":14896,"native_free_heap":1107,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"63b56841-f3db-4595-b210-82c2be5a849e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:24.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11101,"total_pss":117216,"rss":195760,"native_total_heap":14896,"native_free_heap":1075,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"7074c496-44c8-4ba4-a07e-36c4a8dd5b12","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":639921,"uptime":6399818,"utime":24,"cutime":0,"cstime":0,"stime":12,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"78019d75-ddc6-4331-ba93-990b37701286","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"895e5f0d-32a7-40d2-89d5-d62742419371","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6374849,"utime":19,"cutime":0,"cstime":0,"stime":5,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"89f6e4c2-ce97-42cb-8dbe-d6d866df97a6","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"8f009f90-8e3d-4240-81f5-81a10402732c","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.73600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f519a7b0-0065-4d30-818b-537399980193|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a1c990a3-684a-4826-b85f-c736392069e0","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.59700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a5b3470d-ac25-425f-8382-5ba317d9d119","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.62700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"aae43787-987f-490c-aabc-5530f9a96c2e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.45200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b30d409e-0f65-4c8d-9b50-faa6f7e2f475","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:23.87400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6377832,"utime":73,"cutime":0,"cstime":0,"stime":13,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"cfe28761-170c-4522-ae02-1021093c3090","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.69000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||21495f64-811e-45d7-886a-50185ed7e652|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"da3e459f-fd8c-4f34-8cd6-e3c20b350145","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.54500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"e9c3d7d2-350b-45fd-9b30-97c8a533ed98","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"eefe2114-cd27-428c-85db-81fdc1c51b1a","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.57400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file +[{"id":"0727e5e9-ef85-44ef-9c1c-a5acafe1ee4c","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.41100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"129758e7-111d-465f-8d64-0ef74df727cd","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.75900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375681,"end_time":6375717,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"37934","content-type":"multipart/form-data; boundary=b6c3e6b9-236e-4cba-893d-647a7256c524","host":"10.0.2.2:8080","msr-req-id":"0c05d561-5643-469d-b9fd-99989f87ff64","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3478d701-1ed1-4219-91ea-96a65cd55215","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.72000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"391dee0e-33a9-4454-beca-f0338ce23245","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512335,"total_pss":76673,"rss":152208,"native_total_heap":12004,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"42807dfe-13fa-4748-b689-c19f11a63b55","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86300000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512398,"total_pss":69852,"rss":149360,"native_total_heap":11864,"native_free_heap":1544,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4422cb27-7b39-4342-9a05-a92e565e8f08","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.47000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375385,"end_time":6375428,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7871","content-type":"multipart/form-data; boundary=f19f0e00-6506-4528-bb0f-a965c0673d45","host":"10.0.2.2:8080","msr-req-id":"593dc663-3c37-4878-a651-3d5af0fafeb0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4495d842-b58b-435b-9928-7bfcc7d133d1","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.49700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"53d95cf2-5930-4143-bc93-fce2a73f3f1f","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.58600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375433,"end_time":6375541,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"40015","content-type":"multipart/form-data; boundary=394b755f-ba3e-4648-b3c4-1b5f7ad8e215","host":"10.0.2.2:8080","msr-req-id":"d30ee46b-20d6-4c6b-9fb5-8678ceb3c9df","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"57195690-1ea7-4048-9256-00dea98adf7d","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:22.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11173,"total_pss":117157,"rss":195636,"native_total_heap":14896,"native_free_heap":1107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"63b56841-f3db-4595-b210-82c2be5a849e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:24.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11101,"total_pss":117216,"rss":195760,"native_total_heap":14896,"native_free_heap":1075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"7074c496-44c8-4ba4-a07e-36c4a8dd5b12","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":639921,"uptime":6399818,"utime":24,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"78019d75-ddc6-4331-ba93-990b37701286","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"895e5f0d-32a7-40d2-89d5-d62742419371","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6374849,"utime":19,"cutime":0,"cstime":0,"stime":5,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"89f6e4c2-ce97-42cb-8dbe-d6d866df97a6","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"8f009f90-8e3d-4240-81f5-81a10402732c","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.73600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f519a7b0-0065-4d30-818b-537399980193|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a1c990a3-684a-4826-b85f-c736392069e0","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.59700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a5b3470d-ac25-425f-8382-5ba317d9d119","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.62700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"aae43787-987f-490c-aabc-5530f9a96c2e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.45200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b30d409e-0f65-4c8d-9b50-faa6f7e2f475","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:23.87400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6377832,"utime":73,"cutime":0,"cstime":0,"stime":13,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"cfe28761-170c-4522-ae02-1021093c3090","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.69000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||21495f64-811e-45d7-886a-50185ed7e652|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"da3e459f-fd8c-4f34-8cd6-e3c20b350145","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.54500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"e9c3d7d2-350b-45fd-9b30-97c8a533ed98","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"eefe2114-cd27-428c-85db-81fdc1c51b1a","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.57400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json index ce94e1bfc..af9f785b0 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json @@ -1 +1 @@ -[{"id":"2e7c25c4-c0c5-4741-b86a-8fffe09bd87c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":21374,"java_free_heap":9955,"total_pss":102206,"rss":177888,"native_total_heap":15492,"native_free_heap":1877,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3b9abf1d-9e3e-4fee-9629-53161907a4b9","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.58600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"56630b3e-8a0e-46de-91aa-ec42b79597b1","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.43600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"6890dcc3-b5f3-4fb0-9a97-a1ba30830d54","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.70700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6897630,"end_time":6897665,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"25120","content-type":"multipart/form-data; boundary=efcefeab-aa4b-42a6-a8ff-908b69f91949","host":"10.0.2.2:8080","msr-req-id":"4ad8ba76-83fb-496c-9893-7889f82d280a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:07:05 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83df1711-4c54-4ebc-880d-19a027be3544","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.67700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":690324,"uptime":6903635,"utime":20,"cutime":0,"cstime":0,"stime":6,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"8de4834a-f014-429e-98b0-4fc482a15679","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.49100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b2ce95a8-a914-490c-bf66-abbc3d6dc10d","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.60200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||95d520b8-6284-4e84-811d-61fea327f849|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"cb009f1d-788a-4f4d-af10-33ba9d058304","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.71000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512257,"total_pss":70564,"rss":152364,"native_total_heap":12004,"native_free_heap":1531,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d7a8439e-7806-4779-82ce-6e89bc7f33e6","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"f1ba89c7-6a8e-47ca-9e52-66a156aa5eca","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6899120,"utime":95,"cutime":0,"cstime":0,"stime":28,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file +[{"id":"2e7c25c4-c0c5-4741-b86a-8fffe09bd87c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":21374,"java_free_heap":9955,"total_pss":102206,"rss":177888,"native_total_heap":15492,"native_free_heap":1877,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3b9abf1d-9e3e-4fee-9629-53161907a4b9","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.58600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"56630b3e-8a0e-46de-91aa-ec42b79597b1","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.43600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"6890dcc3-b5f3-4fb0-9a97-a1ba30830d54","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.70700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6897630,"end_time":6897665,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"25120","content-type":"multipart/form-data; boundary=efcefeab-aa4b-42a6-a8ff-908b69f91949","host":"10.0.2.2:8080","msr-req-id":"4ad8ba76-83fb-496c-9893-7889f82d280a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:07:05 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83df1711-4c54-4ebc-880d-19a027be3544","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.67700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":690324,"uptime":6903635,"utime":20,"cutime":0,"cstime":0,"stime":6,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"8de4834a-f014-429e-98b0-4fc482a15679","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.49100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b2ce95a8-a914-490c-bf66-abbc3d6dc10d","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.60200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||95d520b8-6284-4e84-811d-61fea327f849|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"cb009f1d-788a-4f4d-af10-33ba9d058304","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.71000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512257,"total_pss":70564,"rss":152364,"native_total_heap":12004,"native_free_heap":1531,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d7a8439e-7806-4779-82ce-6e89bc7f33e6","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"f1ba89c7-6a8e-47ca-9e52-66a156aa5eca","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6899120,"utime":95,"cutime":0,"cstime":0,"stime":28,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json index ae912fb04..125c6b566 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json @@ -1 +1 @@ -[{"id":"0b97b69a-dd59-4991-a331-8f7aa2fc4638","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:57.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6722,"total_pss":125320,"rss":205172,"native_total_heap":15236,"native_free_heap":1137,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"32b58017-de7a-4c07-82d4-2c5c28ef223e","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:01.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6534,"total_pss":127213,"rss":207004,"native_total_heap":15236,"native_free_heap":1102,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4123cfe4-b5a6-4f74-9ff0-b47f8dd5a104","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.72500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887634,"end_time":6887682,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7870","content-type":"multipart/form-data; boundary=b2530d2c-2c98-485c-bb95-3304bff86632","host":"10.0.2.2:8080","msr-req-id":"eb714993-8c45-4eab-9040-99073290bc57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:55 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"46a81626-1cc6-4d7c-beac-2177662f3f8f","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4d68ac8c-2cb4-4a93-878c-a09bac2e0993","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"52486ac3-039e-44d4-b804-2b33c3ffe0e8","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.82100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"5a846d6f-e5c3-4569-a543-a4b57b89c136","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.97200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||5b925288-e10c-4aa9-ba47-3cdf2bf96bff|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"618311d2-1385-446b-8ca8-8ce77533e37c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6893121,"utime":85,"cutime":0,"cstime":0,"stime":22,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"61866e06-a548-449c-b22c-f05308963539","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6586,"total_pss":127324,"rss":207004,"native_total_heap":15236,"native_free_heap":1118,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"762cf051-9f0b-42e6-8e73-db9e20111a72","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":42705,"java_free_heap":0,"total_pss":127277,"rss":207488,"native_total_heap":15492,"native_free_heap":1135,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"790be410-611f-4557-9d2a-84eb625d505d","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.83700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887730,"end_time":6887795,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38183","content-type":"multipart/form-data; boundary=f841744e-0177-481a-ab2c-dc69f1556281","host":"10.0.2.2:8080","msr-req-id":"0e6b85fa-701f-4b08-ba7a-dcba883e8238","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83dbbed7-0213-47e3-ba13-be04ba68d3cf","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:55.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6810,"total_pss":125233,"rss":205056,"native_total_heap":15236,"native_free_heap":1142,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"96eaacde-252a-443e-a2ba-520c2383ac46","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:56.16400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6890121,"utime":81,"cutime":0,"cstime":0,"stime":21,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"a4ffe741-6c49-4a64-ad81-33393b0b7d20","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b41f7221-33ba-4a2b-ba2f-f8f9c1b77ae9","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.17000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512464,"total_pss":73637,"rss":151848,"native_total_heap":12004,"native_free_heap":1292,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c253f3ed-ef37-4c3a-b7ac-503f78736cb2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.86900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c6503ac9-bff4-4db2-84dc-bbbae4289791","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:02.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6896119,"utime":87,"cutime":0,"cstime":0,"stime":24,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d06ca76c-ebf5-44e0-b425-98c20643d7d2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.16800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6887126,"utime":19,"cutime":0,"cstime":0,"stime":10,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d4d1dda5-355f-4bfd-9a2c-4124c7bea812","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:54.07900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887968,"end_time":6888037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38067","content-type":"multipart/form-data; boundary=f640b6e6-0608-42a8-9051-f016d14db26a","host":"10.0.2.2:8080","msr-req-id":"878f7d79-62de-4426-9dac-ca42bdebbeb7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"ee78a3c4-5670-4266-a349-d743e7c4e59a","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.67300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"eeab5d2d-c577-40e7-87ab-12368ebf8ba3","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.63100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file +[{"id":"0b97b69a-dd59-4991-a331-8f7aa2fc4638","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:57.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6722,"total_pss":125320,"rss":205172,"native_total_heap":15236,"native_free_heap":1137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"32b58017-de7a-4c07-82d4-2c5c28ef223e","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:01.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6534,"total_pss":127213,"rss":207004,"native_total_heap":15236,"native_free_heap":1102,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4123cfe4-b5a6-4f74-9ff0-b47f8dd5a104","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.72500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887634,"end_time":6887682,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7870","content-type":"multipart/form-data; boundary=b2530d2c-2c98-485c-bb95-3304bff86632","host":"10.0.2.2:8080","msr-req-id":"eb714993-8c45-4eab-9040-99073290bc57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:55 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"46a81626-1cc6-4d7c-beac-2177662f3f8f","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4d68ac8c-2cb4-4a93-878c-a09bac2e0993","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"52486ac3-039e-44d4-b804-2b33c3ffe0e8","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.82100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"5a846d6f-e5c3-4569-a543-a4b57b89c136","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.97200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||5b925288-e10c-4aa9-ba47-3cdf2bf96bff|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"618311d2-1385-446b-8ca8-8ce77533e37c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6893121,"utime":85,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"61866e06-a548-449c-b22c-f05308963539","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6586,"total_pss":127324,"rss":207004,"native_total_heap":15236,"native_free_heap":1118,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"762cf051-9f0b-42e6-8e73-db9e20111a72","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":42705,"java_free_heap":0,"total_pss":127277,"rss":207488,"native_total_heap":15492,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"790be410-611f-4557-9d2a-84eb625d505d","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.83700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887730,"end_time":6887795,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38183","content-type":"multipart/form-data; boundary=f841744e-0177-481a-ab2c-dc69f1556281","host":"10.0.2.2:8080","msr-req-id":"0e6b85fa-701f-4b08-ba7a-dcba883e8238","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83dbbed7-0213-47e3-ba13-be04ba68d3cf","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:55.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6810,"total_pss":125233,"rss":205056,"native_total_heap":15236,"native_free_heap":1142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"96eaacde-252a-443e-a2ba-520c2383ac46","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:56.16400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6890121,"utime":81,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"a4ffe741-6c49-4a64-ad81-33393b0b7d20","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b41f7221-33ba-4a2b-ba2f-f8f9c1b77ae9","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.17000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512464,"total_pss":73637,"rss":151848,"native_total_heap":12004,"native_free_heap":1292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c253f3ed-ef37-4c3a-b7ac-503f78736cb2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.86900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c6503ac9-bff4-4db2-84dc-bbbae4289791","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:02.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6896119,"utime":87,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d06ca76c-ebf5-44e0-b425-98c20643d7d2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.16800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6887126,"utime":19,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d4d1dda5-355f-4bfd-9a2c-4124c7bea812","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:54.07900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887968,"end_time":6888037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38067","content-type":"multipart/form-data; boundary=f640b6e6-0608-42a8-9051-f016d14db26a","host":"10.0.2.2:8080","msr-req-id":"878f7d79-62de-4426-9dac-ca42bdebbeb7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"ee78a3c4-5670-4266-a349-d743e7c4e59a","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.67300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"eeab5d2d-c577-40e7-87ab-12368ebf8ba3","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.63100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json index 8e6188833..81dd290d7 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json @@ -1 +1 @@ -[{"id":"0b181b11-f8b9-4d42-a609-0e7a92a3e22b","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.30900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f7816a02-2bbc-4b01-a87c-9e41de9e4749|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"26f4dcc4-02eb-48dd-949b-56ca4dcf9b9d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12700000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512698,"total_pss":73403,"rss":148836,"native_total_heap":11748,"native_free_heap":1293,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"44e7a328-8021-4aaa-b68c-68abad49b0a5","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":697718,"uptime":6978078,"utime":22,"cutime":0,"cstime":0,"stime":16,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"469c4e6c-c830-4f77-a6ea-771b07b6256d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.14100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"8017a37a-8472-4fc0-87be-1e1257b7635c","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"b453a1fd-3a49-43b2-9a00-dfeac9c8bee1","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.29100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"e397868b-6226-4fbc-ae7d-c9dab31253aa","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}}] \ No newline at end of file +[{"id":"0b181b11-f8b9-4d42-a609-0e7a92a3e22b","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.30900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f7816a02-2bbc-4b01-a87c-9e41de9e4749|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"26f4dcc4-02eb-48dd-949b-56ca4dcf9b9d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12700000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512698,"total_pss":73403,"rss":148836,"native_total_heap":11748,"native_free_heap":1293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"44e7a328-8021-4aaa-b68c-68abad49b0a5","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":697718,"uptime":6978078,"utime":22,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"469c4e6c-c830-4f77-a6ea-771b07b6256d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.14100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"8017a37a-8472-4fc0-87be-1e1257b7635c","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"b453a1fd-3a49-43b2-9a00-dfeac9c8bee1","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.29100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"e397868b-6226-4fbc-ae7d-c9dab31253aa","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json index 0148515f4..367f2f795 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json @@ -1 +1 @@ -[{"id":"3daf174c-20c3-4df1-bfa5-a30d009cba33","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688414,"uptime":6885081,"utime":22,"cutime":0,"cstime":0,"stime":7,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3dee4eae-169c-428e-9b9c-7a0a931d85ab","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.10700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4b3ccd60-1b8b-4d9f-a806-c693a7baff0b","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.06600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"60e18c2a-171d-44a7-9ab8-f0d809ac3fc9","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.86000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"735bcd5e-2311-4bbf-a62f-f2e1688351f1","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512272,"total_pss":73598,"rss":151144,"native_total_heap":11748,"native_free_heap":1267,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d29fc0d2-5575-4478-a55d-fcf0793ab134","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.26200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||88b38be4-ec8c-424c-8188-dd9da90afcdf|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"e58040e4-fb14-48df-a874-173606d7c1b7","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.24900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file +[{"id":"3daf174c-20c3-4df1-bfa5-a30d009cba33","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688414,"uptime":6885081,"utime":22,"cutime":0,"cstime":0,"stime":7,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3dee4eae-169c-428e-9b9c-7a0a931d85ab","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.10700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4b3ccd60-1b8b-4d9f-a806-c693a7baff0b","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.06600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"60e18c2a-171d-44a7-9ab8-f0d809ac3fc9","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.86000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"735bcd5e-2311-4bbf-a62f-f2e1688351f1","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512272,"total_pss":73598,"rss":151144,"native_total_heap":11748,"native_free_heap":1267,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d29fc0d2-5575-4478-a55d-fcf0793ab134","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.26200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||88b38be4-ec8c-424c-8188-dd9da90afcdf|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"e58040e4-fb14-48df-a874-173606d7c1b7","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.24900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json index 56e528fe7..53771d8ff 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json @@ -1 +1 @@ -[{"id":"033a2f6d-992f-4b80-8bc2-e84d7ca78b59","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":2858,"java_free_heap":0,"total_pss":28454,"rss":107352,"native_total_heap":8192,"native_free_heap":2141,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33e40c0e-ed4d-497b-b161-3321c12fc13f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.22300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"419b2cfa-ea73-4521-b380-c2590a80b151","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.23900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"642c5d0f-11e7-4992-a621-a46b4a0764e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":303976,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"033a2f6d-992f-4b80-8bc2-e84d7ca78b59","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":2858,"java_free_heap":0,"total_pss":28454,"rss":107352,"native_total_heap":8192,"native_free_heap":2141,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33e40c0e-ed4d-497b-b161-3321c12fc13f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.22300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"419b2cfa-ea73-4521-b380-c2590a80b151","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.23900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"642c5d0f-11e7-4992-a621-a46b4a0764e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":303976,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json index 333b89e1a..4a6df2c2a 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json @@ -1 +1 @@ -[{"id":"037d87fe-1988-4b24-9f57-07ffcc950ae7","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.04200000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":438580,"end_time":438860,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:37 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-srw7l","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0685ac7e-87ea-4226-bce4-a2ad2986e788","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:24.43900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":437110,"end_time":437258,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"269","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/144","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"080e2171-de6f-4693-b82b-975c9af5fe81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.72600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"083994e6-13c7-4424-bfcf-fdb34ff0b951","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.79300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0bd6df5f-36d6-40e7-bb11-fcf2ad9be12d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19706,"java_free_heap":1130,"total_pss":89366,"rss":167304,"native_total_heap":34816,"native_free_heap":3600,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e5fca42-24e4-467c-8024-033a9e4a444e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10505f55-0a52-4ac6-af56-ae84e7ba7eea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17c1a014-017a-4d51-acb5-e084ee8cb0c8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.80400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1e654831-1d2c-4c85-bfa9-09858ccdd3bb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:08.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5623,"total_pss":159295,"rss":228064,"native_total_heap":109056,"native_free_heap":30254,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1fe104d7-b4aa-4dd1-9598-c90a10e6e99f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":436679,"end_time":436707,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"150097","content-type":"multipart/form-data; boundary=d063c080-7f95-475f-aa44-9a4ebaa09e25","host":"10.0.2.2:8080","msr-req-id":"34cc5ee9-6bff-4627-9582-6ad2d52e030a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c6b02ba-f97e-49e0-8ac0-5c9864a43b7b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18200000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2ddedadc-e2e9-4798-8d47-bf18d90b3d36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5691,"total_pss":159251,"rss":228048,"native_total_heap":109056,"native_free_heap":30318,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3170ad14-e50b-4884-8f53-50ac912f105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"327555b4-6d9c-4537-92f5-4a907185b020","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.93000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c1d82fb-4019-4dad-a719-3821e6deddd1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46bc7cf8-bdea-44e4-9e80-9b54c9561c8d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51533698-9c69-4765-ab9d-815f4a38eb03","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.73000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51bcd65a-5f52-4c4a-8204-37269c22f7b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.59900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":413378,"end_time":413418,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"408478","content-type":"multipart/form-data; boundary=44ce5e93-400a-41b2-80fd-7e0c2f51dd37","host":"10.0.2.2:8080","msr-req-id":"bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:00 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5238ea13-3b3e-43e0-8f71-9e322eaaf9d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5399,"total_pss":159427,"rss":228280,"native_total_heap":109056,"native_free_heap":30211,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52450abc-6b9d-43df-97db-e21e61181e39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55d52ae0-056b-4408-8087-c8046dd395f4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"598e3d72-bb77-417f-8420-06a2e680ecb1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1a7e21-2ee3-4eb4-bd3b-012eff173be3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.07700000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":436614,"end_time":437896,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"384","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/5","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5d416619-320e-47f8-a250-71ff33ee5ebc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.95400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":438066,"end_time":438773,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"749","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Leader_of_the_Opposition_(Thailand)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:03:26 GMT","etag":"W/\"1216360239/6ac8d1b0-1436-11ef-ab6d-1445b05884d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Leader of the Opposition (Thailand)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6508568\",\"titles\":{\"canonical\":\"Leader_of_the_Opposition_(Thailand)\",\"normalized\":\"Leader of the Opposition (Thailand)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\"},\"pageid\":20706766,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Chaitawat_Tulathon-2023-12-10.jpg/320px-Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6d/Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":708,\"height\":943},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216360239\",\"tid\":\"f0610a12-eea4-11ee-9812-4134d6c417e9\",\"timestamp\":\"2024-03-30T14:51:07Z\",\"description\":\"Politician who leads the parliamentary opposition in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leader_of_the_Opposition_(Thailand)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"}},\"extract\":\"The Leader of the Opposition in the House of Representatives, more commonly described as the Leader of the Opposition, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLeader of the Opposition in the House of Representatives\u003c/b\u003e, more commonly described as the \u003cb\u003eLeader of the Opposition\u003c/b\u003e, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e9ff900-e296-4d5e-9864-373a03ff5473","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":425352,"utime":1141,"cutime":0,"cstime":0,"stime":1032,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6b75adbe-43e3-4f01-aa27-b5560eec8966","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.86500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6deede5f-fbd6-489d-bb7a-f9437d9c7510","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e9c0478-dc22-4b6e-85d3-271f355c2d6a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6f240e79-af1f-4d6e-b72e-337a45f2a1ef","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"710b9436-b953-4d92-a681-0eea5ac93bbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:02.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5851,"total_pss":159166,"rss":227772,"native_total_heap":109056,"native_free_heap":30361,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"715e34d1-b692-4af0-9210-df459476efc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:04.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5763,"total_pss":159222,"rss":227812,"native_total_heap":109056,"native_free_heap":30325,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"749a2704-e456-4312-9d0e-70f14a8d068b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7628ef51-5a14-4edb-a955-32151f242eb8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.98700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":436795,"end_time":436806,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76311337-aef9-477b-b10f-9ac9bb92e6f2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e12c31f-65c1-4319-8b3a-baf1a186c593","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":436564,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"849c5b1c-c9b7-40ca-9274-c910a7af3011","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cf84eab-f29f-4806-958a-dfb77a10954e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:09.53300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":422352,"utime":1139,"cutime":0,"cstime":0,"stime":1030,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90b3a5c4-52a7-4cba-99c9-01af5dca317e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:10.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5551,"total_pss":159347,"rss":228244,"native_total_heap":109056,"native_free_heap":30219,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"992fa3e7-b765-47a1-be8b-cd243fd432ab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.24800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":427012,"end_time":427067,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"103713","content-type":"multipart/form-data; boundary=41c0d3e7-82dc-46ba-8025-5127be67c0b3","host":"10.0.2.2:8080","msr-req-id":"d739b906-a193-4659-801e-654570f5f1b4","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad4e968-3fa9-42a2-be29-6a985eb30bb4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a89c9c6c-f3f8-47b6-b474-a6b09c695a91","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":3387,"java_free_heap":1641,"total_pss":29532,"rss":97736,"native_total_heap":8192,"native_free_heap":2905,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8ccb8e6-6708-4cd1-b097-d109559e96ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.52300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":426993,"end_time":427342,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1095","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8da1568-c06a-41ec-a8ab-85e578fe450d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_COMPLETE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8e2aeeb-0a75-44c9-ae1d-a65300eb9d4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.97000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":436548,"on_next_draw_uptime":436789,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1be7717-8c28-438f-b09c-57523c27e6e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":419348,"utime":1136,"cutime":0,"cstime":0,"stime":1026,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da283e7b-04ab-49a0-a357-ec3376daccce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:15.82100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db316ebd-c7fa-4be8-b93a-a08d1658c292","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:03.53400000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":416353,"utime":1135,"cutime":0,"cstime":0,"stime":1023,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f458580d-3df0-4095-9ff2-72daa3a5fc11","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53200000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4298,"total_pss":158002,"rss":230176,"native_total_heap":109056,"native_free_heap":28821,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9214e31-79a3-4c6e-b09f-6eb5d9b54f63","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.17300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fda916f0-bcc8-428f-8ba0-f355d5983303","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.69100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":530.96924,"y":309.96094,"touch_down_time":438401,"touch_up_time":438507},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"037d87fe-1988-4b24-9f57-07ffcc950ae7","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.04200000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":438580,"end_time":438860,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:37 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-srw7l","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0685ac7e-87ea-4226-bce4-a2ad2986e788","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:24.43900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":437110,"end_time":437258,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"269","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/144","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"080e2171-de6f-4693-b82b-975c9af5fe81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.72600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"083994e6-13c7-4424-bfcf-fdb34ff0b951","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.79300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0bd6df5f-36d6-40e7-bb11-fcf2ad9be12d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19706,"java_free_heap":1130,"total_pss":89366,"rss":167304,"native_total_heap":34816,"native_free_heap":3600,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e5fca42-24e4-467c-8024-033a9e4a444e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10505f55-0a52-4ac6-af56-ae84e7ba7eea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17c1a014-017a-4d51-acb5-e084ee8cb0c8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.80400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1e654831-1d2c-4c85-bfa9-09858ccdd3bb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:08.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5623,"total_pss":159295,"rss":228064,"native_total_heap":109056,"native_free_heap":30254,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1fe104d7-b4aa-4dd1-9598-c90a10e6e99f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":436679,"end_time":436707,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"150097","content-type":"multipart/form-data; boundary=d063c080-7f95-475f-aa44-9a4ebaa09e25","host":"10.0.2.2:8080","msr-req-id":"34cc5ee9-6bff-4627-9582-6ad2d52e030a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c6b02ba-f97e-49e0-8ac0-5c9864a43b7b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18200000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2ddedadc-e2e9-4798-8d47-bf18d90b3d36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5691,"total_pss":159251,"rss":228048,"native_total_heap":109056,"native_free_heap":30318,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3170ad14-e50b-4884-8f53-50ac912f105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"327555b4-6d9c-4537-92f5-4a907185b020","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.93000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c1d82fb-4019-4dad-a719-3821e6deddd1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46bc7cf8-bdea-44e4-9e80-9b54c9561c8d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51533698-9c69-4765-ab9d-815f4a38eb03","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.73000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51bcd65a-5f52-4c4a-8204-37269c22f7b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.59900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":413378,"end_time":413418,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"408478","content-type":"multipart/form-data; boundary=44ce5e93-400a-41b2-80fd-7e0c2f51dd37","host":"10.0.2.2:8080","msr-req-id":"bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:00 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5238ea13-3b3e-43e0-8f71-9e322eaaf9d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5399,"total_pss":159427,"rss":228280,"native_total_heap":109056,"native_free_heap":30211,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52450abc-6b9d-43df-97db-e21e61181e39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55d52ae0-056b-4408-8087-c8046dd395f4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"598e3d72-bb77-417f-8420-06a2e680ecb1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1a7e21-2ee3-4eb4-bd3b-012eff173be3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.07700000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":436614,"end_time":437896,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"384","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/5","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5d416619-320e-47f8-a250-71ff33ee5ebc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.95400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":438066,"end_time":438773,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"749","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Leader_of_the_Opposition_(Thailand)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:03:26 GMT","etag":"W/\"1216360239/6ac8d1b0-1436-11ef-ab6d-1445b05884d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Leader of the Opposition (Thailand)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6508568\",\"titles\":{\"canonical\":\"Leader_of_the_Opposition_(Thailand)\",\"normalized\":\"Leader of the Opposition (Thailand)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\"},\"pageid\":20706766,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Chaitawat_Tulathon-2023-12-10.jpg/320px-Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6d/Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":708,\"height\":943},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216360239\",\"tid\":\"f0610a12-eea4-11ee-9812-4134d6c417e9\",\"timestamp\":\"2024-03-30T14:51:07Z\",\"description\":\"Politician who leads the parliamentary opposition in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leader_of_the_Opposition_(Thailand)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"}},\"extract\":\"The Leader of the Opposition in the House of Representatives, more commonly described as the Leader of the Opposition, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLeader of the Opposition in the House of Representatives\u003c/b\u003e, more commonly described as the \u003cb\u003eLeader of the Opposition\u003c/b\u003e, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e9ff900-e296-4d5e-9864-373a03ff5473","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":425352,"utime":1141,"cutime":0,"cstime":0,"stime":1032,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6b75adbe-43e3-4f01-aa27-b5560eec8966","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.86500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6deede5f-fbd6-489d-bb7a-f9437d9c7510","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e9c0478-dc22-4b6e-85d3-271f355c2d6a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6f240e79-af1f-4d6e-b72e-337a45f2a1ef","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"710b9436-b953-4d92-a681-0eea5ac93bbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:02.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5851,"total_pss":159166,"rss":227772,"native_total_heap":109056,"native_free_heap":30361,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"715e34d1-b692-4af0-9210-df459476efc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:04.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5763,"total_pss":159222,"rss":227812,"native_total_heap":109056,"native_free_heap":30325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"749a2704-e456-4312-9d0e-70f14a8d068b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7628ef51-5a14-4edb-a955-32151f242eb8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.98700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":436795,"end_time":436806,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76311337-aef9-477b-b10f-9ac9bb92e6f2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e12c31f-65c1-4319-8b3a-baf1a186c593","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":436564,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"849c5b1c-c9b7-40ca-9274-c910a7af3011","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cf84eab-f29f-4806-958a-dfb77a10954e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:09.53300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":422352,"utime":1139,"cutime":0,"cstime":0,"stime":1030,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90b3a5c4-52a7-4cba-99c9-01af5dca317e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:10.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5551,"total_pss":159347,"rss":228244,"native_total_heap":109056,"native_free_heap":30219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"992fa3e7-b765-47a1-be8b-cd243fd432ab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.24800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":427012,"end_time":427067,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"103713","content-type":"multipart/form-data; boundary=41c0d3e7-82dc-46ba-8025-5127be67c0b3","host":"10.0.2.2:8080","msr-req-id":"d739b906-a193-4659-801e-654570f5f1b4","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad4e968-3fa9-42a2-be29-6a985eb30bb4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a89c9c6c-f3f8-47b6-b474-a6b09c695a91","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":3387,"java_free_heap":1641,"total_pss":29532,"rss":97736,"native_total_heap":8192,"native_free_heap":2905,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8ccb8e6-6708-4cd1-b097-d109559e96ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.52300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":426993,"end_time":427342,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1095","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8da1568-c06a-41ec-a8ab-85e578fe450d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_COMPLETE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8e2aeeb-0a75-44c9-ae1d-a65300eb9d4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.97000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":436548,"on_next_draw_uptime":436789,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1be7717-8c28-438f-b09c-57523c27e6e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":419348,"utime":1136,"cutime":0,"cstime":0,"stime":1026,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da283e7b-04ab-49a0-a357-ec3376daccce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:15.82100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db316ebd-c7fa-4be8-b93a-a08d1658c292","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:03.53400000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":416353,"utime":1135,"cutime":0,"cstime":0,"stime":1023,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f458580d-3df0-4095-9ff2-72daa3a5fc11","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53200000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4298,"total_pss":158002,"rss":230176,"native_total_heap":109056,"native_free_heap":28821,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9214e31-79a3-4c6e-b09f-6eb5d9b54f63","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.17300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fda916f0-bcc8-428f-8ba0-f355d5983303","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.69100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":530.96924,"y":309.96094,"touch_down_time":438401,"touch_up_time":438507},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json index a780ac5f7..711539655 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json @@ -1 +1 @@ -[{"id":"04b43dc9-565f-4d63-b9e4-3ab84679b972","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"069217bd-2488-4890-8157-c2eb34d39832","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e150185-dfbd-41c6-8783-ef8d5bdbf9c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14ba4714-b6a9-45d0-9d34-f6e50ab44d87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1616f8c4-704b-44c5-a07e-78005189a661","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":6044,"total_pss":132114,"rss":204976,"native_total_heap":87552,"native_free_heap":23179,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"192c3beb-d86b-4459-ba7b-14bf8debe558","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.39500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":391897,"end_time":392214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1d871a7b-8f87-4eec-a98a-7f529f934c4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.13700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg","method":"get","status_code":200,"start_time":384903,"end_time":384956,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62755","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg","content-length":"290055","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:36 GMT","etag":"9e60cd6f7c9f7392a1e406a1ed7f0d9a","last-modified":"Sun, 24 Sep 2023 19:26:09 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/218","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f223132-a9eb-4cf0-aeb8-1ea47b38b85f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.33100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21c86613-f702-4e9c-b5b1-3efe6f9852c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":389348,"utime":846,"cutime":0,"cstime":0,"stime":783,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"257841b3-d45c-4815-9209-9fa69fe65057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.16900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27f73b5b-95b5-4149-afdb-2d07711496a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.00000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":393530,"end_time":393819,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"313181e9-8e80-41c6-9a68-5c6b0f4d08f1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.56800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":393367,"end_time":393387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"110402","content-type":"multipart/form-data; boundary=49f40a14-2ff6-476a-8b10-a14e9b5c6063","host":"10.0.2.2:8080","msr-req-id":"d0be6d67-9f94-42af-8bb9-dfcb7feada57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b2c667-fe02-477d-a092-d2fe99a38bba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b50eff8-5375-4373-a5ce-eb1915ffad0b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.17800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f57ee7c-66fd-4fb9-a06d-90183abc076c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":395347,"utime":872,"cutime":0,"cstime":0,"stime":801,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f77f311-faaf-4b4c-b5e6-8270390171ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4059ec59-d1bf-43a5-80e4-d53c8dcae35d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.47800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385974,"end_time":386297,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"383","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"446eef73-a543-42e9-ba0a-224be5418418","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.14000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a4726c3-7813-4239-bce4-3d621b9a3037","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b3a547f-f9d7-4bba-a079-ff4ea0572096","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.06600000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1013.9502,"y":286.9336,"touch_down_time":391772,"touch_up_time":391882},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f33ed6f-90f4-47e4-9d0e-ad365fd0442e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.15800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6263bba6-12a7-4c4b-9f72-027550c2daa1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"627e0bcd-b521-4ec4-a3e3-46dde4ef5149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.03600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","method":"get","status_code":200,"start_time":384799,"end_time":384855,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63920","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","content-length":"290076","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:17:13 GMT","etag":"0748f92ede46e56ceaed2c5e162f4085","last-modified":"Sat, 24 Sep 2022 00:06:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64eab882-4e09-41e0-a13a-52a3a341a778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:34.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":5152,"total_pss":113116,"rss":182256,"native_total_heap":87552,"native_free_heap":23015,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"662b01ba-59e2-4449-b544-75d8835acc32","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ae21a21-c480-49f7-8ac4-c2a01babd0c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70797df3-0adf-4a00-9a54-a6903fbccf42","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.48100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385975,"end_time":386300,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1063","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7237cc04-0b89-4502-ae86-ccc8f504689f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.08200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg","method":"get","status_code":200,"start_time":384857,"end_time":384901,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65150","content-disposition":"inline;filename*=UTF-8''Raisi-Xi_meeting_%282023-02-14%29.jpg","content-length":"66778","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:56:43 GMT","etag":"c1bc3653d320e9fa9ff8eb37893a6b43","last-modified":"Mon, 13 Mar 2023 12:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/150","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83b99cc6-d668-4185-a612-ff08f4ad2221","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:38.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4847,"total_pss":112145,"rss":180336,"native_total_heap":87552,"native_free_heap":22753,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a730330-3339-4d25-b76e-7482d0354ea5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4297,"total_pss":113250,"rss":183276,"native_total_heap":87552,"native_free_heap":22713,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8e9393b2-eef6-4e8e-b9a1-b8f127080a6b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95e76ce9-224e-489c-9916-1cad534b3740","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.13000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":327.97485,"y":1738.9453,"touch_down_time":394848,"touch_up_time":394944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97711184-0b77-4d4a-a3b3-4b661964c18e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"983e6cef-dd73-4f0f-b53c-2c4def2529b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4899,"total_pss":112456,"rss":180616,"native_total_heap":87552,"native_free_heap":22769,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c6862a1-387a-49b5-a386-bbcac8c1f7b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac45c30d-270f-4ea6-b798-47609513beda","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b37f1352-ba14-4967-8b43-34eee983854a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b980ef0f-49f2-4421-ad8d-bc920caea4be","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":728,"total_pss":121830,"rss":190620,"native_total_heap":87552,"native_free_heap":20845,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3a1ac7-2898-4203-a291-875707b8be14","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c19db484-4b57-4f93-8673-64de7c4f0119","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c636e075-36e5-4281-9a25-e5b3e04cb459","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.03100000Z","type":"gesture_click","gesture_click":{"target":"android.view.View","target_id":"touch_outside","width":1080,"height":1731,"x":203.98315,"y":726.97266,"touch_down_time":396769,"touch_up_time":396848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d159d497-7ec9-4bde-9e43-0253233fbd15","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":392347,"utime":855,"cutime":0,"cstime":0,"stime":792,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2f8f1c8-c725-4dd8-bce6-9da89f84e623","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":384539,"end_time":385018,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"20827","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"959","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Toll-like_receptor","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 03:15:24 GMT","etag":"W/\"1220855300/c5388090-1531-11ef-9fa7-8027fc84d00e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Toll-like receptor\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q408004\",\"titles\":{\"canonical\":\"Toll-like_receptor\",\"normalized\":\"Toll-like receptor\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\"},\"pageid\":546406,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/TLR3_structure.png/320px-TLR3_structure.png\",\"width\":320,\"height\":273},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/06/TLR3_structure.png\",\"width\":917,\"height\":782},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220855300\",\"tid\":\"0d5d010b-03b3-11ef-915d-4775157a1b6a\",\"timestamp\":\"2024-04-26T09:55:03Z\",\"description\":\"Class of immune system proteins\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toll-like_receptor\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toll-like_receptor\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toll-like_receptor\"}},\"extract\":\"Toll-like receptors (TLRs) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToll-like receptors\u003c/b\u003e (\u003cb\u003eTLRs\u003c/b\u003e) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6bfea51-04d4-43f5-ad89-357b8f048390","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":938.9685,"y":1752.8906,"touch_down_time":395780,"touch_up_time":395944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d811588e-1221-4f1d-80b6-7e7336d6b53e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":384959,"end_time":385010,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bf327d5124c258158127165fb9e293ab","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11324","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","content-length":"260547","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:53:48 GMT","etag":"24cb7d8b309ae3d7c73f835cbed0cdc1","last-modified":"Mon, 20 May 2024 05:52:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/165","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2f3ebbd-a5bf-49b2-b5b8-345fb507dbe6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5e6cc8d-2abe-4795-af76-8616434ec95d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.98000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":971.96045,"y":324.96094,"touch_down_time":385727,"touch_up_time":385797},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0e6e4b3-cdae-4ef0-b812-97eb8d4e31c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":386347,"utime":842,"cutime":0,"cstime":0,"stime":776,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fd24ff22-ed89-4805-ae04-aa9ee543b0ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.70700000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1004.9524,"y":305.97656,"touch_down_time":393412,"touch_up_time":393525},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"feb620da-3195-4f6c-9f2c-0cd3aae12e2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"04b43dc9-565f-4d63-b9e4-3ab84679b972","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"069217bd-2488-4890-8157-c2eb34d39832","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e150185-dfbd-41c6-8783-ef8d5bdbf9c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14ba4714-b6a9-45d0-9d34-f6e50ab44d87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1616f8c4-704b-44c5-a07e-78005189a661","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":6044,"total_pss":132114,"rss":204976,"native_total_heap":87552,"native_free_heap":23179,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"192c3beb-d86b-4459-ba7b-14bf8debe558","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.39500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":391897,"end_time":392214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1d871a7b-8f87-4eec-a98a-7f529f934c4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.13700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg","method":"get","status_code":200,"start_time":384903,"end_time":384956,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62755","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg","content-length":"290055","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:36 GMT","etag":"9e60cd6f7c9f7392a1e406a1ed7f0d9a","last-modified":"Sun, 24 Sep 2023 19:26:09 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/218","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f223132-a9eb-4cf0-aeb8-1ea47b38b85f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.33100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21c86613-f702-4e9c-b5b1-3efe6f9852c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":389348,"utime":846,"cutime":0,"cstime":0,"stime":783,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"257841b3-d45c-4815-9209-9fa69fe65057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.16900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27f73b5b-95b5-4149-afdb-2d07711496a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.00000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":393530,"end_time":393819,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"313181e9-8e80-41c6-9a68-5c6b0f4d08f1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.56800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":393367,"end_time":393387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"110402","content-type":"multipart/form-data; boundary=49f40a14-2ff6-476a-8b10-a14e9b5c6063","host":"10.0.2.2:8080","msr-req-id":"d0be6d67-9f94-42af-8bb9-dfcb7feada57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b2c667-fe02-477d-a092-d2fe99a38bba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b50eff8-5375-4373-a5ce-eb1915ffad0b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.17800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f57ee7c-66fd-4fb9-a06d-90183abc076c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":395347,"utime":872,"cutime":0,"cstime":0,"stime":801,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f77f311-faaf-4b4c-b5e6-8270390171ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4059ec59-d1bf-43a5-80e4-d53c8dcae35d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.47800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385974,"end_time":386297,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"383","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"446eef73-a543-42e9-ba0a-224be5418418","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.14000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a4726c3-7813-4239-bce4-3d621b9a3037","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b3a547f-f9d7-4bba-a079-ff4ea0572096","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.06600000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1013.9502,"y":286.9336,"touch_down_time":391772,"touch_up_time":391882},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f33ed6f-90f4-47e4-9d0e-ad365fd0442e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.15800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6263bba6-12a7-4c4b-9f72-027550c2daa1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"627e0bcd-b521-4ec4-a3e3-46dde4ef5149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.03600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","method":"get","status_code":200,"start_time":384799,"end_time":384855,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63920","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","content-length":"290076","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:17:13 GMT","etag":"0748f92ede46e56ceaed2c5e162f4085","last-modified":"Sat, 24 Sep 2022 00:06:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64eab882-4e09-41e0-a13a-52a3a341a778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:34.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":5152,"total_pss":113116,"rss":182256,"native_total_heap":87552,"native_free_heap":23015,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"662b01ba-59e2-4449-b544-75d8835acc32","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ae21a21-c480-49f7-8ac4-c2a01babd0c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70797df3-0adf-4a00-9a54-a6903fbccf42","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.48100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385975,"end_time":386300,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1063","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7237cc04-0b89-4502-ae86-ccc8f504689f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.08200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg","method":"get","status_code":200,"start_time":384857,"end_time":384901,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65150","content-disposition":"inline;filename*=UTF-8''Raisi-Xi_meeting_%282023-02-14%29.jpg","content-length":"66778","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:56:43 GMT","etag":"c1bc3653d320e9fa9ff8eb37893a6b43","last-modified":"Mon, 13 Mar 2023 12:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/150","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83b99cc6-d668-4185-a612-ff08f4ad2221","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:38.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4847,"total_pss":112145,"rss":180336,"native_total_heap":87552,"native_free_heap":22753,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a730330-3339-4d25-b76e-7482d0354ea5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4297,"total_pss":113250,"rss":183276,"native_total_heap":87552,"native_free_heap":22713,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8e9393b2-eef6-4e8e-b9a1-b8f127080a6b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95e76ce9-224e-489c-9916-1cad534b3740","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.13000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":327.97485,"y":1738.9453,"touch_down_time":394848,"touch_up_time":394944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97711184-0b77-4d4a-a3b3-4b661964c18e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"983e6cef-dd73-4f0f-b53c-2c4def2529b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4899,"total_pss":112456,"rss":180616,"native_total_heap":87552,"native_free_heap":22769,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c6862a1-387a-49b5-a386-bbcac8c1f7b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac45c30d-270f-4ea6-b798-47609513beda","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b37f1352-ba14-4967-8b43-34eee983854a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b980ef0f-49f2-4421-ad8d-bc920caea4be","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":728,"total_pss":121830,"rss":190620,"native_total_heap":87552,"native_free_heap":20845,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3a1ac7-2898-4203-a291-875707b8be14","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c19db484-4b57-4f93-8673-64de7c4f0119","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c636e075-36e5-4281-9a25-e5b3e04cb459","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.03100000Z","type":"gesture_click","gesture_click":{"target":"android.view.View","target_id":"touch_outside","width":1080,"height":1731,"x":203.98315,"y":726.97266,"touch_down_time":396769,"touch_up_time":396848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d159d497-7ec9-4bde-9e43-0253233fbd15","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":392347,"utime":855,"cutime":0,"cstime":0,"stime":792,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2f8f1c8-c725-4dd8-bce6-9da89f84e623","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":384539,"end_time":385018,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"20827","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"959","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Toll-like_receptor","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 03:15:24 GMT","etag":"W/\"1220855300/c5388090-1531-11ef-9fa7-8027fc84d00e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Toll-like receptor\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q408004\",\"titles\":{\"canonical\":\"Toll-like_receptor\",\"normalized\":\"Toll-like receptor\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\"},\"pageid\":546406,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/TLR3_structure.png/320px-TLR3_structure.png\",\"width\":320,\"height\":273},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/06/TLR3_structure.png\",\"width\":917,\"height\":782},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220855300\",\"tid\":\"0d5d010b-03b3-11ef-915d-4775157a1b6a\",\"timestamp\":\"2024-04-26T09:55:03Z\",\"description\":\"Class of immune system proteins\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toll-like_receptor\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toll-like_receptor\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toll-like_receptor\"}},\"extract\":\"Toll-like receptors (TLRs) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToll-like receptors\u003c/b\u003e (\u003cb\u003eTLRs\u003c/b\u003e) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6bfea51-04d4-43f5-ad89-357b8f048390","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":938.9685,"y":1752.8906,"touch_down_time":395780,"touch_up_time":395944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d811588e-1221-4f1d-80b6-7e7336d6b53e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":384959,"end_time":385010,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bf327d5124c258158127165fb9e293ab","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11324","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","content-length":"260547","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:53:48 GMT","etag":"24cb7d8b309ae3d7c73f835cbed0cdc1","last-modified":"Mon, 20 May 2024 05:52:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/165","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2f3ebbd-a5bf-49b2-b5b8-345fb507dbe6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5e6cc8d-2abe-4795-af76-8616434ec95d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.98000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":971.96045,"y":324.96094,"touch_down_time":385727,"touch_up_time":385797},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0e6e4b3-cdae-4ef0-b812-97eb8d4e31c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":386347,"utime":842,"cutime":0,"cstime":0,"stime":776,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fd24ff22-ed89-4805-ae04-aa9ee543b0ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.70700000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1004.9524,"y":305.97656,"touch_down_time":393412,"touch_up_time":393525},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"feb620da-3195-4f6c-9f2c-0cd3aae12e2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json index 781036280..f64fdae43 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json @@ -1 +1 @@ -[{"id":"068c8201-2007-4c74-b6f3-912fac58ebbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.56800000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":405095,"end_time":405387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:52 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-9d7r2","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a30d6b-3246-4356-8652-211fad9b59b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"18f9d911-647c-49a7-a55d-a40466b8b460","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.63100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404803,"end_time":405449,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/3a9007c0-151c-11ef-b8e3-c8d506762f01\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1abe3620-2277-4655-b42a-9a3a283f76ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1df5b41d-c663-4833-b50f-29d771ddd065","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f52bd18-b905-4b47-84c0-d23730de3396","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407925,"end_time":408270,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"382","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3299f699-cc72-4d38-b718-b9d4cd8522a7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b332fed-35c9-4ae8-a246-9d0fb7039ae1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"776","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"411897ce-8a40-4c19-be7e-f118103a3b1d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.60700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51367f8a-2763-490a-bb26-19569b7ec3ce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":405462,"end_time":405465,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52e344a6-4f1b-40ba-ab2e-df359b7c8bb7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.12900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":304,"start_time":404710,"end_time":404948,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"123c8-18d7e9bad57\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"123c8-18d7e9bad57\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64a44103-12b2-4e49-b678-43f1fd63616d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":407349,"utime":1095,"cutime":0,"cstime":0,"stime":975,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69645315-9b61-4677-bafa-c77f77f39438","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a9a9787-d045-4b1c-8c0a-f4f126770e9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":405463,"end_time":405470,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77b61ef9-dd64-45a8-a08c-31b33ea85c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77c5761c-7ef8-4075-b69d-33cbbd972759","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":405466,"end_time":405473,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e7d1421-2884-4933-ae34-2a311eae94d1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19995,"java_free_heap":6096,"total_pss":187624,"rss":266104,"native_total_heap":125440,"native_free_heap":16078,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80abc601-6a8c-49b4-ba7c-6c991187ea16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.11500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/1280px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405628,"end_time":405934,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"181624","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:53 GMT","etag":"064f6c82433ef52f4e8b7e9b155fc79f","last-modified":"Sat, 27 Feb 2016 04:11:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qnwnnp5rha3oakobj2khjuxqblz4hyc"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84d253cf-ee49-48d5-b7d5-6e8c1187dbe8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404684,"end_time":404960,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1093","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8809aea3-406e-48f7-ad56-82ad6c9265a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"889971c8-b30a-4d16-9910-a98488ba9ee1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407924,"end_time":408271,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"719","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fb2ec4b-c2f3-41bb-ad3a-7a53f62e306e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:57.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":410347,"utime":1127,"cutime":0,"cstime":0,"stime":1012,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"905ec879-0b00-486d-bc8d-1c9bc89fab21","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"91fed9d8-4353-4c4e-9d60-0fe139075f4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.82300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":405638,"end_time":405642,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b8bad5c-cdc6-4515-9a23-c2c7dc119942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2fcf45f-68f6-4ef7-bc72-bbc436919679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.31500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":75.97046,"y":1610.918,"touch_down_time":409061,"touch_up_time":409130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7f64d11-bc63-4644-89de-c7c23c302f80","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.23700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404800,"end_time":405056,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/21a9d2e0-151c-11ef-a477-3a620a7dd899\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bridge School Benefit\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1090897\",\"titles\":{\"canonical\":\"Bridge_School_Benefit\",\"normalized\":\"Bridge School Benefit\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\"},\"pageid\":2169786,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg\",\"width\":320,\"height\":223},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/48/Shoreline_Amphitheatre.jpg\",\"width\":1368,\"height\":954},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211634642\",\"tid\":\"9ab739c3-d97a-11ee-8b93-5143dbf0a773\",\"timestamp\":\"2024-03-03T16:25:10Z\",\"description\":\"Charity concerts in California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.42666667,\"lon\":-122.08083333},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_Benefit\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"}},\"extract\":\"\\nThe Bridge School Benefit was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\",\"extract_html\":\"\u003cp\u003e\\nThe \u003cb\u003eBridge School Benefit\u003c/b\u003e was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"add18888-aa81-4eb8-a156-95e015603b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.89500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae08afa3-fa48-465f-a226-70f7bc1ddf4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b55f9252-dec8-4d11-b741-0a6e6f5a2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:58.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4402,"total_pss":157469,"rss":226016,"native_total_heap":109056,"native_free_heap":28907,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7034817-ffda-4c89-baf7-f0bd9adbee97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20090,"java_free_heap":4487,"total_pss":173086,"rss":252736,"native_total_heap":125440,"native_free_heap":14291,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba0a2772-1879-4387-9d8f-58e29f24c6f2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.36100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":42.978516,"y":149.9414,"touch_down_time":407065,"touch_up_time":407177},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be144dcf-284c-41fb-a58d-632709c7646d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.00700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg","method":"get","status_code":200,"start_time":406780,"end_time":406826,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12911","content-length":"91849","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:27:44 GMT","etag":"acf48a134be1177e8ead7708e943023c","last-modified":"Fri, 04 Mar 2016 11:14:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"1mex37ctmfjotjempm05btcux9qn6ij"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c117bd61-90b1-4998-b182-659a857df241","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4474,"total_pss":160242,"rss":228808,"native_total_heap":109056,"native_free_heap":28883,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c1808fa7-30ed-4eb7-8d9b-a647042d8207","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc004c5d-9d37-4019-97f1-9a1198c19bcb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.92900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/640px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405099,"end_time":405748,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"57970","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"1cd1b08c3fb56106a3d85abf7cbc51ed","last-modified":"Sat, 27 Feb 2016 04:12:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"g7x68wml5tl65yrgehmhinh8oov2m5j"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf372d6-f057-47a8-9e48-4b25cfaba829","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf8ce554-5bf4-4ab8-987a-7c59b95bea2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d191a3ea-e3fb-4243-9f9e-f741c22dcebe","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.21700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg","method":"get","status_code":200,"start_time":406781,"end_time":407036,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"32194","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:54 GMT","etag":"d70781fa5198476a7f1f0de3ed48f27a","last-modified":"Fri, 07 Jul 2017 22:10:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2dd7b1f-a0b9-4ce2-a943-47eee9abb399","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"backButton","width":126,"height":126,"x":42.978516,"y":149.9414,"touch_down_time":407819,"touch_up_time":407920},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d926155b-500b-4680-bd8c-488c48e43de6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407459,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"daa9f7d2-3021-4b9c-8b98-acc8e063b3fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"debbf582-e1b8-4fba-8cd6-4553dec8189d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e413d9d7-62d5-4f16-8a8e-946882e4d8c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5f59302-cdd5-4e92-9d18-4d2ae0a27f7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":405462,"end_time":405468,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e87a21a8-ac20-479f-bb90-dbeb12997cb0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404686,"end_time":404962,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1147","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb35a22b-709c-4dde-af91-1b41c9b071dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.93400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","method":"get","status_code":200,"start_time":405662,"end_time":406753,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:53 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2032","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"7z336l541cbo66002xhogwuo9","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":8228,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"Decade_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1181697\",\"titles\":{\"canonical\":\"Decade_(Neil_Young_album)\",\"normalized\":\"Decade (Neil Young album)\",\"display\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216315995\",\"tid\":\"9861d724-ee7b-11ee-aa1f-c0acd4f5457d\",\"timestamp\":\"2024-03-30T09:55:10Z\",\"description\":\"1977 compilation album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Decade_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"}},\"extract\":\"Decade is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the Billboard Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eDecade\u003c/b\u003e\u003c/i\u003e is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the \u003ci\u003eBillboard\u003c/i\u003e Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\u003c/p\u003e\",\"normalizedtitle\":\"Decade (Neil Young album)\"},{\"pageid\":87985,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Neil_Young\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q633\",\"titles\":{\"canonical\":\"Neil_Young\",\"normalized\":\"Neil Young\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg/320px-DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":320,\"height\":473},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":1470,\"height\":2175},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224521209\",\"tid\":\"ecc3360e-1561-11ef-9ad4-25d57eeca119\",\"timestamp\":\"2024-05-18T21:59:40Z\",\"description\":\"Canadian and American musician (born 1945)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young\"}},\"extract\":\"Neil Percival Young is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as Everybody Knows This Is Nowhere (1969), After the Gold Rush (1970), Harvest (1972), On the Beach (1974), and Rust Never Sleeps (1979). He was also a part-time member of Crosby, Stills, Nash \u0026 Young, with whom he recorded the chart-topping 1970 album Déjà Vu.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNeil Percival Young\u003c/b\u003e is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e (1969), \u003ci\u003eAfter the Gold Rush\u003c/i\u003e (1970), \u003ci\u003eHarvest\u003c/i\u003e (1972), \u003ci\u003eOn the Beach\u003c/i\u003e (1974), and \u003ci\u003eRust Never Sleeps\u003c/i\u003e (1979). He was also a part-time member of Crosby, Stills, Nash \u0026amp; Young, with whom he recorded the chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young\"},{\"pageid\":154247,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Eddie_Vedder\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q221535\",\"titles\":{\"canonical\":\"Eddie_Vedder\",\"normalized\":\"Eddie Vedder\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Eddie_Vedder_2018_-2.jpg/320px-Eddie_Vedder_2018_-2.jpg\",\"width\":320,\"height\":439},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Eddie_Vedder_2018_-2.jpg\",\"width\":1201,\"height\":1647},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222464208\",\"tid\":\"a41983c0-0b56-11ef-8d40-256ceee6af43\",\"timestamp\":\"2024-05-06T03:13:42Z\",\"description\":\"American singer (born 1964)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Eddie_Vedder\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Eddie_Vedder\",\"edit\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Eddie_Vedder\"}},\"extract\":\"Eddie Jerome Vedder is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEddie Jerome Vedder\u003c/b\u003e is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\u003c/p\u003e\",\"normalizedtitle\":\"Eddie Vedder\"},{\"pageid\":176416,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Nils_Lofgren\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q504954\",\"titles\":{\"canonical\":\"Nils_Lofgren\",\"normalized\":\"Nils Lofgren\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Nils_Lofgren_%2846480129234%29.jpg/320px-Nils_Lofgren_%2846480129234%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d0/Nils_Lofgren_%2846480129234%29.jpg\",\"width\":5306,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224444957\",\"tid\":\"3424cf8d-1518-11ef-b3eb-3c90a4531d0d\",\"timestamp\":\"2024-05-18T13:11:57Z\",\"description\":\"American rock musician (born 1951)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nils_Lofgren\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nils_Lofgren\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nils_Lofgren\"}},\"extract\":\"Nils Hilmer Lofgren is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNils Hilmer Lofgren\u003c/b\u003e is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Nils Lofgren\"},{\"pageid\":568849,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"America:_A_Tribute_to_Heroes\",\"displaytitle\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2273648\",\"titles\":{\"canonical\":\"America:_A_Tribute_to_Heroes\",\"normalized\":\"America: A Tribute to Heroes\",\"display\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218642805\",\"tid\":\"ad7c4579-f91e-11ee-b494-eaa15dc47b98\",\"timestamp\":\"2024-04-12T22:47:45Z\",\"description\":\"Benefit concert that raised money for victims of 9/11 attacks\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/America%3A_A_Tribute_to_Heroes\",\"edit\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"}},\"extract\":\"America: A Tribute to Heroes was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAmerica: A Tribute to Heroes\u003c/b\u003e\u003c/i\u003e was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\u003c/p\u003e\",\"normalizedtitle\":\"America: A Tribute to Heroes\"},{\"pageid\":723447,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"After_the_Gold_Rush\",\"displaytitle\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q264397\",\"titles\":{\"canonical\":\"After_the_Gold_Rush\",\"normalized\":\"After the Gold Rush\",\"display\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221220336\",\"tid\":\"9c6840a4-057a-11ef-80ac-d6c92c55f57f\",\"timestamp\":\"2024-04-28T16:16:04Z\",\"description\":\"1970 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/After_the_Gold_Rush\",\"edit\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"}},\"extract\":\"After the Gold Rush is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026 Young in the wake of their chart-topping 1970 album Déjà Vu. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay After the Gold Rush.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAfter the Gold Rush\u003c/b\u003e\u003c/i\u003e is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026amp; Young in the wake of their chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay \u003ci\u003eAfter the Gold Rush\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"After the Gold Rush\"},{\"pageid\":723456,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Crazy_Horse_(band)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q951532\",\"titles\":{\"canonical\":\"Crazy_Horse_(band)\",\"normalized\":\"Crazy Horse (band)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Crazy_Horse_1972.JPG/320px-Crazy_Horse_1972.JPG\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/25/Crazy_Horse_1972.JPG\",\"width\":690,\"height\":494},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224623844\",\"tid\":\"d4dfc0ee-15e2-11ef-a449-aa0520b3bb8a\",\"timestamp\":\"2024-05-19T13:22:25Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crazy_Horse_(band)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"}},\"extract\":\"Crazy Horse is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by Neil Young and Crazy Horse. They have also released six studio albums of their own between 1971 and 2009.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrazy Horse\u003c/b\u003e is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by \u003cb\u003eNeil Young and Crazy Horse\u003c/b\u003e. They have also released six studio albums of their own between 1971 and 2009.\u003c/p\u003e\",\"normalizedtitle\":\"Crazy Horse (band)\"},{\"pageid\":975260,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Mirror_Ball_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1170703\",\"titles\":{\"canonical\":\"Mirror_Ball_(Neil_Young_album)\",\"normalized\":\"Mirror Ball (Neil Young album)\",\"display\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222829752\",\"tid\":\"728bef86-0cf7-11ef-9d28-9320ba5a176e\",\"timestamp\":\"2024-05-08T04:57:19Z\",\"description\":\"1995 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mirror_Ball_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"}},\"extract\":\"Mirror Ball is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMirror Ball\u003c/b\u003e\u003c/i\u003e is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\u003c/p\u003e\",\"normalizedtitle\":\"Mirror Ball (Neil Young album)\"},{\"pageid\":1967652,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Down_by_the_River_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2805621\",\"titles\":{\"canonical\":\"Down_by_the_River_(Neil_Young_song)\",\"normalized\":\"Down by the River (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219174168\",\"tid\":\"85f0ef88-fbb1-11ee-bbce-919ab690d8cf\",\"timestamp\":\"2024-04-16T05:23:57Z\",\"description\":\"1969 single by Neil Young and Crazy Horse\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Down_by_the_River_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"}},\"extract\":\"\\\"Down by the River\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, Everybody Knows This Is Nowhere. Young explained the context of the story in the liner notes of his 1977 anthology album Decade, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eDown by the River\u003c/b\u003e\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e. Young explained the context of the story in the liner notes of his 1977 anthology album \u003ci\u003eDecade\u003c/i\u003e, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\u003c/p\u003e\",\"normalizedtitle\":\"Down by the River (Neil Young song)\"},{\"pageid\":5068852,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Pearl_Jam\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q142701\",\"titles\":{\"canonical\":\"Pearl_Jam\",\"normalized\":\"Pearl Jam\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg/320px-PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":3114,\"height\":2076},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223863933\",\"tid\":\"2a0e8244-1233-11ef-9615-f43fade6bf7f\",\"timestamp\":\"2024-05-14T20:47:23Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam\"}},\"extract\":\"Pearl Jam is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePearl Jam\u003c/b\u003e is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam\"},{\"pageid\":8915407,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Tell_Me_Why_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17059364\",\"titles\":{\"canonical\":\"Tell_Me_Why_(Neil_Young_song)\",\"normalized\":\"Tell Me Why (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181941151\",\"tid\":\"6c19d581-73b4-11ee-9131-c8bdca7b1c02\",\"timestamp\":\"2023-10-26T04:02:04Z\",\"description\":\"1970 song by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tell_Me_Why_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"}},\"extract\":\"\\\"Tell Me Why\\\" is the opening track on Neil Young's album After the Gold Rush. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on Live at Massey Hall 1971.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eTell Me Why\u003c/b\u003e\\\" is the opening track on Neil Young's album \u003ci\u003eAfter the Gold Rush\u003c/i\u003e. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on \u003ci\u003eLive at Massey Hall 1971\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Tell Me Why (Neil Young song)\"},{\"pageid\":9555565,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Nothingman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2059259\",\"titles\":{\"canonical\":\"Nothingman\",\"normalized\":\"Nothingman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224593469\",\"tid\":\"be714539-15b9-11ef-af74-c31c85bbb1c9\",\"timestamp\":\"2024-05-19T08:28:18Z\",\"description\":\"Song by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.wikipedia.org/wiki/Nothingman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nothingman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nothingman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nothingman\"}},\"extract\":\"\\\"Nothingman\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, Vitalogy (1994). The song was included on Pearl Jam's 2004 greatest hits album, Rearviewmirror .\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eNothingman\u003c/b\u003e\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, \u003ci\u003eVitalogy\u003c/i\u003e (1994). The song was included on Pearl Jam's 2004 greatest hits album, \u003ci\u003eRearviewmirror \u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Nothingman\"},{\"pageid\":9606473,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Pearl_Jam_2006_World_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3898477\",\"titles\":{\"canonical\":\"Pearl_Jam_2006_World_Tour\",\"normalized\":\"Pearl Jam 2006 World Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1195688835\",\"tid\":\"ebba9f0f-b328-11ee-b05c-cd2438af9ffe\",\"timestamp\":\"2024-01-14T22:04:43Z\",\"description\":\"2006 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam_2006_World_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"}},\"extract\":\"The Pearl Jam 2006 World Tour was a concert tour by the American rock band Pearl Jam to support its eighth album, Pearl Jam.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePearl Jam 2006 World Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its eighth album, \u003ci\u003ePearl Jam\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam 2006 World Tour\"},{\"pageid\":10586277,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Cellairis_Amphitheatre\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4661762\",\"titles\":{\"canonical\":\"Cellairis_Amphitheatre\",\"normalized\":\"Cellairis Amphitheatre\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Lakewood_Amphitheater.jpg\",\"width\":2891,\"height\":2168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218871608\",\"tid\":\"0b0cc18d-fa49-11ee-a0b9-1a11a33c1c47\",\"timestamp\":\"2024-04-14T10:23:32Z\",\"coordinates\":{\"lat\":33.704184,\"lon\":-84.396018},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cellairis_Amphitheatre\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"}},\"extract\":\"The Cellairis Amphitheatre at Lakewood, originally Coca-Cola Lakewood Amphitheatre, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCellairis Amphitheatre at Lakewood\u003c/b\u003e, originally \u003cb\u003eCoca-Cola Lakewood Amphitheatre\u003c/b\u003e, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\u003c/p\u003e\",\"normalizedtitle\":\"Cellairis Amphitheatre\"},{\"pageid\":11928268,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Merkin_Ball\",\"displaytitle\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715145\",\"titles\":{\"canonical\":\"Merkin_Ball\",\"normalized\":\"Merkin Ball\",\"display\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220834314\",\"tid\":\"dfff5820-0390-11ef-8cac-3a49f4ffb9fa\",\"timestamp\":\"2024-04-26T05:50:24Z\",\"description\":\"Two-song single by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Merkin_Ball\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Merkin_Ball\",\"edit\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Merkin_Ball\"}},\"extract\":\"Merkin Ball is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"I Got Id\\\" and B-side \\\"Long Road\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. Merkin Ball is a companion to Young's 1995 album, Mirror Ball.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMerkin Ball\u003c/b\u003e\u003c/i\u003e is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"\u003cb\u003eI Got Id\u003c/b\u003e\\\" and B-side \\\"\u003cb\u003eLong Road\u003c/b\u003e\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. \u003ci\u003eMerkin Ball\u003c/i\u003e is a companion to Young's 1995 album, \u003ci\u003eMirror Ball\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Merkin Ball\"},{\"pageid\":13465621,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"The_Bridge_School_Collection,_Vol.1\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7720076\",\"titles\":{\"canonical\":\"The_Bridge_School_Collection,_Vol.1\",\"normalized\":\"The Bridge School Collection, Vol.1\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1072766458\",\"tid\":\"b030e05d-9170-11ec-8192-f2b727bb3a94\",\"timestamp\":\"2022-02-19T10:42:52Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Bridge_School_Collection%2C_Vol.1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"}},\"extract\":\"\\nThe Bridge School Collection, Vol. 1 is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\",\"extract_html\":\"\u003cp\u003e\\n\u003cb\u003eThe Bridge School Collection, Vol. 1\u003c/b\u003e is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\u003c/p\u003e\",\"normalizedtitle\":\"The Bridge School Collection, Vol.1\"},{\"pageid\":22192163,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Greg_Reeves\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5606182\",\"titles\":{\"canonical\":\"Greg_Reeves\",\"normalized\":\"Greg Reeves\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214757274\",\"tid\":\"3800cf75-e714-11ee-b0a9-fa191fd9ae1d\",\"timestamp\":\"2024-03-20T23:47:32Z\",\"description\":\"American bass guitarist\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greg_Reeves\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greg_Reeves\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greg_Reeves\"}},\"extract\":\"Gregory Allen Reeves is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026 Young's album Déjà Vu (1970).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGregory Allen Reeves\u003c/b\u003e is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026amp; Young's album \u003ci\u003eDéjà Vu\u003c/i\u003e (1970).\u003c/p\u003e\",\"normalizedtitle\":\"Greg Reeves\"},{\"pageid\":39141153,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Bridge_School_(California)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q913634\",\"titles\":{\"canonical\":\"Bridge_School_(California)\",\"normalized\":\"Bridge School (California)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217621913\",\"tid\":\"fdae663d-f465-11ee-aa57-bab9df0aa6e0\",\"timestamp\":\"2024-04-06T22:35:38Z\",\"description\":\"Nonprofit organization\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.568463,\"lon\":-122.362591},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_(California)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_(California)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_(California)\"}},\"extract\":\"The Bridge School is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBridge School\u003c/b\u003e is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\u003c/p\u003e\",\"normalizedtitle\":\"Bridge School (California)\"},{\"pageid\":39904253,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Lightning_Bolt_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16962618\",\"titles\":{\"canonical\":\"Lightning_Bolt_Tour\",\"normalized\":\"Lightning Bolt Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1204346649\",\"tid\":\"5dad8227-c549-11ee-9158-b97a1ad189be\",\"timestamp\":\"2024-02-06T23:42:19Z\",\"description\":\"2013–14 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lightning_Bolt_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"}},\"extract\":\"The Lightning Bolt Tour was a concert tour by the American rock band Pearl Jam to support its tenth studio album, Lightning Bolt (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. Rolling Stone listed the tour as one of the 19 hottest tours to see in the fall of 2013.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLightning Bolt Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its tenth studio album, \u003ci\u003eLightning Bolt\u003c/i\u003e (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. \u003ci\u003eRolling Stone\u003c/i\u003e listed the tour as one of the 19 hottest tours to see in the fall of 2013.\u003c/p\u003e\",\"normalizedtitle\":\"Lightning Bolt Tour\"},{\"pageid\":65358151,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"displaytitle\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q100724901\",\"titles\":{\"canonical\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"normalized\":\"Neil Young Archives Volume II: 1972–1976\",\"display\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215229642\",\"tid\":\"404d512d-e960-11ee-9039-3c333c642a54\",\"timestamp\":\"2024-03-23T21:56:50Z\",\"description\":\"2020 box set by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"}},\"extract\":\"Neil Young Archives Volume II: 1972–1976 is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's The Archives Vol. 1 1963–1972, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eNeil Young Archives Volume II: 1972–1976\u003c/b\u003e\u003c/i\u003e is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's \u003ci\u003eThe Archives Vol. 1 1963–1972\u003c/i\u003e, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young Archives Volume II: 1972–1976\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec3d7c0-87fa-4edb-8b4c-ede9730b8dc4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407467,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1422","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7a8a9bc-6bcb-4042-8f21-b3cc1b801615","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.28400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fe898ce6-38f6-4715-b931-0ce3d4ae5f86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":413349,"utime":1128,"cutime":0,"cstime":0,"stime":1019,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"068c8201-2007-4c74-b6f3-912fac58ebbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.56800000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":405095,"end_time":405387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:52 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-9d7r2","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a30d6b-3246-4356-8652-211fad9b59b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"18f9d911-647c-49a7-a55d-a40466b8b460","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.63100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404803,"end_time":405449,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/3a9007c0-151c-11ef-b8e3-c8d506762f01\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1abe3620-2277-4655-b42a-9a3a283f76ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1df5b41d-c663-4833-b50f-29d771ddd065","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f52bd18-b905-4b47-84c0-d23730de3396","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407925,"end_time":408270,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"382","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3299f699-cc72-4d38-b718-b9d4cd8522a7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b332fed-35c9-4ae8-a246-9d0fb7039ae1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"776","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"411897ce-8a40-4c19-be7e-f118103a3b1d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.60700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51367f8a-2763-490a-bb26-19569b7ec3ce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":405462,"end_time":405465,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52e344a6-4f1b-40ba-ab2e-df359b7c8bb7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.12900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":304,"start_time":404710,"end_time":404948,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"123c8-18d7e9bad57\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"123c8-18d7e9bad57\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64a44103-12b2-4e49-b678-43f1fd63616d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":407349,"utime":1095,"cutime":0,"cstime":0,"stime":975,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69645315-9b61-4677-bafa-c77f77f39438","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a9a9787-d045-4b1c-8c0a-f4f126770e9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":405463,"end_time":405470,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77b61ef9-dd64-45a8-a08c-31b33ea85c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77c5761c-7ef8-4075-b69d-33cbbd972759","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":405466,"end_time":405473,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e7d1421-2884-4933-ae34-2a311eae94d1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19995,"java_free_heap":6096,"total_pss":187624,"rss":266104,"native_total_heap":125440,"native_free_heap":16078,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80abc601-6a8c-49b4-ba7c-6c991187ea16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.11500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/1280px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405628,"end_time":405934,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"181624","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:53 GMT","etag":"064f6c82433ef52f4e8b7e9b155fc79f","last-modified":"Sat, 27 Feb 2016 04:11:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qnwnnp5rha3oakobj2khjuxqblz4hyc"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84d253cf-ee49-48d5-b7d5-6e8c1187dbe8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404684,"end_time":404960,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1093","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8809aea3-406e-48f7-ad56-82ad6c9265a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"889971c8-b30a-4d16-9910-a98488ba9ee1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407924,"end_time":408271,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"719","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fb2ec4b-c2f3-41bb-ad3a-7a53f62e306e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:57.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":410347,"utime":1127,"cutime":0,"cstime":0,"stime":1012,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"905ec879-0b00-486d-bc8d-1c9bc89fab21","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"91fed9d8-4353-4c4e-9d60-0fe139075f4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.82300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":405638,"end_time":405642,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b8bad5c-cdc6-4515-9a23-c2c7dc119942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2fcf45f-68f6-4ef7-bc72-bbc436919679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.31500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":75.97046,"y":1610.918,"touch_down_time":409061,"touch_up_time":409130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7f64d11-bc63-4644-89de-c7c23c302f80","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.23700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404800,"end_time":405056,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/21a9d2e0-151c-11ef-a477-3a620a7dd899\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bridge School Benefit\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1090897\",\"titles\":{\"canonical\":\"Bridge_School_Benefit\",\"normalized\":\"Bridge School Benefit\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\"},\"pageid\":2169786,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg\",\"width\":320,\"height\":223},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/48/Shoreline_Amphitheatre.jpg\",\"width\":1368,\"height\":954},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211634642\",\"tid\":\"9ab739c3-d97a-11ee-8b93-5143dbf0a773\",\"timestamp\":\"2024-03-03T16:25:10Z\",\"description\":\"Charity concerts in California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.42666667,\"lon\":-122.08083333},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_Benefit\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"}},\"extract\":\"\\nThe Bridge School Benefit was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\",\"extract_html\":\"\u003cp\u003e\\nThe \u003cb\u003eBridge School Benefit\u003c/b\u003e was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"add18888-aa81-4eb8-a156-95e015603b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.89500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae08afa3-fa48-465f-a226-70f7bc1ddf4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b55f9252-dec8-4d11-b741-0a6e6f5a2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:58.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4402,"total_pss":157469,"rss":226016,"native_total_heap":109056,"native_free_heap":28907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7034817-ffda-4c89-baf7-f0bd9adbee97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20090,"java_free_heap":4487,"total_pss":173086,"rss":252736,"native_total_heap":125440,"native_free_heap":14291,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba0a2772-1879-4387-9d8f-58e29f24c6f2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.36100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":42.978516,"y":149.9414,"touch_down_time":407065,"touch_up_time":407177},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be144dcf-284c-41fb-a58d-632709c7646d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.00700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg","method":"get","status_code":200,"start_time":406780,"end_time":406826,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12911","content-length":"91849","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:27:44 GMT","etag":"acf48a134be1177e8ead7708e943023c","last-modified":"Fri, 04 Mar 2016 11:14:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"1mex37ctmfjotjempm05btcux9qn6ij"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c117bd61-90b1-4998-b182-659a857df241","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4474,"total_pss":160242,"rss":228808,"native_total_heap":109056,"native_free_heap":28883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c1808fa7-30ed-4eb7-8d9b-a647042d8207","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc004c5d-9d37-4019-97f1-9a1198c19bcb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.92900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/640px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405099,"end_time":405748,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"57970","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"1cd1b08c3fb56106a3d85abf7cbc51ed","last-modified":"Sat, 27 Feb 2016 04:12:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"g7x68wml5tl65yrgehmhinh8oov2m5j"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf372d6-f057-47a8-9e48-4b25cfaba829","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf8ce554-5bf4-4ab8-987a-7c59b95bea2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d191a3ea-e3fb-4243-9f9e-f741c22dcebe","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.21700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg","method":"get","status_code":200,"start_time":406781,"end_time":407036,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"32194","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:54 GMT","etag":"d70781fa5198476a7f1f0de3ed48f27a","last-modified":"Fri, 07 Jul 2017 22:10:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2dd7b1f-a0b9-4ce2-a943-47eee9abb399","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"backButton","width":126,"height":126,"x":42.978516,"y":149.9414,"touch_down_time":407819,"touch_up_time":407920},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d926155b-500b-4680-bd8c-488c48e43de6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407459,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"daa9f7d2-3021-4b9c-8b98-acc8e063b3fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"debbf582-e1b8-4fba-8cd6-4553dec8189d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e413d9d7-62d5-4f16-8a8e-946882e4d8c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5f59302-cdd5-4e92-9d18-4d2ae0a27f7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":405462,"end_time":405468,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e87a21a8-ac20-479f-bb90-dbeb12997cb0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404686,"end_time":404962,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1147","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb35a22b-709c-4dde-af91-1b41c9b071dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.93400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","method":"get","status_code":200,"start_time":405662,"end_time":406753,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:53 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2032","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"7z336l541cbo66002xhogwuo9","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":8228,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"Decade_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1181697\",\"titles\":{\"canonical\":\"Decade_(Neil_Young_album)\",\"normalized\":\"Decade (Neil Young album)\",\"display\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216315995\",\"tid\":\"9861d724-ee7b-11ee-aa1f-c0acd4f5457d\",\"timestamp\":\"2024-03-30T09:55:10Z\",\"description\":\"1977 compilation album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Decade_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"}},\"extract\":\"Decade is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the Billboard Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eDecade\u003c/b\u003e\u003c/i\u003e is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the \u003ci\u003eBillboard\u003c/i\u003e Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\u003c/p\u003e\",\"normalizedtitle\":\"Decade (Neil Young album)\"},{\"pageid\":87985,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Neil_Young\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q633\",\"titles\":{\"canonical\":\"Neil_Young\",\"normalized\":\"Neil Young\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg/320px-DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":320,\"height\":473},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":1470,\"height\":2175},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224521209\",\"tid\":\"ecc3360e-1561-11ef-9ad4-25d57eeca119\",\"timestamp\":\"2024-05-18T21:59:40Z\",\"description\":\"Canadian and American musician (born 1945)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young\"}},\"extract\":\"Neil Percival Young is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as Everybody Knows This Is Nowhere (1969), After the Gold Rush (1970), Harvest (1972), On the Beach (1974), and Rust Never Sleeps (1979). He was also a part-time member of Crosby, Stills, Nash \u0026 Young, with whom he recorded the chart-topping 1970 album Déjà Vu.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNeil Percival Young\u003c/b\u003e is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e (1969), \u003ci\u003eAfter the Gold Rush\u003c/i\u003e (1970), \u003ci\u003eHarvest\u003c/i\u003e (1972), \u003ci\u003eOn the Beach\u003c/i\u003e (1974), and \u003ci\u003eRust Never Sleeps\u003c/i\u003e (1979). He was also a part-time member of Crosby, Stills, Nash \u0026amp; Young, with whom he recorded the chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young\"},{\"pageid\":154247,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Eddie_Vedder\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q221535\",\"titles\":{\"canonical\":\"Eddie_Vedder\",\"normalized\":\"Eddie Vedder\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Eddie_Vedder_2018_-2.jpg/320px-Eddie_Vedder_2018_-2.jpg\",\"width\":320,\"height\":439},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Eddie_Vedder_2018_-2.jpg\",\"width\":1201,\"height\":1647},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222464208\",\"tid\":\"a41983c0-0b56-11ef-8d40-256ceee6af43\",\"timestamp\":\"2024-05-06T03:13:42Z\",\"description\":\"American singer (born 1964)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Eddie_Vedder\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Eddie_Vedder\",\"edit\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Eddie_Vedder\"}},\"extract\":\"Eddie Jerome Vedder is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEddie Jerome Vedder\u003c/b\u003e is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\u003c/p\u003e\",\"normalizedtitle\":\"Eddie Vedder\"},{\"pageid\":176416,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Nils_Lofgren\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q504954\",\"titles\":{\"canonical\":\"Nils_Lofgren\",\"normalized\":\"Nils Lofgren\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Nils_Lofgren_%2846480129234%29.jpg/320px-Nils_Lofgren_%2846480129234%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d0/Nils_Lofgren_%2846480129234%29.jpg\",\"width\":5306,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224444957\",\"tid\":\"3424cf8d-1518-11ef-b3eb-3c90a4531d0d\",\"timestamp\":\"2024-05-18T13:11:57Z\",\"description\":\"American rock musician (born 1951)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nils_Lofgren\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nils_Lofgren\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nils_Lofgren\"}},\"extract\":\"Nils Hilmer Lofgren is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNils Hilmer Lofgren\u003c/b\u003e is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Nils Lofgren\"},{\"pageid\":568849,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"America:_A_Tribute_to_Heroes\",\"displaytitle\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2273648\",\"titles\":{\"canonical\":\"America:_A_Tribute_to_Heroes\",\"normalized\":\"America: A Tribute to Heroes\",\"display\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218642805\",\"tid\":\"ad7c4579-f91e-11ee-b494-eaa15dc47b98\",\"timestamp\":\"2024-04-12T22:47:45Z\",\"description\":\"Benefit concert that raised money for victims of 9/11 attacks\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/America%3A_A_Tribute_to_Heroes\",\"edit\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"}},\"extract\":\"America: A Tribute to Heroes was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAmerica: A Tribute to Heroes\u003c/b\u003e\u003c/i\u003e was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\u003c/p\u003e\",\"normalizedtitle\":\"America: A Tribute to Heroes\"},{\"pageid\":723447,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"After_the_Gold_Rush\",\"displaytitle\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q264397\",\"titles\":{\"canonical\":\"After_the_Gold_Rush\",\"normalized\":\"After the Gold Rush\",\"display\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221220336\",\"tid\":\"9c6840a4-057a-11ef-80ac-d6c92c55f57f\",\"timestamp\":\"2024-04-28T16:16:04Z\",\"description\":\"1970 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/After_the_Gold_Rush\",\"edit\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"}},\"extract\":\"After the Gold Rush is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026 Young in the wake of their chart-topping 1970 album Déjà Vu. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay After the Gold Rush.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAfter the Gold Rush\u003c/b\u003e\u003c/i\u003e is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026amp; Young in the wake of their chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay \u003ci\u003eAfter the Gold Rush\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"After the Gold Rush\"},{\"pageid\":723456,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Crazy_Horse_(band)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q951532\",\"titles\":{\"canonical\":\"Crazy_Horse_(band)\",\"normalized\":\"Crazy Horse (band)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Crazy_Horse_1972.JPG/320px-Crazy_Horse_1972.JPG\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/25/Crazy_Horse_1972.JPG\",\"width\":690,\"height\":494},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224623844\",\"tid\":\"d4dfc0ee-15e2-11ef-a449-aa0520b3bb8a\",\"timestamp\":\"2024-05-19T13:22:25Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crazy_Horse_(band)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"}},\"extract\":\"Crazy Horse is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by Neil Young and Crazy Horse. They have also released six studio albums of their own between 1971 and 2009.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrazy Horse\u003c/b\u003e is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by \u003cb\u003eNeil Young and Crazy Horse\u003c/b\u003e. They have also released six studio albums of their own between 1971 and 2009.\u003c/p\u003e\",\"normalizedtitle\":\"Crazy Horse (band)\"},{\"pageid\":975260,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Mirror_Ball_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1170703\",\"titles\":{\"canonical\":\"Mirror_Ball_(Neil_Young_album)\",\"normalized\":\"Mirror Ball (Neil Young album)\",\"display\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222829752\",\"tid\":\"728bef86-0cf7-11ef-9d28-9320ba5a176e\",\"timestamp\":\"2024-05-08T04:57:19Z\",\"description\":\"1995 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mirror_Ball_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"}},\"extract\":\"Mirror Ball is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMirror Ball\u003c/b\u003e\u003c/i\u003e is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\u003c/p\u003e\",\"normalizedtitle\":\"Mirror Ball (Neil Young album)\"},{\"pageid\":1967652,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Down_by_the_River_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2805621\",\"titles\":{\"canonical\":\"Down_by_the_River_(Neil_Young_song)\",\"normalized\":\"Down by the River (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219174168\",\"tid\":\"85f0ef88-fbb1-11ee-bbce-919ab690d8cf\",\"timestamp\":\"2024-04-16T05:23:57Z\",\"description\":\"1969 single by Neil Young and Crazy Horse\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Down_by_the_River_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"}},\"extract\":\"\\\"Down by the River\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, Everybody Knows This Is Nowhere. Young explained the context of the story in the liner notes of his 1977 anthology album Decade, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eDown by the River\u003c/b\u003e\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e. Young explained the context of the story in the liner notes of his 1977 anthology album \u003ci\u003eDecade\u003c/i\u003e, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\u003c/p\u003e\",\"normalizedtitle\":\"Down by the River (Neil Young song)\"},{\"pageid\":5068852,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Pearl_Jam\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q142701\",\"titles\":{\"canonical\":\"Pearl_Jam\",\"normalized\":\"Pearl Jam\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg/320px-PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":3114,\"height\":2076},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223863933\",\"tid\":\"2a0e8244-1233-11ef-9615-f43fade6bf7f\",\"timestamp\":\"2024-05-14T20:47:23Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam\"}},\"extract\":\"Pearl Jam is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePearl Jam\u003c/b\u003e is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam\"},{\"pageid\":8915407,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Tell_Me_Why_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17059364\",\"titles\":{\"canonical\":\"Tell_Me_Why_(Neil_Young_song)\",\"normalized\":\"Tell Me Why (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181941151\",\"tid\":\"6c19d581-73b4-11ee-9131-c8bdca7b1c02\",\"timestamp\":\"2023-10-26T04:02:04Z\",\"description\":\"1970 song by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tell_Me_Why_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"}},\"extract\":\"\\\"Tell Me Why\\\" is the opening track on Neil Young's album After the Gold Rush. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on Live at Massey Hall 1971.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eTell Me Why\u003c/b\u003e\\\" is the opening track on Neil Young's album \u003ci\u003eAfter the Gold Rush\u003c/i\u003e. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on \u003ci\u003eLive at Massey Hall 1971\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Tell Me Why (Neil Young song)\"},{\"pageid\":9555565,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Nothingman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2059259\",\"titles\":{\"canonical\":\"Nothingman\",\"normalized\":\"Nothingman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224593469\",\"tid\":\"be714539-15b9-11ef-af74-c31c85bbb1c9\",\"timestamp\":\"2024-05-19T08:28:18Z\",\"description\":\"Song by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.wikipedia.org/wiki/Nothingman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nothingman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nothingman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nothingman\"}},\"extract\":\"\\\"Nothingman\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, Vitalogy (1994). The song was included on Pearl Jam's 2004 greatest hits album, Rearviewmirror .\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eNothingman\u003c/b\u003e\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, \u003ci\u003eVitalogy\u003c/i\u003e (1994). The song was included on Pearl Jam's 2004 greatest hits album, \u003ci\u003eRearviewmirror \u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Nothingman\"},{\"pageid\":9606473,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Pearl_Jam_2006_World_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3898477\",\"titles\":{\"canonical\":\"Pearl_Jam_2006_World_Tour\",\"normalized\":\"Pearl Jam 2006 World Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1195688835\",\"tid\":\"ebba9f0f-b328-11ee-b05c-cd2438af9ffe\",\"timestamp\":\"2024-01-14T22:04:43Z\",\"description\":\"2006 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam_2006_World_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"}},\"extract\":\"The Pearl Jam 2006 World Tour was a concert tour by the American rock band Pearl Jam to support its eighth album, Pearl Jam.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePearl Jam 2006 World Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its eighth album, \u003ci\u003ePearl Jam\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam 2006 World Tour\"},{\"pageid\":10586277,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Cellairis_Amphitheatre\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4661762\",\"titles\":{\"canonical\":\"Cellairis_Amphitheatre\",\"normalized\":\"Cellairis Amphitheatre\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Lakewood_Amphitheater.jpg\",\"width\":2891,\"height\":2168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218871608\",\"tid\":\"0b0cc18d-fa49-11ee-a0b9-1a11a33c1c47\",\"timestamp\":\"2024-04-14T10:23:32Z\",\"coordinates\":{\"lat\":33.704184,\"lon\":-84.396018},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cellairis_Amphitheatre\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"}},\"extract\":\"The Cellairis Amphitheatre at Lakewood, originally Coca-Cola Lakewood Amphitheatre, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCellairis Amphitheatre at Lakewood\u003c/b\u003e, originally \u003cb\u003eCoca-Cola Lakewood Amphitheatre\u003c/b\u003e, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\u003c/p\u003e\",\"normalizedtitle\":\"Cellairis Amphitheatre\"},{\"pageid\":11928268,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Merkin_Ball\",\"displaytitle\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715145\",\"titles\":{\"canonical\":\"Merkin_Ball\",\"normalized\":\"Merkin Ball\",\"display\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220834314\",\"tid\":\"dfff5820-0390-11ef-8cac-3a49f4ffb9fa\",\"timestamp\":\"2024-04-26T05:50:24Z\",\"description\":\"Two-song single by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Merkin_Ball\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Merkin_Ball\",\"edit\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Merkin_Ball\"}},\"extract\":\"Merkin Ball is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"I Got Id\\\" and B-side \\\"Long Road\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. Merkin Ball is a companion to Young's 1995 album, Mirror Ball.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMerkin Ball\u003c/b\u003e\u003c/i\u003e is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"\u003cb\u003eI Got Id\u003c/b\u003e\\\" and B-side \\\"\u003cb\u003eLong Road\u003c/b\u003e\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. \u003ci\u003eMerkin Ball\u003c/i\u003e is a companion to Young's 1995 album, \u003ci\u003eMirror Ball\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Merkin Ball\"},{\"pageid\":13465621,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"The_Bridge_School_Collection,_Vol.1\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7720076\",\"titles\":{\"canonical\":\"The_Bridge_School_Collection,_Vol.1\",\"normalized\":\"The Bridge School Collection, Vol.1\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1072766458\",\"tid\":\"b030e05d-9170-11ec-8192-f2b727bb3a94\",\"timestamp\":\"2022-02-19T10:42:52Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Bridge_School_Collection%2C_Vol.1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"}},\"extract\":\"\\nThe Bridge School Collection, Vol. 1 is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\",\"extract_html\":\"\u003cp\u003e\\n\u003cb\u003eThe Bridge School Collection, Vol. 1\u003c/b\u003e is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\u003c/p\u003e\",\"normalizedtitle\":\"The Bridge School Collection, Vol.1\"},{\"pageid\":22192163,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Greg_Reeves\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5606182\",\"titles\":{\"canonical\":\"Greg_Reeves\",\"normalized\":\"Greg Reeves\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214757274\",\"tid\":\"3800cf75-e714-11ee-b0a9-fa191fd9ae1d\",\"timestamp\":\"2024-03-20T23:47:32Z\",\"description\":\"American bass guitarist\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greg_Reeves\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greg_Reeves\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greg_Reeves\"}},\"extract\":\"Gregory Allen Reeves is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026 Young's album Déjà Vu (1970).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGregory Allen Reeves\u003c/b\u003e is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026amp; Young's album \u003ci\u003eDéjà Vu\u003c/i\u003e (1970).\u003c/p\u003e\",\"normalizedtitle\":\"Greg Reeves\"},{\"pageid\":39141153,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Bridge_School_(California)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q913634\",\"titles\":{\"canonical\":\"Bridge_School_(California)\",\"normalized\":\"Bridge School (California)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217621913\",\"tid\":\"fdae663d-f465-11ee-aa57-bab9df0aa6e0\",\"timestamp\":\"2024-04-06T22:35:38Z\",\"description\":\"Nonprofit organization\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.568463,\"lon\":-122.362591},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_(California)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_(California)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_(California)\"}},\"extract\":\"The Bridge School is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBridge School\u003c/b\u003e is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\u003c/p\u003e\",\"normalizedtitle\":\"Bridge School (California)\"},{\"pageid\":39904253,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Lightning_Bolt_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16962618\",\"titles\":{\"canonical\":\"Lightning_Bolt_Tour\",\"normalized\":\"Lightning Bolt Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1204346649\",\"tid\":\"5dad8227-c549-11ee-9158-b97a1ad189be\",\"timestamp\":\"2024-02-06T23:42:19Z\",\"description\":\"2013–14 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lightning_Bolt_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"}},\"extract\":\"The Lightning Bolt Tour was a concert tour by the American rock band Pearl Jam to support its tenth studio album, Lightning Bolt (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. Rolling Stone listed the tour as one of the 19 hottest tours to see in the fall of 2013.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLightning Bolt Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its tenth studio album, \u003ci\u003eLightning Bolt\u003c/i\u003e (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. \u003ci\u003eRolling Stone\u003c/i\u003e listed the tour as one of the 19 hottest tours to see in the fall of 2013.\u003c/p\u003e\",\"normalizedtitle\":\"Lightning Bolt Tour\"},{\"pageid\":65358151,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"displaytitle\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q100724901\",\"titles\":{\"canonical\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"normalized\":\"Neil Young Archives Volume II: 1972–1976\",\"display\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215229642\",\"tid\":\"404d512d-e960-11ee-9039-3c333c642a54\",\"timestamp\":\"2024-03-23T21:56:50Z\",\"description\":\"2020 box set by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"}},\"extract\":\"Neil Young Archives Volume II: 1972–1976 is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's The Archives Vol. 1 1963–1972, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eNeil Young Archives Volume II: 1972–1976\u003c/b\u003e\u003c/i\u003e is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's \u003ci\u003eThe Archives Vol. 1 1963–1972\u003c/i\u003e, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young Archives Volume II: 1972–1976\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec3d7c0-87fa-4edb-8b4c-ede9730b8dc4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407467,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1422","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7a8a9bc-6bcb-4042-8f21-b3cc1b801615","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.28400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fe898ce6-38f6-4715-b931-0ce3d4ae5f86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":413349,"utime":1128,"cutime":0,"cstime":0,"stime":1019,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json index ba378bf0f..ebe543cb2 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json @@ -1 +1 @@ -[{"id":"04dd7429-6f24-41d0-a3d9-8254aa72f4ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":376972,"end_time":376975,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"063a3d8a-69a7-49d6-b866-340626956a67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"6942","content-disposition":"inline;filename*=UTF-8''Ezzatollah_Zarghami_13990110_0945265.jpg.webp","content-length":"33234","content-type":"image/webp","date":"Mon, 20 May 2024 07:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ezzatollah_Zarghami_13990110_0945265.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07dfd19d-03ab-4594-b83d-b1a3cc951c6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.23100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0c4bafe0-6521-42d9-8348-4d23fb6b9717","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.26500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":374072,"end_time":374084,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"109057","content-type":"multipart/form-data; boundary=6cb4ebac-4ad2-4790-b470-055b2914e31b","host":"10.0.2.2:8080","msr-req-id":"4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:21 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"104ecca5-b627-4a3a-9199-d2dd75cd68a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13c4e686-cabf-4a63-b022-aa83b541132f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.29700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":377110,"end_time":377115,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13ef7a6b-71fc-486b-b669-06ccc114dfc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"768","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1635cd98-e44d-4713-9860-92377a5a3651","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/54px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":377080,"end_time":377122,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"47787","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"244","content-type":"image/webp","date":"Sun, 19 May 2024 19:45:56 GMT","etag":"ddb40392973bbe7d974594e86b5c3e68","last-modified":"Thu, 04 Jan 2024 04:23:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/4153","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19d25f09-5244-4150-aff1-1703866273dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/22px-Increase2.svg.png","method":"get","status_code":200,"start_time":377029,"end_time":377076,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69644","content-disposition":"inline;filename*=UTF-8''Increase2.svg.webp","content-length":"130","content-type":"image/webp","date":"Sun, 19 May 2024 13:41:40 GMT","etag":"fcd13adac307811a280aa8a63141d86e","last-modified":"Wed, 31 Jan 2024 10:36:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/62164","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b1e100-f09c-44b2-b181-28d642516a9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11116","content-disposition":"inline;filename*=UTF-8''Hassan_Rouhani_2020.jpg.webp","content-length":"18298","content-type":"image/webp","date":"Mon, 20 May 2024 05:57:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Hassan_Rouhani_2020.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"54102fdb-bfe3-43c7-95d0-4ff1a3bc42ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.54500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":375011,"end_time":375364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587fec75-96c5-46f3-9500-507a7178ca02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.41900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.SwipeableListView","target_id":"toc_list","width":788,"height":1731,"x":743.9502,"y":919.9219,"touch_down_time":379113,"touch_up_time":379232},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bfefbf6-0efc-4238-b63f-af8f8b0c6684","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":377041,"end_time":377086,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53894","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1120","content-type":"image/webp","date":"Sun, 19 May 2024 18:04:09 GMT","etag":"7858cff15aea7c5998f65b5e30f474f7","last-modified":"Sat, 16 Mar 2024 06:21:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6196","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f7df590-60dc-44e1-b20d-53abc7bc3be7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.06200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5fa514dc-0b4c-4f5c-a415-d6e2a32bc41a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.02900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"menu_tabs","width":126,"height":147,"x":990.9448,"y":196.99219,"touch_down_time":371776,"touch_up_time":371846},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60721cb6-c137-4841-861c-f4cd12991464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":375976,"utime":650,"cutime":0,"cstime":0,"stime":654,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75813bc6-16a1-449f-a86d-3a5649bcc9b8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0b8806-7e5a-4983-99df-ac37ccd3fc17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/440px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":376994,"end_time":377077,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9476","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg.webp","content-length":"59556","content-type":"image/webp","date":"Mon, 20 May 2024 06:24:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/4281","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e3b4f72-ec02-4ab4-b6f6-b3e484ebebf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":376994,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70630","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.webp","content-length":"2930","content-type":"image/webp","date":"Sun, 19 May 2024 13:25:13 GMT","etag":"94831aec963f5737c3fce1ef362eb359","last-modified":"Sun, 19 May 2024 13:24:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/19161","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f277fb4-8b16-4b49-add4-c7b74dff0da1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Ambox_current_red.svg/99px-Ambox_current_red.svg.png","method":"get","status_code":200,"start_time":376985,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"24735","content-disposition":"inline;filename*=UTF-8''Ambox_current_red.svg.webp","content-length":"7940","content-type":"image/webp","date":"Mon, 20 May 2024 02:10:09 GMT","etag":"2fdc01fc3a415f51d6284bc9a43bc295","last-modified":"Tue, 23 May 2023 08:08:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/540","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7fb9a563-bc68-49fe-9164-b9d99b8d10b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.54000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":379293,"end_time":379359,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"4897","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg.webp","content-length":"178556","content-type":"image/webp","date":"Mon, 20 May 2024 07:40:49 GMT","etag":"bf327d5124c258158127165fb9e293ab","last-modified":"Mon, 20 May 2024 07:30:01 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/58","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"868dd320-6d08-42dd-bf03-92bed5828411","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.15900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":378978,"utime":750,"cutime":0,"cstime":0,"stime":707,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d4e8a-d735-4eaa-a1b9-37013414ce52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20820,"java_free_heap":5471,"total_pss":164790,"rss":240452,"native_total_heap":101888,"native_free_heap":11351,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ec22384-d4f3-4220-b51e-ba8e1f753273","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Decrease2.svg/22px-Decrease2.svg.png","method":"get","status_code":200,"start_time":377037,"end_time":377085,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"54203","content-disposition":"inline;filename*=UTF-8''Decrease2.svg.webp","content-length":"118","content-type":"image/webp","date":"Sun, 19 May 2024 17:59:00 GMT","etag":"6a32e49dbffd60773ebe06d4c5cef9e9","last-modified":"Wed, 31 Jan 2024 10:37:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/20209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"931dc21b-766d-4983-98d2-d8340f0439c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1473","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97c7763b-276c-4160-a6c6-2f68b45c6b72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.19000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b37ecef-3720-4de2-812c-b45ec1761a31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4e57f58-dad3-4c5f-b8ed-da3952522c35","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a54b0785-0c63-49aa-bfd3-0635d79ce3af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20339,"java_free_heap":5955,"total_pss":161703,"rss":244012,"native_total_heap":95744,"native_free_heap":12413,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab4488f4-d451-4bab-8994-0b47122b60a8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":376970,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae6df38a-2eb6-4379-9db1-3437e010839e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.75900000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":739.96216,"y":1180.957,"end_x":772.9541,"end_y":220.95703,"direction":"up","touch_down_time":378410,"touch_up_time":378577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b30515d2-62af-4e26-a5c2-345e544a5775","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.73100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bc5b4524-a2d5-4e0d-96ce-9e365800eca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.83700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_contents","width":216,"height":189,"x":1004.9524,"y":1705.8984,"touch_down_time":377573,"touch_up_time":377654},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be2df92c-f144-4430-9857-e964b041bac6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.04400000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":375350,"end_time":375863,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:23 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-7fwx4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-5","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3b73221-138c-4d49-ba10-cf41ec155621","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:20.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":372977,"utime":576,"cutime":0,"cstime":0,"stime":609,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c75d5c4d-cddf-4938-b291-a92df2502559","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":21496,"java_free_heap":6128,"total_pss":165822,"rss":241200,"native_total_heap":101888,"native_free_heap":10790,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d09136cf-fd3e-4307-aec8-d54d8b43b33b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d22f8eb4-663e-4ce9-a4ff-a57f0649779e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":376977,"end_time":376978,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d52f85d5-64c8-4f57-bdeb-c3c28c299e37","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":376973,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5b3ed54-9d07-4932-84f6-0c2c0744e670","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.32900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":370845,"end_time":371148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d697ae8e-7086-4a6e-b8ba-7c7d308ffe67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d72821bf-6395-441f-9e35-acdcd5be8e70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.58500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_(19.05.2024)_(cropped).jpg/640px-Ebrahim_Raisi_(19.05.2024)_(cropped).jpg","method":"get","status_code":200,"start_time":375355,"end_time":375404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9401","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"106208","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/245","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8c37eab-d4de-42f1-bd71-3194eb7803a9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df44560b-c1c4-45e4-a02d-dcf6c1853c23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.32800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg","method":"get","status_code":200,"start_time":378095,"end_time":378147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"59304","content-disposition":"inline;filename*=UTF-8''Hossein_Dehghan_3742862.jpg","content-length":"28523","content-type":"image/jpeg","date":"Sun, 19 May 2024 16:34:01 GMT","etag":"d3fdbd4a484beec98231d58928e7b68a","last-modified":"Sat, 24 Apr 2021 16:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/82","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e540c90e-8af1-4dfa-9f95-89aaefa80b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20397,"java_free_heap":5948,"total_pss":160547,"rss":247084,"native_total_heap":95744,"native_free_heap":11880,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5ace9ab-746b-472f-976c-0036f9dbcdb2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.26600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","method":"get","status_code":200,"start_time":377126,"end_time":378084,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"4mpgjwno2o04ka4hzflm3qi96","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":233913,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"pageid\":385653,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"pageid\":399536,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Akbar_Rafsanjanī\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q186111\",\"titles\":{\"canonical\":\"Akbar_Rafsanjanī\",\"normalized\":\"Akbar Rafsanjanī\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg/320px-Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":630,\"height\":891},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224676447\",\"tid\":\"d4aef906-1619-11ef-a8b4-adee7f3d440e\",\"timestamp\":\"2024-05-19T19:56:07Z\",\"description\":\"President of Iran from 1989 to 1997\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Akbar_Rafsanjan%C4%AB\",\"edit\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"}},\"extract\":\"Ali Akbar Hashimi Bahramani Rafsanjani was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAli Akbar Hashimi Bahramani Rafsanjani\u003c/b\u003e was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Akbar Rafsanjanī\"},{\"pageid\":1155426,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"List_of_presidents_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q742419\",\"titles\":{\"canonical\":\"List_of_presidents_of_Iran\",\"normalized\":\"List of presidents of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759041\",\"tid\":\"6737c3a2-1683-11ef-88e1-193e954a67d4\",\"timestamp\":\"2024-05-20T08:31:50Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_presidents_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"}},\"extract\":\"This is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\",\"extract_html\":\"\u003cp\u003eThis is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\u003c/p\u003e\",\"normalizedtitle\":\"List of presidents of Iran\"},{\"pageid\":2666136,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Bijan_Namdar_Zangeneh\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4907167\",\"titles\":{\"canonical\":\"Bijan_Namdar_Zangeneh\",\"normalized\":\"Bijan Namdar Zangeneh\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg/320px-Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":320,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":408,\"height\":506},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220831157\",\"tid\":\"42ee0721-038b-11ef-bf62-89eeffe2821a\",\"timestamp\":\"2024-04-26T05:10:13Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bijan_Namdar_Zangeneh\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"}},\"extract\":\"Bijan Namdar Zangeneh is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBijan Namdar Zangeneh\u003c/b\u003e is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\u003c/p\u003e\",\"normalizedtitle\":\"Bijan Namdar Zangeneh\"},{\"pageid\":2826589,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Combatant_Clergy_Association\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1817687\",\"titles\":{\"canonical\":\"Combatant_Clergy_Association\",\"normalized\":\"Combatant Clergy Association\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219028652\",\"tid\":\"c137ddda-fb09-11ee-800c-903c45641695\",\"timestamp\":\"2024-04-15T09:23:01Z\",\"description\":\"Political party in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Combatant_Clergy_Association\",\"edit\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"}},\"extract\":\"The Combatant Clergy Association is a politically active group in Iran, but not a political party in the traditional sense.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCombatant Clergy Association\u003c/b\u003e is a politically active group in Iran, but not a political party in the traditional sense.\u003c/p\u003e\",\"normalizedtitle\":\"Combatant Clergy Association\"},{\"pageid\":8898525,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Sadeq_Larijani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24682\",\"titles\":{\"canonical\":\"Sadeq_Larijani\",\"normalized\":\"Sadeq Larijani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg/320px-Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":320,\"height\":468},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":388,\"height\":567},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223124180\",\"tid\":\"31b5e548-0e6d-11ef-8f7b-9e92c2c01286\",\"timestamp\":\"2024-05-10T01:32:42Z\",\"description\":\"Iranian Ayatollah\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sadeq_Larijani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sadeq_Larijani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sadeq_Larijani\"}},\"extract\":\"Sadeq Ardeshir Larijani, better known as Amoli Larijani, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSadeq Ardeshir Larijani\u003c/b\u003e, better known as \u003cb\u003eAmoli Larijani\u003c/b\u003e, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\u003c/p\u003e\",\"normalizedtitle\":\"Sadeq Larijani\"},{\"pageid\":12653536,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Iran–Japan_relations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2915778\",\"titles\":{\"canonical\":\"Iran–Japan_relations\",\"normalized\":\"Iran–Japan relations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Iran_Japan_Locator.png/320px-Iran_Japan_Locator.png\",\"width\":320,\"height\":165},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/28/Iran_Japan_Locator.png\",\"width\":1376,\"height\":708},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219996780\",\"tid\":\"0727fd57-ff9f-11ee-8c81-65d4dcd950c9\",\"timestamp\":\"2024-04-21T05:21:38Z\",\"description\":\"Bilateral relations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran%E2%80%93Japan_relations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"}},\"extract\":\"Iran–Japan relations are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran–Japan relations\u003c/b\u003e are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\u003c/p\u003e\",\"normalizedtitle\":\"Iran–Japan relations\"},{\"pageid\":13824095,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Saeed_Jalili\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q635059\",\"titles\":{\"canonical\":\"Saeed_Jalili\",\"normalized\":\"Saeed Jalili\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Saeed_Jalili_13991023_1647093.jpg/320px-Saeed_Jalili_13991023_1647093.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/Saeed_Jalili_13991023_1647093.jpg\",\"width\":400,\"height\":592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224715732\",\"tid\":\"5d437df0-1646-11ef-8927-7adf553a94a9\",\"timestamp\":\"2024-05-20T01:14:54Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Saeed_Jalili\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Saeed_Jalili\",\"edit\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Saeed_Jalili\"}},\"extract\":\"Saeed Jalili is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSaeed Jalili\u003c/b\u003e is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Saeed Jalili\"},{\"pageid\":17446126,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Ezzatollah_Zarghami\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3736444\",\"titles\":{\"canonical\":\"Ezzatollah_Zarghami\",\"normalized\":\"Ezzatollah Zarghami\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":1667,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216932163\",\"tid\":\"df780acb-f12f-11ee-973b-9e630df41f7c\",\"timestamp\":\"2024-04-02T20:30:41Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ezzatollah_Zarghami\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"}},\"extract\":\"Sayyid Ezzatollah Zarghami is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSayyid Ezzatollah Zarghami\u003c/b\u003e is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Ezzatollah Zarghami\"},{\"pageid\":38481813,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Hassan_Rouhani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348144\",\"titles\":{\"canonical\":\"Hassan_Rouhani\",\"normalized\":\"Hassan Rouhani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg\",\"width\":320,\"height\":367},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Hassan_Rouhani_2020.jpg\",\"width\":564,\"height\":646},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221528860\",\"tid\":\"81224136-06f6-11ef-a215-71f3c609cc2e\",\"timestamp\":\"2024-04-30T13:35:27Z\",\"description\":\"7th President of Iran from 2013 to 2021\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani\"}},\"extract\":\"Hassan Rouhani is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHassan Rouhani\u003c/b\u003e is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani\"},{\"pageid\":40156416,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Hossein_Dehghan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q14514593\",\"titles\":{\"canonical\":\"Hossein_Dehghan\",\"normalized\":\"Hossein Dehghan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7f/Hossein_Dehghan_3742862.jpg\",\"width\":387,\"height\":478},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216931807\",\"tid\":\"99bb3020-f12f-11ee-9988-753ee47da8ed\",\"timestamp\":\"2024-04-02T20:28:44Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Dehghan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Dehghan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Dehghan\"}},\"extract\":\"Hossein Dehghani Poudeh, commonly known as Hossein Dehghan, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Dehghani Poudeh\u003c/b\u003e, commonly known as \u003cb\u003eHossein Dehghan\u003c/b\u003e, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Dehghan\"},{\"pageid\":49059917,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"2017_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16052966\",\"titles\":{\"canonical\":\"2017_Iranian_presidential_election\",\"normalized\":\"2017 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/320px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/1200px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219479518\",\"tid\":\"1ac41222-fd1d-11ee-9296-641751b45479\",\"timestamp\":\"2024-04-18T00:46:34Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2017_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\",\"extract_html\":\"\u003cp\u003ePresidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"2017 Iranian presidential election\"},{\"pageid\":53159185,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Hassan_Rouhani_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520023\",\"titles\":{\"canonical\":\"Hassan_Rouhani_2017_presidential_campaign\",\"normalized\":\"Hassan Rouhani 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg/320px-Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":320,\"height\":230},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":372,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219489515\",\"tid\":\"801d16c3-fd27-11ee-b249-cbd5c0c13166\",\"timestamp\":\"2024-04-18T02:00:59Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"}},\"extract\":\"Hassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\",\"extract_html\":\"\u003cp\u003eHassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani 2017 presidential campaign\"},{\"pageid\":53746276,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520041\",\"titles\":{\"canonical\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"normalized\":\"Ebrahim Raisi 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224666909\",\"tid\":\"8ac10222-160f-11ef-bbc4-74de2e80c743\",\"timestamp\":\"2024-05-19T18:42:28Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"}},\"extract\":\"The Ebrahim Raisi 2017 presidential campaign began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEbrahim Raisi 2017 presidential campaign\u003c/b\u003e began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi 2017 presidential campaign\"},{\"pageid\":54091457,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"2021_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30640701\",\"titles\":{\"canonical\":\"2021_Iranian_presidential_election\",\"normalized\":\"2021 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/320px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/1200px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224741177\",\"tid\":\"6a25a278-1669-11ef-bdeb-b91c7b791f87\",\"timestamp\":\"2024-05-20T05:25:48Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2021_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePresidential elections\u003c/b\u003e were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\u003c/p\u003e\",\"normalizedtitle\":\"2021 Iranian presidential election\"},{\"pageid\":59042456,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Next_Supreme_Leader_of_Iran_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q23043491\",\"titles\":{\"canonical\":\"Next_Supreme_Leader_of_Iran_election\",\"normalized\":\"Next Supreme Leader of Iran election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751456\",\"tid\":\"3999420b-1678-11ef-9853-b9e4dddce4ab\",\"timestamp\":\"2024-05-20T07:11:49Z\",\"description\":\"Upcoming election for third Supreme Leader\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Next_Supreme_Leader_of_Iran_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"}},\"extract\":\"An election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\",\"extract_html\":\"\u003cp\u003eAn election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\u003c/p\u003e\",\"normalizedtitle\":\"Next Supreme Leader of Iran election\"},{\"pageid\":62042035,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Shahid_Motahari_University\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25423155\",\"titles\":{\"canonical\":\"Shahid_Motahari_University\",\"normalized\":\"Shahid Motahari University\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224737178\",\"tid\":\"b372fac3-1663-11ef-aca3-cbc5d2475b02\",\"timestamp\":\"2024-05-20T04:44:54Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shahid_Motahari_University\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"}},\"extract\":\"Shahid Motahari University was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eShahid Motahari University\u003c/b\u003e was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\u003c/p\u003e\",\"normalizedtitle\":\"Shahid Motahari University\"},{\"pageid\":67993687,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Jamileh_Alamolhoda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107312007\",\"titles\":{\"canonical\":\"Jamileh_Alamolhoda\",\"normalized\":\"Jamileh Alamolhoda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749287\",\"tid\":\"4d43951a-1676-11ef-98cd-3966598ad8f5\",\"timestamp\":\"2024-05-20T06:58:03Z\",\"description\":\"Iranian pedagogist (born 1965)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jamileh_Alamolhoda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"}},\"extract\":\"Jamileh-Sadat Alamolhoda, commonly known as Jamileh Alamolhoda, is the widow of former President of Iran, Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJamileh-Sadat Alamolhoda\u003c/b\u003e, commonly known as \u003cb\u003eJamileh Alamolhoda\u003c/b\u003e, is the widow of former President of Iran, Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"Jamileh Alamolhoda\"},{\"pageid\":75487795,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"2024_Iranian_Assembly_of_Experts_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q119082308\",\"titles\":{\"canonical\":\"2024_Iranian_Assembly_of_Experts_election\",\"normalized\":\"2024 Iranian Assembly of Experts election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740581\",\"tid\":\"6ba2a04c-1668-11ef-99ed-0b0378ef8cb8\",\"timestamp\":\"2024-05-20T05:18:41Z\",\"description\":\"Upcoming election in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Iranian_Assembly_of_Experts_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"}},\"extract\":\"The 2024 Iranian Assembly of Experts election were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2024 Iranian Assembly of Experts election\u003c/b\u003e were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Iranian Assembly of Experts election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e9fad349-7675-446f-a952-8d91a27c0427","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.06100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5b1ac64-6b6b-4a34-8500-4dd32d105ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.14800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375071,"end_time":376967,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5d66f2c-9abc-4ea9-b464-87f5531ebb77","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/46px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":377077,"end_time":377119,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37505","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1594","content-type":"image/webp","date":"Sun, 19 May 2024 22:37:19 GMT","etag":"217ce88f57569ea8d778fc852ed7cc75","last-modified":"Thu, 08 Jun 2023 05:41:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5125","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9b575d5-e917-4f73-b8a1-018b129d8f55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.51500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375072,"end_time":375334,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"04dd7429-6f24-41d0-a3d9-8254aa72f4ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":376972,"end_time":376975,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"063a3d8a-69a7-49d6-b866-340626956a67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"6942","content-disposition":"inline;filename*=UTF-8''Ezzatollah_Zarghami_13990110_0945265.jpg.webp","content-length":"33234","content-type":"image/webp","date":"Mon, 20 May 2024 07:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ezzatollah_Zarghami_13990110_0945265.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07dfd19d-03ab-4594-b83d-b1a3cc951c6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.23100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0c4bafe0-6521-42d9-8348-4d23fb6b9717","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.26500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":374072,"end_time":374084,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"109057","content-type":"multipart/form-data; boundary=6cb4ebac-4ad2-4790-b470-055b2914e31b","host":"10.0.2.2:8080","msr-req-id":"4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:21 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"104ecca5-b627-4a3a-9199-d2dd75cd68a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13c4e686-cabf-4a63-b022-aa83b541132f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.29700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":377110,"end_time":377115,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13ef7a6b-71fc-486b-b669-06ccc114dfc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"768","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1635cd98-e44d-4713-9860-92377a5a3651","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/54px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":377080,"end_time":377122,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"47787","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"244","content-type":"image/webp","date":"Sun, 19 May 2024 19:45:56 GMT","etag":"ddb40392973bbe7d974594e86b5c3e68","last-modified":"Thu, 04 Jan 2024 04:23:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/4153","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19d25f09-5244-4150-aff1-1703866273dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/22px-Increase2.svg.png","method":"get","status_code":200,"start_time":377029,"end_time":377076,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69644","content-disposition":"inline;filename*=UTF-8''Increase2.svg.webp","content-length":"130","content-type":"image/webp","date":"Sun, 19 May 2024 13:41:40 GMT","etag":"fcd13adac307811a280aa8a63141d86e","last-modified":"Wed, 31 Jan 2024 10:36:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/62164","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b1e100-f09c-44b2-b181-28d642516a9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11116","content-disposition":"inline;filename*=UTF-8''Hassan_Rouhani_2020.jpg.webp","content-length":"18298","content-type":"image/webp","date":"Mon, 20 May 2024 05:57:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Hassan_Rouhani_2020.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"54102fdb-bfe3-43c7-95d0-4ff1a3bc42ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.54500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":375011,"end_time":375364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587fec75-96c5-46f3-9500-507a7178ca02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.41900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.SwipeableListView","target_id":"toc_list","width":788,"height":1731,"x":743.9502,"y":919.9219,"touch_down_time":379113,"touch_up_time":379232},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bfefbf6-0efc-4238-b63f-af8f8b0c6684","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":377041,"end_time":377086,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53894","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1120","content-type":"image/webp","date":"Sun, 19 May 2024 18:04:09 GMT","etag":"7858cff15aea7c5998f65b5e30f474f7","last-modified":"Sat, 16 Mar 2024 06:21:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6196","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f7df590-60dc-44e1-b20d-53abc7bc3be7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.06200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5fa514dc-0b4c-4f5c-a415-d6e2a32bc41a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.02900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"menu_tabs","width":126,"height":147,"x":990.9448,"y":196.99219,"touch_down_time":371776,"touch_up_time":371846},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60721cb6-c137-4841-861c-f4cd12991464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":375976,"utime":650,"cutime":0,"cstime":0,"stime":654,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75813bc6-16a1-449f-a86d-3a5649bcc9b8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0b8806-7e5a-4983-99df-ac37ccd3fc17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/440px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":376994,"end_time":377077,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9476","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg.webp","content-length":"59556","content-type":"image/webp","date":"Mon, 20 May 2024 06:24:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/4281","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e3b4f72-ec02-4ab4-b6f6-b3e484ebebf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":376994,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70630","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.webp","content-length":"2930","content-type":"image/webp","date":"Sun, 19 May 2024 13:25:13 GMT","etag":"94831aec963f5737c3fce1ef362eb359","last-modified":"Sun, 19 May 2024 13:24:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/19161","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f277fb4-8b16-4b49-add4-c7b74dff0da1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Ambox_current_red.svg/99px-Ambox_current_red.svg.png","method":"get","status_code":200,"start_time":376985,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"24735","content-disposition":"inline;filename*=UTF-8''Ambox_current_red.svg.webp","content-length":"7940","content-type":"image/webp","date":"Mon, 20 May 2024 02:10:09 GMT","etag":"2fdc01fc3a415f51d6284bc9a43bc295","last-modified":"Tue, 23 May 2023 08:08:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/540","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7fb9a563-bc68-49fe-9164-b9d99b8d10b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.54000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":379293,"end_time":379359,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"4897","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg.webp","content-length":"178556","content-type":"image/webp","date":"Mon, 20 May 2024 07:40:49 GMT","etag":"bf327d5124c258158127165fb9e293ab","last-modified":"Mon, 20 May 2024 07:30:01 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/58","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"868dd320-6d08-42dd-bf03-92bed5828411","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.15900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":378978,"utime":750,"cutime":0,"cstime":0,"stime":707,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d4e8a-d735-4eaa-a1b9-37013414ce52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20820,"java_free_heap":5471,"total_pss":164790,"rss":240452,"native_total_heap":101888,"native_free_heap":11351,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ec22384-d4f3-4220-b51e-ba8e1f753273","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Decrease2.svg/22px-Decrease2.svg.png","method":"get","status_code":200,"start_time":377037,"end_time":377085,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"54203","content-disposition":"inline;filename*=UTF-8''Decrease2.svg.webp","content-length":"118","content-type":"image/webp","date":"Sun, 19 May 2024 17:59:00 GMT","etag":"6a32e49dbffd60773ebe06d4c5cef9e9","last-modified":"Wed, 31 Jan 2024 10:37:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/20209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"931dc21b-766d-4983-98d2-d8340f0439c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1473","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97c7763b-276c-4160-a6c6-2f68b45c6b72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.19000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b37ecef-3720-4de2-812c-b45ec1761a31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4e57f58-dad3-4c5f-b8ed-da3952522c35","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a54b0785-0c63-49aa-bfd3-0635d79ce3af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20339,"java_free_heap":5955,"total_pss":161703,"rss":244012,"native_total_heap":95744,"native_free_heap":12413,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab4488f4-d451-4bab-8994-0b47122b60a8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":376970,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae6df38a-2eb6-4379-9db1-3437e010839e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.75900000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":739.96216,"y":1180.957,"end_x":772.9541,"end_y":220.95703,"direction":"up","touch_down_time":378410,"touch_up_time":378577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b30515d2-62af-4e26-a5c2-345e544a5775","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.73100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bc5b4524-a2d5-4e0d-96ce-9e365800eca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.83700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_contents","width":216,"height":189,"x":1004.9524,"y":1705.8984,"touch_down_time":377573,"touch_up_time":377654},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be2df92c-f144-4430-9857-e964b041bac6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.04400000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":375350,"end_time":375863,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:23 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-7fwx4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-5","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3b73221-138c-4d49-ba10-cf41ec155621","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:20.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":372977,"utime":576,"cutime":0,"cstime":0,"stime":609,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c75d5c4d-cddf-4938-b291-a92df2502559","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":21496,"java_free_heap":6128,"total_pss":165822,"rss":241200,"native_total_heap":101888,"native_free_heap":10790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d09136cf-fd3e-4307-aec8-d54d8b43b33b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d22f8eb4-663e-4ce9-a4ff-a57f0649779e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":376977,"end_time":376978,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d52f85d5-64c8-4f57-bdeb-c3c28c299e37","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":376973,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5b3ed54-9d07-4932-84f6-0c2c0744e670","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.32900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":370845,"end_time":371148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d697ae8e-7086-4a6e-b8ba-7c7d308ffe67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d72821bf-6395-441f-9e35-acdcd5be8e70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.58500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_(19.05.2024)_(cropped).jpg/640px-Ebrahim_Raisi_(19.05.2024)_(cropped).jpg","method":"get","status_code":200,"start_time":375355,"end_time":375404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9401","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"106208","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/245","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8c37eab-d4de-42f1-bd71-3194eb7803a9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df44560b-c1c4-45e4-a02d-dcf6c1853c23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.32800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg","method":"get","status_code":200,"start_time":378095,"end_time":378147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"59304","content-disposition":"inline;filename*=UTF-8''Hossein_Dehghan_3742862.jpg","content-length":"28523","content-type":"image/jpeg","date":"Sun, 19 May 2024 16:34:01 GMT","etag":"d3fdbd4a484beec98231d58928e7b68a","last-modified":"Sat, 24 Apr 2021 16:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/82","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e540c90e-8af1-4dfa-9f95-89aaefa80b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20397,"java_free_heap":5948,"total_pss":160547,"rss":247084,"native_total_heap":95744,"native_free_heap":11880,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5ace9ab-746b-472f-976c-0036f9dbcdb2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.26600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","method":"get","status_code":200,"start_time":377126,"end_time":378084,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"4mpgjwno2o04ka4hzflm3qi96","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":233913,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"pageid\":385653,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"pageid\":399536,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Akbar_Rafsanjanī\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q186111\",\"titles\":{\"canonical\":\"Akbar_Rafsanjanī\",\"normalized\":\"Akbar Rafsanjanī\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg/320px-Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":630,\"height\":891},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224676447\",\"tid\":\"d4aef906-1619-11ef-a8b4-adee7f3d440e\",\"timestamp\":\"2024-05-19T19:56:07Z\",\"description\":\"President of Iran from 1989 to 1997\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Akbar_Rafsanjan%C4%AB\",\"edit\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"}},\"extract\":\"Ali Akbar Hashimi Bahramani Rafsanjani was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAli Akbar Hashimi Bahramani Rafsanjani\u003c/b\u003e was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Akbar Rafsanjanī\"},{\"pageid\":1155426,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"List_of_presidents_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q742419\",\"titles\":{\"canonical\":\"List_of_presidents_of_Iran\",\"normalized\":\"List of presidents of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759041\",\"tid\":\"6737c3a2-1683-11ef-88e1-193e954a67d4\",\"timestamp\":\"2024-05-20T08:31:50Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_presidents_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"}},\"extract\":\"This is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\",\"extract_html\":\"\u003cp\u003eThis is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\u003c/p\u003e\",\"normalizedtitle\":\"List of presidents of Iran\"},{\"pageid\":2666136,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Bijan_Namdar_Zangeneh\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4907167\",\"titles\":{\"canonical\":\"Bijan_Namdar_Zangeneh\",\"normalized\":\"Bijan Namdar Zangeneh\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg/320px-Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":320,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":408,\"height\":506},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220831157\",\"tid\":\"42ee0721-038b-11ef-bf62-89eeffe2821a\",\"timestamp\":\"2024-04-26T05:10:13Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bijan_Namdar_Zangeneh\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"}},\"extract\":\"Bijan Namdar Zangeneh is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBijan Namdar Zangeneh\u003c/b\u003e is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\u003c/p\u003e\",\"normalizedtitle\":\"Bijan Namdar Zangeneh\"},{\"pageid\":2826589,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Combatant_Clergy_Association\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1817687\",\"titles\":{\"canonical\":\"Combatant_Clergy_Association\",\"normalized\":\"Combatant Clergy Association\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219028652\",\"tid\":\"c137ddda-fb09-11ee-800c-903c45641695\",\"timestamp\":\"2024-04-15T09:23:01Z\",\"description\":\"Political party in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Combatant_Clergy_Association\",\"edit\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"}},\"extract\":\"The Combatant Clergy Association is a politically active group in Iran, but not a political party in the traditional sense.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCombatant Clergy Association\u003c/b\u003e is a politically active group in Iran, but not a political party in the traditional sense.\u003c/p\u003e\",\"normalizedtitle\":\"Combatant Clergy Association\"},{\"pageid\":8898525,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Sadeq_Larijani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24682\",\"titles\":{\"canonical\":\"Sadeq_Larijani\",\"normalized\":\"Sadeq Larijani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg/320px-Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":320,\"height\":468},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":388,\"height\":567},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223124180\",\"tid\":\"31b5e548-0e6d-11ef-8f7b-9e92c2c01286\",\"timestamp\":\"2024-05-10T01:32:42Z\",\"description\":\"Iranian Ayatollah\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sadeq_Larijani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sadeq_Larijani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sadeq_Larijani\"}},\"extract\":\"Sadeq Ardeshir Larijani, better known as Amoli Larijani, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSadeq Ardeshir Larijani\u003c/b\u003e, better known as \u003cb\u003eAmoli Larijani\u003c/b\u003e, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\u003c/p\u003e\",\"normalizedtitle\":\"Sadeq Larijani\"},{\"pageid\":12653536,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Iran–Japan_relations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2915778\",\"titles\":{\"canonical\":\"Iran–Japan_relations\",\"normalized\":\"Iran–Japan relations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Iran_Japan_Locator.png/320px-Iran_Japan_Locator.png\",\"width\":320,\"height\":165},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/28/Iran_Japan_Locator.png\",\"width\":1376,\"height\":708},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219996780\",\"tid\":\"0727fd57-ff9f-11ee-8c81-65d4dcd950c9\",\"timestamp\":\"2024-04-21T05:21:38Z\",\"description\":\"Bilateral relations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran%E2%80%93Japan_relations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"}},\"extract\":\"Iran–Japan relations are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran–Japan relations\u003c/b\u003e are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\u003c/p\u003e\",\"normalizedtitle\":\"Iran–Japan relations\"},{\"pageid\":13824095,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Saeed_Jalili\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q635059\",\"titles\":{\"canonical\":\"Saeed_Jalili\",\"normalized\":\"Saeed Jalili\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Saeed_Jalili_13991023_1647093.jpg/320px-Saeed_Jalili_13991023_1647093.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/Saeed_Jalili_13991023_1647093.jpg\",\"width\":400,\"height\":592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224715732\",\"tid\":\"5d437df0-1646-11ef-8927-7adf553a94a9\",\"timestamp\":\"2024-05-20T01:14:54Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Saeed_Jalili\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Saeed_Jalili\",\"edit\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Saeed_Jalili\"}},\"extract\":\"Saeed Jalili is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSaeed Jalili\u003c/b\u003e is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Saeed Jalili\"},{\"pageid\":17446126,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Ezzatollah_Zarghami\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3736444\",\"titles\":{\"canonical\":\"Ezzatollah_Zarghami\",\"normalized\":\"Ezzatollah Zarghami\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":1667,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216932163\",\"tid\":\"df780acb-f12f-11ee-973b-9e630df41f7c\",\"timestamp\":\"2024-04-02T20:30:41Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ezzatollah_Zarghami\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"}},\"extract\":\"Sayyid Ezzatollah Zarghami is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSayyid Ezzatollah Zarghami\u003c/b\u003e is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Ezzatollah Zarghami\"},{\"pageid\":38481813,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Hassan_Rouhani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348144\",\"titles\":{\"canonical\":\"Hassan_Rouhani\",\"normalized\":\"Hassan Rouhani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg\",\"width\":320,\"height\":367},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Hassan_Rouhani_2020.jpg\",\"width\":564,\"height\":646},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221528860\",\"tid\":\"81224136-06f6-11ef-a215-71f3c609cc2e\",\"timestamp\":\"2024-04-30T13:35:27Z\",\"description\":\"7th President of Iran from 2013 to 2021\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani\"}},\"extract\":\"Hassan Rouhani is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHassan Rouhani\u003c/b\u003e is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani\"},{\"pageid\":40156416,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Hossein_Dehghan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q14514593\",\"titles\":{\"canonical\":\"Hossein_Dehghan\",\"normalized\":\"Hossein Dehghan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7f/Hossein_Dehghan_3742862.jpg\",\"width\":387,\"height\":478},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216931807\",\"tid\":\"99bb3020-f12f-11ee-9988-753ee47da8ed\",\"timestamp\":\"2024-04-02T20:28:44Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Dehghan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Dehghan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Dehghan\"}},\"extract\":\"Hossein Dehghani Poudeh, commonly known as Hossein Dehghan, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Dehghani Poudeh\u003c/b\u003e, commonly known as \u003cb\u003eHossein Dehghan\u003c/b\u003e, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Dehghan\"},{\"pageid\":49059917,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"2017_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16052966\",\"titles\":{\"canonical\":\"2017_Iranian_presidential_election\",\"normalized\":\"2017 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/320px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/1200px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219479518\",\"tid\":\"1ac41222-fd1d-11ee-9296-641751b45479\",\"timestamp\":\"2024-04-18T00:46:34Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2017_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\",\"extract_html\":\"\u003cp\u003ePresidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"2017 Iranian presidential election\"},{\"pageid\":53159185,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Hassan_Rouhani_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520023\",\"titles\":{\"canonical\":\"Hassan_Rouhani_2017_presidential_campaign\",\"normalized\":\"Hassan Rouhani 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg/320px-Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":320,\"height\":230},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":372,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219489515\",\"tid\":\"801d16c3-fd27-11ee-b249-cbd5c0c13166\",\"timestamp\":\"2024-04-18T02:00:59Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"}},\"extract\":\"Hassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\",\"extract_html\":\"\u003cp\u003eHassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani 2017 presidential campaign\"},{\"pageid\":53746276,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520041\",\"titles\":{\"canonical\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"normalized\":\"Ebrahim Raisi 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224666909\",\"tid\":\"8ac10222-160f-11ef-bbc4-74de2e80c743\",\"timestamp\":\"2024-05-19T18:42:28Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"}},\"extract\":\"The Ebrahim Raisi 2017 presidential campaign began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEbrahim Raisi 2017 presidential campaign\u003c/b\u003e began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi 2017 presidential campaign\"},{\"pageid\":54091457,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"2021_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30640701\",\"titles\":{\"canonical\":\"2021_Iranian_presidential_election\",\"normalized\":\"2021 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/320px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/1200px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224741177\",\"tid\":\"6a25a278-1669-11ef-bdeb-b91c7b791f87\",\"timestamp\":\"2024-05-20T05:25:48Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2021_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePresidential elections\u003c/b\u003e were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\u003c/p\u003e\",\"normalizedtitle\":\"2021 Iranian presidential election\"},{\"pageid\":59042456,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Next_Supreme_Leader_of_Iran_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q23043491\",\"titles\":{\"canonical\":\"Next_Supreme_Leader_of_Iran_election\",\"normalized\":\"Next Supreme Leader of Iran election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751456\",\"tid\":\"3999420b-1678-11ef-9853-b9e4dddce4ab\",\"timestamp\":\"2024-05-20T07:11:49Z\",\"description\":\"Upcoming election for third Supreme Leader\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Next_Supreme_Leader_of_Iran_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"}},\"extract\":\"An election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\",\"extract_html\":\"\u003cp\u003eAn election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\u003c/p\u003e\",\"normalizedtitle\":\"Next Supreme Leader of Iran election\"},{\"pageid\":62042035,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Shahid_Motahari_University\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25423155\",\"titles\":{\"canonical\":\"Shahid_Motahari_University\",\"normalized\":\"Shahid Motahari University\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224737178\",\"tid\":\"b372fac3-1663-11ef-aca3-cbc5d2475b02\",\"timestamp\":\"2024-05-20T04:44:54Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shahid_Motahari_University\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"}},\"extract\":\"Shahid Motahari University was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eShahid Motahari University\u003c/b\u003e was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\u003c/p\u003e\",\"normalizedtitle\":\"Shahid Motahari University\"},{\"pageid\":67993687,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Jamileh_Alamolhoda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107312007\",\"titles\":{\"canonical\":\"Jamileh_Alamolhoda\",\"normalized\":\"Jamileh Alamolhoda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749287\",\"tid\":\"4d43951a-1676-11ef-98cd-3966598ad8f5\",\"timestamp\":\"2024-05-20T06:58:03Z\",\"description\":\"Iranian pedagogist (born 1965)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jamileh_Alamolhoda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"}},\"extract\":\"Jamileh-Sadat Alamolhoda, commonly known as Jamileh Alamolhoda, is the widow of former President of Iran, Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJamileh-Sadat Alamolhoda\u003c/b\u003e, commonly known as \u003cb\u003eJamileh Alamolhoda\u003c/b\u003e, is the widow of former President of Iran, Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"Jamileh Alamolhoda\"},{\"pageid\":75487795,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"2024_Iranian_Assembly_of_Experts_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q119082308\",\"titles\":{\"canonical\":\"2024_Iranian_Assembly_of_Experts_election\",\"normalized\":\"2024 Iranian Assembly of Experts election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740581\",\"tid\":\"6ba2a04c-1668-11ef-99ed-0b0378ef8cb8\",\"timestamp\":\"2024-05-20T05:18:41Z\",\"description\":\"Upcoming election in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Iranian_Assembly_of_Experts_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"}},\"extract\":\"The 2024 Iranian Assembly of Experts election were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2024 Iranian Assembly of Experts election\u003c/b\u003e were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Iranian Assembly of Experts election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e9fad349-7675-446f-a952-8d91a27c0427","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.06100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5b1ac64-6b6b-4a34-8500-4dd32d105ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.14800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375071,"end_time":376967,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5d66f2c-9abc-4ea9-b464-87f5531ebb77","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/46px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":377077,"end_time":377119,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37505","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1594","content-type":"image/webp","date":"Sun, 19 May 2024 22:37:19 GMT","etag":"217ce88f57569ea8d778fc852ed7cc75","last-modified":"Thu, 08 Jun 2023 05:41:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5125","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9b575d5-e917-4f73-b8a1-018b129d8f55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.51500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375072,"end_time":375334,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json index 45aaf574d..b55b648aa 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json @@ -1 +1 @@ -[{"id":"078c6353-a072-431d-96d3-be39e1036e91","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:41.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1343,"total_pss":111389,"rss":175568,"native_total_heap":49624,"native_free_heap":18983,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0a5f08e8-6ea0-4ecf-bea5-5f6bc56bf015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.28700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":164737,"end_time":164771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"334632","content-type":"multipart/form-data; boundary=4496bd5f-55af-49bc-9b48-b1405741e473","host":"10.0.2.2:8080","msr-req-id":"c3929414-e862-4eeb-a108-6048f47a53ed","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b87362d-c482-47d5-84f5-794489f4ac8b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28868,"java_free_heap":1719,"total_pss":110865,"rss":175036,"native_total_heap":49865,"native_free_heap":18742,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0e6f68ac-196e-4ec3-ac18-8762c3d9f726","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33189,"java_free_heap":2005,"total_pss":112205,"rss":175824,"native_total_heap":50102,"native_free_heap":17481,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"177639cc-7adb-4fd7-9da6-b358167876e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17b1ef98-97c4-4943-90c5-b34628166f62","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.76800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":159460,"end_time":160253,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lowndes_County_School_District_(Georgia)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:39 GMT","etag":"W/\"1167323175/4e777a40-fdcd-11ee-bbdc-32b98d7a962b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lowndes County School District (Georgia)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6694121\",\"titles\":{\"canonical\":\"Lowndes_County_School_District_(Georgia)\",\"normalized\":\"Lowndes County School District (Georgia)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\"},\"pageid\":27818334,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Lowndes_County_Board_of_Education.JPG/320px-Lowndes_County_Board_of_Education.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/11/Lowndes_County_Board_of_Education.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1167323175\",\"tid\":\"1bafa25e-2c24-11ee-ac43-c693f77f2e7f\",\"timestamp\":\"2023-07-27T02:20:09Z\",\"description\":\"School district in Georgia (U.S. state)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.834966,\"lon\":-83.320821},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lowndes_County_School_District_(Georgia)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"}},\"extract\":\"The Lowndes County School District is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLowndes County School District\u003c/b\u003e is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2739435f-8120-44b0-b908-80c79a68df67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"28590b55-2df6-4b87-98e1-e07b5a78bbfa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aa39033-dd30-452e-9660-06b1a789e885","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":161609,"utime":200,"cutime":0,"cstime":0,"stime":96,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30ad3022-2d4b-4ec8-8939-edb3ab0dcff3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1317,"total_pss":110720,"rss":174132,"native_total_heap":50061,"native_free_heap":17522,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"32d95e61-4d9b-48ba-8df6-d5f9dd044e3e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"332e29d7-cc7b-46fd-badc-0baf12324fe4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"361bad99-b26f-49c9-9766-659a71be4b03","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":158605,"utime":180,"cutime":0,"cstime":0,"stime":86,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39899413-c250-46cc-83ba-3a8ceb7eeb0a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3ec0873b-d50f-4876-9860-28fd71923756","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.02700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":521.97144,"y":2194.9219,"touch_down_time":162785,"touch_up_time":165508},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"47ad1207-0a90-4ed4-acdc-6c4d0f0f290b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.83700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c4d51f5-a366-409a-a826-f82dc3574928","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4e8eb141-9d91-478c-a02b-53ac3309d7c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":927.9602,"y":2164.8926,"touch_down_time":166676,"touch_up_time":166748},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"533f5d20-95b6-4d13-a985-8b45be7e181d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"539b337a-e5b0-4215-95fa-6433c9d68a24","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.20900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":158643,"end_time":158693,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/e0c68f80-1687-11ef-a368-494f74d485b5","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"179","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/99","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"59b30715-a806-4c9e-9c01-19e039197c44","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.63200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":80.980225,"y":145.97168,"touch_down_time":155027,"touch_up_time":155116},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d9cf152-56c6-4c97-bc56-50b96255122e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"61039d91-65ce-4e2f-ae1b-7cd875edacdc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:34.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":155605,"utime":168,"cutime":0,"cstime":0,"stime":81,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"63616d03-b7a1-4cae-9350-30becf2a5684","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":155141,"end_time":155469,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1813","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"666ae65c-1933-403f-a92b-07accf7b6380","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"677a625a-7bfd-421d-93ff-66356b5ca2b1","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:39.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1585,"total_pss":111297,"rss":175480,"native_total_heap":49751,"native_free_heap":18856,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6eb04c0a-e750-4827-9d03-c13b706d22b4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7b547a74-e4ce-4684-8ae5-befcfb977a82","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"824c2970-ec69-4d31-b3cd-115e9ee660db","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1249,"total_pss":110909,"rss":175052,"native_total_heap":49740,"native_free_heap":18867,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ec3090-a1a8-4958-8623-b67a101cb712","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"887d5aa4-1917-4399-8a64-4079a23f712d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.99300000Z","type":"gesture_long_click","gesture_long_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":361.98853,"y":1323.9258,"touch_down_time":152274,"touch_up_time":153476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a23085a-af0c-4bdd-b149-92ee1f5e5d97","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.05900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a7c48ec-bb59-4e9b-ac9a-63f207a614b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.29300000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":95.97656,"y":2054.8828,"end_x":95.97656,"end_y":2080.5315,"direction":"down","touch_down_time":156437,"touch_up_time":156776},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"985dbc31-addf-4d22-b627-c00078bc4e47","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.28500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99cd84b8-ed71-4b1c-81c9-f579b14dd047","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:32.70900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":451.96655,"y":1368.8965,"touch_down_time":154109,"touch_up_time":154193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99f4560e-0cbc-43df-8c88-b079be20475b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"aec2b717-4c90-4f6d-9f09-f68c65f1e306","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.23100000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2164.8926,"touch_down_time":160052,"touch_up_time":161712},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bc7749c8-dcbb-431e-b6fa-0248dc3d24b5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be405dac-a600-44b8-a4e5-86105d17161d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bee9bae4-62b4-45fd-99a6-07e267f958a9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":164606,"utime":206,"cutime":0,"cstime":0,"stime":98,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c0a1180a-2143-4b60-8a23-047b4b8d59ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.77000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":746.94946,"y":2154.9316,"touch_down_time":166164,"touch_up_time":166253},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c7200e77-885c-4cbc-9128-1ce173dcddc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c94df8e5-c22d-46ca-8cd9-88bf193ef226","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.80200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d04de3de-c98a-44d2-aa35-2ed94c791cee","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.12900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2184.8877,"touch_down_time":158915,"touch_up_time":159612},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d1db828b-6065-4021-a5f5-c58bfc2ed98f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d694f833-60cf-470b-be2e-38aa46016862","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.82900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":100.98633,"y":2139.9026,"touch_down_time":157116,"touch_up_time":158311},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e5b46f9b-3e01-4e95-81da-6bbb40197288","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8395764-e664-41b9-8caa-df5d635fef11","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ec0acfea-d65d-48d5-a37a-cc063229b502","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1853,"total_pss":109932,"rss":173512,"native_total_heap":49277,"native_free_heap":18306,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f16f5dbb-0fda-4d65-b89a-acd7a742eb63","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.85600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":158336,"end_time":158341,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"078c6353-a072-431d-96d3-be39e1036e91","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:41.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1343,"total_pss":111389,"rss":175568,"native_total_heap":49624,"native_free_heap":18983,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0a5f08e8-6ea0-4ecf-bea5-5f6bc56bf015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.28700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":164737,"end_time":164771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"334632","content-type":"multipart/form-data; boundary=4496bd5f-55af-49bc-9b48-b1405741e473","host":"10.0.2.2:8080","msr-req-id":"c3929414-e862-4eeb-a108-6048f47a53ed","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b87362d-c482-47d5-84f5-794489f4ac8b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28868,"java_free_heap":1719,"total_pss":110865,"rss":175036,"native_total_heap":49865,"native_free_heap":18742,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0e6f68ac-196e-4ec3-ac18-8762c3d9f726","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33189,"java_free_heap":2005,"total_pss":112205,"rss":175824,"native_total_heap":50102,"native_free_heap":17481,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"177639cc-7adb-4fd7-9da6-b358167876e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17b1ef98-97c4-4943-90c5-b34628166f62","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.76800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":159460,"end_time":160253,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lowndes_County_School_District_(Georgia)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:39 GMT","etag":"W/\"1167323175/4e777a40-fdcd-11ee-bbdc-32b98d7a962b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lowndes County School District (Georgia)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6694121\",\"titles\":{\"canonical\":\"Lowndes_County_School_District_(Georgia)\",\"normalized\":\"Lowndes County School District (Georgia)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\"},\"pageid\":27818334,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Lowndes_County_Board_of_Education.JPG/320px-Lowndes_County_Board_of_Education.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/11/Lowndes_County_Board_of_Education.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1167323175\",\"tid\":\"1bafa25e-2c24-11ee-ac43-c693f77f2e7f\",\"timestamp\":\"2023-07-27T02:20:09Z\",\"description\":\"School district in Georgia (U.S. state)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.834966,\"lon\":-83.320821},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lowndes_County_School_District_(Georgia)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"}},\"extract\":\"The Lowndes County School District is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLowndes County School District\u003c/b\u003e is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2739435f-8120-44b0-b908-80c79a68df67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"28590b55-2df6-4b87-98e1-e07b5a78bbfa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aa39033-dd30-452e-9660-06b1a789e885","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":161609,"utime":200,"cutime":0,"cstime":0,"stime":96,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30ad3022-2d4b-4ec8-8939-edb3ab0dcff3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1317,"total_pss":110720,"rss":174132,"native_total_heap":50061,"native_free_heap":17522,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"32d95e61-4d9b-48ba-8df6-d5f9dd044e3e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"332e29d7-cc7b-46fd-badc-0baf12324fe4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"361bad99-b26f-49c9-9766-659a71be4b03","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":158605,"utime":180,"cutime":0,"cstime":0,"stime":86,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39899413-c250-46cc-83ba-3a8ceb7eeb0a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3ec0873b-d50f-4876-9860-28fd71923756","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.02700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":521.97144,"y":2194.9219,"touch_down_time":162785,"touch_up_time":165508},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"47ad1207-0a90-4ed4-acdc-6c4d0f0f290b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.83700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c4d51f5-a366-409a-a826-f82dc3574928","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4e8eb141-9d91-478c-a02b-53ac3309d7c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":927.9602,"y":2164.8926,"touch_down_time":166676,"touch_up_time":166748},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"533f5d20-95b6-4d13-a985-8b45be7e181d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"539b337a-e5b0-4215-95fa-6433c9d68a24","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.20900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":158643,"end_time":158693,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/e0c68f80-1687-11ef-a368-494f74d485b5","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"179","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/99","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"59b30715-a806-4c9e-9c01-19e039197c44","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.63200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":80.980225,"y":145.97168,"touch_down_time":155027,"touch_up_time":155116},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d9cf152-56c6-4c97-bc56-50b96255122e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"61039d91-65ce-4e2f-ae1b-7cd875edacdc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:34.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":155605,"utime":168,"cutime":0,"cstime":0,"stime":81,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"63616d03-b7a1-4cae-9350-30becf2a5684","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":155141,"end_time":155469,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1813","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"666ae65c-1933-403f-a92b-07accf7b6380","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"677a625a-7bfd-421d-93ff-66356b5ca2b1","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:39.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1585,"total_pss":111297,"rss":175480,"native_total_heap":49751,"native_free_heap":18856,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6eb04c0a-e750-4827-9d03-c13b706d22b4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7b547a74-e4ce-4684-8ae5-befcfb977a82","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"824c2970-ec69-4d31-b3cd-115e9ee660db","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1249,"total_pss":110909,"rss":175052,"native_total_heap":49740,"native_free_heap":18867,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ec3090-a1a8-4958-8623-b67a101cb712","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"887d5aa4-1917-4399-8a64-4079a23f712d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.99300000Z","type":"gesture_long_click","gesture_long_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":361.98853,"y":1323.9258,"touch_down_time":152274,"touch_up_time":153476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a23085a-af0c-4bdd-b149-92ee1f5e5d97","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.05900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a7c48ec-bb59-4e9b-ac9a-63f207a614b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.29300000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":95.97656,"y":2054.8828,"end_x":95.97656,"end_y":2080.5315,"direction":"down","touch_down_time":156437,"touch_up_time":156776},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"985dbc31-addf-4d22-b627-c00078bc4e47","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.28500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99cd84b8-ed71-4b1c-81c9-f579b14dd047","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:32.70900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":451.96655,"y":1368.8965,"touch_down_time":154109,"touch_up_time":154193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99f4560e-0cbc-43df-8c88-b079be20475b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"aec2b717-4c90-4f6d-9f09-f68c65f1e306","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.23100000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2164.8926,"touch_down_time":160052,"touch_up_time":161712},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bc7749c8-dcbb-431e-b6fa-0248dc3d24b5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be405dac-a600-44b8-a4e5-86105d17161d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bee9bae4-62b4-45fd-99a6-07e267f958a9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":164606,"utime":206,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c0a1180a-2143-4b60-8a23-047b4b8d59ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.77000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":746.94946,"y":2154.9316,"touch_down_time":166164,"touch_up_time":166253},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c7200e77-885c-4cbc-9128-1ce173dcddc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c94df8e5-c22d-46ca-8cd9-88bf193ef226","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.80200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d04de3de-c98a-44d2-aa35-2ed94c791cee","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.12900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2184.8877,"touch_down_time":158915,"touch_up_time":159612},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d1db828b-6065-4021-a5f5-c58bfc2ed98f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d694f833-60cf-470b-be2e-38aa46016862","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.82900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":100.98633,"y":2139.9026,"touch_down_time":157116,"touch_up_time":158311},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e5b46f9b-3e01-4e95-81da-6bbb40197288","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8395764-e664-41b9-8caa-df5d635fef11","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ec0acfea-d65d-48d5-a37a-cc063229b502","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1853,"total_pss":109932,"rss":173512,"native_total_heap":49277,"native_free_heap":18306,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f16f5dbb-0fda-4d65-b89a-acd7a742eb63","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.85600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":158336,"end_time":158341,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json index 5878abcdb..fe54287f5 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json @@ -1 +1 @@ -[{"id":"0017ac11-c79b-4125-ad15-ec52a5b2197d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0384bb74-5c14-4be1-96a1-6d592a337a76","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0d5edd9a-67c1-4fe9-9214-2311908f3e34","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17d63b53-affa-433e-b68a-97bfee76768f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25a6df4f-6755-46ea-8c55-4eb2491b5887","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.41900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"317be4bf-5c84-47be-a71c-d466a6980d79","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3c80af53-5831-4277-aba0-b6308ff44667","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f73d871-9253-4de0-ab84-712fd9c6153a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4d189e6a-987e-4b05-ad0b-9573ede9e0b2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4ea9d9d0-541b-4e1d-b2a2-c3461d8820d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5a2125eb-006f-45f5-b533-9d533ac2115c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.16900000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29692,"java_free_heap":1146,"total_pss":113201,"rss":176820,"native_total_heap":50002,"native_free_heap":20653,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f711bf6-4745-4868-9206-c14022163a12","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a93c7af-53d1-4a74-8fb4-9ad0f07c9a04","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":176652,"utime":254,"cutime":0,"cstime":0,"stime":122,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e7b325c-095b-4be4-9a78-32612b268899","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.20200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":176639,"end_time":176687,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"376550","content-type":"multipart/form-data; boundary=b78391c7-d360-4072-bb25-15d7d1bf897b","host":"10.0.2.2:8080","msr-req-id":"35c101b3-bf3d-4386-90d3-f0d61406bbeb","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e9ae7cb-c5d1-41a7-89f9-980dca0b33be","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f44bd02-7f7e-43b3-b03e-1c85b2b34136","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a21a75be-5a56-4799-a211-f7a93ea8595f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b108f511-7994-4ff0-a00b-a9faf38c346e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.27500000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":176633,"on_next_draw_uptime":176759,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c09af090-e454-4bd4-977e-5b083c01d75c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e92d44d1-8c38-4a82-ac50-9e783f143408","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":41657,"java_free_heap":0,"total_pss":116587,"rss":180992,"native_total_heap":48442,"native_free_heap":22213,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0017ac11-c79b-4125-ad15-ec52a5b2197d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0384bb74-5c14-4be1-96a1-6d592a337a76","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0d5edd9a-67c1-4fe9-9214-2311908f3e34","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17d63b53-affa-433e-b68a-97bfee76768f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25a6df4f-6755-46ea-8c55-4eb2491b5887","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.41900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"317be4bf-5c84-47be-a71c-d466a6980d79","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3c80af53-5831-4277-aba0-b6308ff44667","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f73d871-9253-4de0-ab84-712fd9c6153a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4d189e6a-987e-4b05-ad0b-9573ede9e0b2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4ea9d9d0-541b-4e1d-b2a2-c3461d8820d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5a2125eb-006f-45f5-b533-9d533ac2115c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.16900000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29692,"java_free_heap":1146,"total_pss":113201,"rss":176820,"native_total_heap":50002,"native_free_heap":20653,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f711bf6-4745-4868-9206-c14022163a12","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a93c7af-53d1-4a74-8fb4-9ad0f07c9a04","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":176652,"utime":254,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e7b325c-095b-4be4-9a78-32612b268899","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.20200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":176639,"end_time":176687,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"376550","content-type":"multipart/form-data; boundary=b78391c7-d360-4072-bb25-15d7d1bf897b","host":"10.0.2.2:8080","msr-req-id":"35c101b3-bf3d-4386-90d3-f0d61406bbeb","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e9ae7cb-c5d1-41a7-89f9-980dca0b33be","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f44bd02-7f7e-43b3-b03e-1c85b2b34136","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a21a75be-5a56-4799-a211-f7a93ea8595f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b108f511-7994-4ff0-a00b-a9faf38c346e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.27500000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":176633,"on_next_draw_uptime":176759,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c09af090-e454-4bd4-977e-5b083c01d75c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e92d44d1-8c38-4a82-ac50-9e783f143408","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":41657,"java_free_heap":0,"total_pss":116587,"rss":180992,"native_total_heap":48442,"native_free_heap":22213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json index 018f000d8..ecc4deb28 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json @@ -1 +1 @@ -[{"id":"012c5a9c-0c67-45f2-aece-ecc508bc6f4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.27400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07ec6e95-20a7-424f-9866-728c5feb9c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e1cd8bf-9456-4555-bc7f-7d48ce3c6708","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.33200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304032,"end_time":305151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"251","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2747a398-225e-4ca9-af69-3f35d71043c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.38200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"289005a1-e179-4f99-a650-15b87346be5b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":2256,"total_pss":75783,"rss":164720,"native_total_heap":32768,"native_free_heap":3850,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3244cac5-9dbf-42dd-98d4-b4a0de6a93cb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.34900000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":336.97266,"y":1676.8945,"touch_down_time":315086,"touch_up_time":315165},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33328ab0-b68d-4033-9e18-52f8551db961","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33baa990-87ee-4398-8a89-ec99f59215b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.45000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"359c4020-def4-4f99-bdd7-175ece300ca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.55600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304235,"end_time":304375,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2425","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38da200f-cf47-461b-93f0-88e4d633b74b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e7bba15-0947-4439-a8ec-99bc87193032","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.29500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"40dea0eb-2d74-49c9-b411-566c5e107494","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a758de7-a94e-40c5-af2e-ed26d43b0e46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.50900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304053,"end_time":304328,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2424","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f5f1a37-3952-4b7d-8147-8920bd176aaf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"550c5a37-4e86-41e8-a81a-ec2a369cfc9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56ea5db8-0168-45e7-9d9f-bb1ca23a31db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"588e0674-7008-4e94-9a4d-8a739a6119dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a42a47d-0a49-452e-92eb-e0d7b51c42a6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":306976,"utime":47,"cutime":0,"cstime":0,"stime":33,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a6cbd-4a83-4fd2-a305-2db08c830780","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70206dac-6eab-4d76-b118-cd145a21d9e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a38870-bc9e-4874-9067-8b096c7efd96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":302,"total_pss":79461,"rss":170260,"native_total_heap":34816,"native_free_heap":4794,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75c7a06c-a6bb-41af-8797-816b31073c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.60100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":314074,"end_time":314420,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12083","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/746","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7816de3e-ea57-41ed-9fc6-ec38a8997f61","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":304064,"end_time":304087,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"4405","content-type":"multipart/form-data; boundary=13467950-89a1-4da9-a8eb-8010b037cd50","host":"10.0.2.2:8080","msr-req-id":"01685d51-71b9-4482-9668-8b2e5ae8f8dd","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7db550d4-860f-467e-982c-8db6bc4bc0d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e40c84c-df16-423f-9ba8-3b3902e30935","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":902,"total_pss":78262,"rss":167544,"native_total_heap":34816,"native_free_heap":5577,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"834b47bf-3c27-4cb8-a075-2b2dcf633705","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":309977,"utime":53,"cutime":0,"cstime":0,"stime":34,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad8b23a-7030-42c4-8115-e97312180506","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.00000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":305614,"end_time":306819,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Massena%2C_Iowa","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:14 GMT","etag":"W/\"1207123788/a3045060-14c0-11ef-ad39-9fc638d86320\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Massena, Iowa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1928585\",\"titles\":{\"canonical\":\"Massena,_Iowa\",\"normalized\":\"Massena, Iowa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\"},\"pageid\":112848,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/EastMain.jpg/320px-EastMain.jpg\",\"width\":320,\"height\":137},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2d/EastMain.jpg\",\"width\":504,\"height\":216},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1207123788\",\"tid\":\"2d7e5df5-cada-11ee-a8bf-15ff9d24e458\",\"timestamp\":\"2024-02-14T01:41:31Z\",\"description\":\"City in Iowa, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":41.25388889,\"lon\":-94.76888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Massena%2C_Iowa\",\"edit\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"}},\"extract\":\"Massena is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMassena\u003c/b\u003e is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17ff16-9751-4753-b450-67889a4da1ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.99600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":304696,"end_time":304815,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"137","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49974","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/78","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2537fb2-6e86-4c76-a709-a4b0846e674c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.43500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"afad7ba4-f963-409f-a88f-dfff38f903f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.56800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":314073,"end_time":314387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"84504","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/559","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b05a4425-8468-4b46-9d28-8bcd81775c33","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ca69b6cf-0b35-48d4-8213-09b592a541a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc31ed96-00a6-42a0-98e9-a1e8371ab4fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.37500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccb8d339-4e4e-4789-8e27-0bf1220baf46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.24000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf2ee08e-3751-48cc-baf7-42c81a02f91b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1b318ab-ca13-43f3-8bd9-8aed935671cf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:20.16200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":312981,"utime":56,"cutime":0,"cstime":0,"stime":38,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7846355-81ec-4aca-b863-6961f3155061","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.11800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":80.980225,"y":1728.9258,"touch_down_time":313856,"touch_up_time":313931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db27611b-0697-44c8-8649-c99ed9b159ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df7a13cb-c3b1-4ddc-b929-146343e4de99","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.40200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":303959,"on_next_draw_uptime":304221,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e05dc094-ab15-4266-a5c4-9c99e25ad13a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.74700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":544.9768,"y":1676.8945,"touch_down_time":315493,"touch_up_time":315564},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d375e7-59fb-442d-9f24-63fee9481281","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":939,"total_pss":78237,"rss":167528,"native_total_heap":34816,"native_free_heap":5582,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e313c5df-8dfe-4039-b4f6-58dc8c2f0b83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3f4cb4e-4851-450e-b0b0-76051e644e17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.87700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":313946,"end_time":314695,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e455f2de-cfd2-4838-8aff-5d8203885ff7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e84d6bce-5dc4-4da6-aa50-b16ef2330028","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f05f7df1-f400-4366-80d0-45df9559347a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.69700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5814322-b66c-4919-ab73-0a88d3c557af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:15.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":1467,"total_pss":76551,"rss":165848,"native_total_heap":34816,"native_free_heap":5676,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f8d433a7-c4b1-4bbb-b377-6a690b908718","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.39000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fc9fc8ac-3f79-4b58-b9e9-dc1fa7a74e0e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.67400000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304338,"end_time":305492,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"252","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/4","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff5b7f74-29e1-437a-8d8c-0611cfd12294","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.56900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":304224,"end_time":304388,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"420","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 08:54:11 GMT","etag":"\"1230862227/70d6bc70-1684-11ef-aff2-28edaf86ebce\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/122","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"012c5a9c-0c67-45f2-aece-ecc508bc6f4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.27400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07ec6e95-20a7-424f-9866-728c5feb9c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e1cd8bf-9456-4555-bc7f-7d48ce3c6708","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.33200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304032,"end_time":305151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"251","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2747a398-225e-4ca9-af69-3f35d71043c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.38200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"289005a1-e179-4f99-a650-15b87346be5b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":2256,"total_pss":75783,"rss":164720,"native_total_heap":32768,"native_free_heap":3850,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3244cac5-9dbf-42dd-98d4-b4a0de6a93cb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.34900000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":336.97266,"y":1676.8945,"touch_down_time":315086,"touch_up_time":315165},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33328ab0-b68d-4033-9e18-52f8551db961","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33baa990-87ee-4398-8a89-ec99f59215b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.45000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"359c4020-def4-4f99-bdd7-175ece300ca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.55600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304235,"end_time":304375,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2425","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38da200f-cf47-461b-93f0-88e4d633b74b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e7bba15-0947-4439-a8ec-99bc87193032","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.29500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"40dea0eb-2d74-49c9-b411-566c5e107494","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a758de7-a94e-40c5-af2e-ed26d43b0e46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.50900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304053,"end_time":304328,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2424","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f5f1a37-3952-4b7d-8147-8920bd176aaf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"550c5a37-4e86-41e8-a81a-ec2a369cfc9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56ea5db8-0168-45e7-9d9f-bb1ca23a31db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"588e0674-7008-4e94-9a4d-8a739a6119dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a42a47d-0a49-452e-92eb-e0d7b51c42a6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":306976,"utime":47,"cutime":0,"cstime":0,"stime":33,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a6cbd-4a83-4fd2-a305-2db08c830780","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70206dac-6eab-4d76-b118-cd145a21d9e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a38870-bc9e-4874-9067-8b096c7efd96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":302,"total_pss":79461,"rss":170260,"native_total_heap":34816,"native_free_heap":4794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75c7a06c-a6bb-41af-8797-816b31073c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.60100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":314074,"end_time":314420,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12083","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/746","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7816de3e-ea57-41ed-9fc6-ec38a8997f61","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":304064,"end_time":304087,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"4405","content-type":"multipart/form-data; boundary=13467950-89a1-4da9-a8eb-8010b037cd50","host":"10.0.2.2:8080","msr-req-id":"01685d51-71b9-4482-9668-8b2e5ae8f8dd","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7db550d4-860f-467e-982c-8db6bc4bc0d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e40c84c-df16-423f-9ba8-3b3902e30935","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":902,"total_pss":78262,"rss":167544,"native_total_heap":34816,"native_free_heap":5577,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"834b47bf-3c27-4cb8-a075-2b2dcf633705","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":309977,"utime":53,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad8b23a-7030-42c4-8115-e97312180506","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.00000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":305614,"end_time":306819,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Massena%2C_Iowa","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:14 GMT","etag":"W/\"1207123788/a3045060-14c0-11ef-ad39-9fc638d86320\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Massena, Iowa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1928585\",\"titles\":{\"canonical\":\"Massena,_Iowa\",\"normalized\":\"Massena, Iowa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\"},\"pageid\":112848,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/EastMain.jpg/320px-EastMain.jpg\",\"width\":320,\"height\":137},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2d/EastMain.jpg\",\"width\":504,\"height\":216},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1207123788\",\"tid\":\"2d7e5df5-cada-11ee-a8bf-15ff9d24e458\",\"timestamp\":\"2024-02-14T01:41:31Z\",\"description\":\"City in Iowa, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":41.25388889,\"lon\":-94.76888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Massena%2C_Iowa\",\"edit\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"}},\"extract\":\"Massena is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMassena\u003c/b\u003e is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17ff16-9751-4753-b450-67889a4da1ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.99600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":304696,"end_time":304815,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"137","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49974","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/78","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2537fb2-6e86-4c76-a709-a4b0846e674c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.43500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"afad7ba4-f963-409f-a88f-dfff38f903f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.56800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":314073,"end_time":314387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"84504","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/559","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b05a4425-8468-4b46-9d28-8bcd81775c33","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ca69b6cf-0b35-48d4-8213-09b592a541a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc31ed96-00a6-42a0-98e9-a1e8371ab4fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.37500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccb8d339-4e4e-4789-8e27-0bf1220baf46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.24000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf2ee08e-3751-48cc-baf7-42c81a02f91b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1b318ab-ca13-43f3-8bd9-8aed935671cf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:20.16200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":312981,"utime":56,"cutime":0,"cstime":0,"stime":38,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7846355-81ec-4aca-b863-6961f3155061","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.11800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":80.980225,"y":1728.9258,"touch_down_time":313856,"touch_up_time":313931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db27611b-0697-44c8-8649-c99ed9b159ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df7a13cb-c3b1-4ddc-b929-146343e4de99","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.40200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":303959,"on_next_draw_uptime":304221,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e05dc094-ab15-4266-a5c4-9c99e25ad13a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.74700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":544.9768,"y":1676.8945,"touch_down_time":315493,"touch_up_time":315564},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d375e7-59fb-442d-9f24-63fee9481281","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":939,"total_pss":78237,"rss":167528,"native_total_heap":34816,"native_free_heap":5582,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e313c5df-8dfe-4039-b4f6-58dc8c2f0b83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3f4cb4e-4851-450e-b0b0-76051e644e17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.87700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":313946,"end_time":314695,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e455f2de-cfd2-4838-8aff-5d8203885ff7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e84d6bce-5dc4-4da6-aa50-b16ef2330028","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f05f7df1-f400-4366-80d0-45df9559347a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.69700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5814322-b66c-4919-ab73-0a88d3c557af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:15.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":1467,"total_pss":76551,"rss":165848,"native_total_heap":34816,"native_free_heap":5676,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f8d433a7-c4b1-4bbb-b377-6a690b908718","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.39000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fc9fc8ac-3f79-4b58-b9e9-dc1fa7a74e0e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.67400000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304338,"end_time":305492,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"252","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/4","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff5b7f74-29e1-437a-8d8c-0611cfd12294","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.56900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":304224,"end_time":304388,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"420","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 08:54:11 GMT","etag":"\"1230862227/70d6bc70-1684-11ef-aff2-28edaf86ebce\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/122","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json index 678e38825..4f1b26ea1 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json @@ -1 +1 @@ -[{"id":"021c78a8-54be-4887-a8bc-e8e056de741c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09369d2e-543e-403c-a1ad-9a2942d8b697","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.57700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17f4f4b3-abd6-42ad-a0c0-2a5f5c610ddc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.59200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":383408,"end_time":383411,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1cf1e130-a2f4-4c49-bebf-c5f4de68926e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2e03656f-8817-419b-a1ab-0e6724a696a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.56900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":382083,"end_time":382388,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"689","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35abdb5f-3c5d-440c-a4b4-e3a73e709202","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.42700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":384201,"end_time":384246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36513","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20462","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38267275-ee4c-4915-9453-7cdcb9d0e3cc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44b13ad4-6047-4730-8d32-84e85642510f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.58700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45ccce41-bf77-4bcf-b9d8-cd648210feed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.77500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg","method":"get","status_code":200,"start_time":384545,"end_time":384593,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71198","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021_election_08.jpg","content-length":"172710","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:53 GMT","etag":"9f85592a6f70ba00169b82571c7ad580","last-modified":"Sun, 24 Jul 2022 21:43:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/149","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4953ffee-c1d9-4283-88a5-d39908f8321d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.38000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":384151,"end_time":384199,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39531","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21533","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a678663-d6bc-4960-a00c-2fdb97e295d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f6b3fef-af65-4a7c-a473-17773a1fb6de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:27.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20388,"java_free_heap":6112,"total_pss":175258,"rss":260816,"native_total_heap":95744,"native_free_heap":11953,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58228c25-0bf9-4fd2-bb87-bffb481cc6d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.82200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","method":"get","status_code":200,"start_time":384595,"end_time":384641,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71194","content-disposition":"inline;filename*=UTF-8''37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","content-length":"59498","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:57 GMT","etag":"8fbc29e838582f86013c3bb99bfa98fb","last-modified":"Sun, 01 Oct 2023 21:56:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/142","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"59c5d114-8876-4852-92b0-61977462a286","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.92700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg","method":"get","status_code":200,"start_time":384698,"end_time":384746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69643","content-disposition":"inline;filename*=UTF-8''Khamenei_meets_with_Bashar_al-Assad_C.jpeg","content-length":"183199","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:41:49 GMT","etag":"be9bd7ad0fe2ee9176b33cf1ee997f73","last-modified":"Sun, 15 May 2022 07:37:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/230","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e66d874-4e87-4d63-b99b-e699a57199b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.53400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f8664c6-7d68-4b96-a648-7cc239b6ac9d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.52100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":384294,"end_time":384340,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"94831aec963f5737c3fce1ef362eb359","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21208","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.png","content-length":"3943","content-type":"image/png","date":"Mon, 20 May 2024 03:09:03 GMT","etag":"ffc3424f49b0e3719c6bdab8911739e4","last-modified":"Fri, 17 May 2024 23:49:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17089","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60f47dc2-c1fd-47ac-beba-123c9f6dc2d0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.28000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":384052,"end_time":384099,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45527","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21420","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66cc3759-6e3b-45dd-88f6-931f8f4661ee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1417","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69b683b2-d5bc-48fd-9dbc-86a21eea0f28","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","method":"get","status_code":200,"start_time":384441,"end_time":384494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71215","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","content-length":"161893","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:36 GMT","etag":"7cddc5e07bdeda497e95993a27c1bed2","last-modified":"Sat, 29 May 2021 10:29:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/216","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c6b0bc8-cc92-403c-8b88-c49eb735a656","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.61900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png","method":"get","status_code":200,"start_time":384392,"end_time":384438,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"17469","content-disposition":"inline;filename*=UTF-8''Emblem_of_Iran.svg.png","content-length":"15112","content-type":"image/png","date":"Mon, 20 May 2024 04:11:22 GMT","etag":"03ef3337400297b9c49b1d332ada6aff","last-modified":"Fri, 01 Mar 2024 18:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1949","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6cb0b8f7-1e27-4178-9601-aa3c2a2c426b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80a01493-c336-4de2-8d26-35ed87eebc24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":4775,"total_pss":160935,"rss":246696,"native_total_heap":95744,"native_free_heap":11151,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"81450e33-e1ed-42ea-8dc7-61515577a5d5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.72400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","method":"get","status_code":200,"start_time":384497,"end_time":384543,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71203","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","content-length":"67232","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:50 GMT","etag":"277934ed937d3ec33cd1e83b487ffab0","last-modified":"Fri, 19 May 2017 00:15:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/241","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"5vw8pmxm7i4oqy3i0lpg3f3jokegv2v"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84e52641-f8be-4e0d-9660-b911831759ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"853f51e3-361c-4d72-8b27-28c1776e7b12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"87ce5df1-2829-44ae-84bf-fa5e5a0f4fed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.20800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","method":"get","status_code":200,"start_time":383537,"end_time":384027,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:31 GMT","etag":"W/\"1224761876/a536db88-1687-11ef-813f-0a7819745525\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224761876\",\"tid\":\"a536db88-1687-11ef-813f-0a7819745525\",\"items\":[{\"title\":\"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Ebrahim_Raisi_signature.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/128px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/192px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi_in_2021-02_(cropped).jpg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/320px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Emblem_of_Iran.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"leadImage\":false,\"section_id\":6,\"type\":\"image\",\"caption\":{\"html\":\"Raisi in the 1980s\",\"text\":\"Raisi in the 1980s\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/640px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_presidential_campaign_rally_in_Tehran,_29_April_2017_23.jpg\",\"leadImage\":false,\"section_id\":10,\"type\":\"image\",\"caption\":{\"html\":\"Raisi speaking at a presidential campaign rally, 2017\",\"text\":\"Raisi speaking at a presidential campaign rally, 2017\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Raisi_in_2021_election_08.jpg\",\"leadImage\":false,\"section_id\":12,\"type\":\"image\",\"caption\":{\"html\":\"Raisi casting his ballot in the 2021 presidential election\",\"text\":\"Raisi casting his ballot in the 2021 presidential election\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/640px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:37-(Provincial_trips_of_the_president)-سفرهای_استانی_رئیس_جمهور-_قزوین.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\",\"text\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi and other leaders at the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Shanghai_Cooperation_Organisation\\\" title=\\\"Shanghai Cooperation Organisation\\\" id=\\\"mwAZM\\\"\u003eShanghai Cooperation Organisation\u003c/a\u003e summit on 16 September 2022\",\"text\":\"Raisi and other leaders at the Shanghai Cooperation Organisation summit on 16 September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/640px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/960px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Khamenei, Assad and Raisi, May 2022\",\"text\":\"Khamenei, Assad and Raisi, May 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/640px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/960px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"2x\"}]},{\"title\":\"File:Three_leaders_(2022-07-19).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Russian president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Vladimir_Putin\\\" title=\\\"Vladimir Putin\\\" id=\\\"mwAds\\\"\u003eVladimir Putin\u003c/a\u003e and Turkish president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Recep_Tayyip_Erdoğan\\\" title=\\\"Recep Tayyip Erdoğan\\\" id=\\\"mwAdw\\\"\u003eRecep Tayyip Erdoğan\u003c/a\u003e at the Iran–Russia–Turkey summit in Tehran, July 2022\",\"text\":\"Raisi with Russian president Vladimir Putin and Turkish president Recep Tayyip Erdoğan at the Iran–Russia–Turkey summit in Tehran, July 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/640px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/960px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_(2).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Japanese Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Fumio_Kishida\\\" title=\\\"Fumio Kishida\\\" id=\\\"mwAgU\\\"\u003eFumio Kishida\u003c/a\u003e, September 2022\",\"text\":\"Raisi with Japanese Prime Minister Fumio Kishida, September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/640px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/960px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi-Xi_meeting_(2023-02-14).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Chinese president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Xi_Jinping\\\" title=\\\"Xi Jinping\\\" id=\\\"mwAgo\\\"\u003eXi Jinping\u003c/a\u003e in Beijing, during Raisi's state visit to China, February 2023\",\"text\":\"Raisi with Chinese president Xi Jinping in Beijing, during Raisi's state visit to China, February 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran,_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg,_in_South_Africa_on_August_24,_2023_(2).jpg\",\"leadImage\":false,\"section_id\":16,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Indian Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Narendra_Modi\\\" title=\\\"Narendra Modi\\\" id=\\\"mwAmg\\\"\u003eNarendra Modi\u003c/a\u003e during the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./15th_BRICS_summit\\\" title=\\\"15th BRICS summit\\\" id=\\\"mwAmk\\\"\u003e15th BRICS summit\u003c/a\u003e in Johannesburg, South Africa, 24 August 2023\",\"text\":\"Raisi with Indian Prime Minister Narendra Modi during the 15th BRICS summit in Johannesburg, South Africa, 24 August 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/640px-thumbnail.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/960px-thumbnail.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"leadImage\":false,\"section_id\":21,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ilham_Aliyev\\\" title=\\\"Ilham Aliyev\\\" id=\\\"mwArQ\\\"\u003eIlham Aliyev\u003c/a\u003e at the border with Azerbaijan on 19 May 2024, hours before his death\",\"text\":\"Raisi with Ilham Aliyev at the border with Azerbaijan on 19 May 2024, hours before his death\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/640px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/960px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa186f4-ac25-4709-a9b0-d7f4c2cb75eb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.32900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":384102,"end_time":384148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38622","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11212","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"973fd965-02f1-47d0-82d9-027b21dc1099","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":3804,"total_pss":145998,"rss":232864,"native_total_heap":95744,"native_free_heap":14920,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99635b43-f7ff-4900-98d8-743047e88510","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b2b0d2d-2c7b-4e54-9d5e-510d8fbd8c93","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a577f80f-4f96-4f75-9768-872fab94ba7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.76700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383538,"end_time":383586,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"10","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7530431-27b6-4282-9e41-683106e984a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.57200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":384344,"end_time":384391,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"48942","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021-02_%28cropped%29.jpg","content-length":"49899","content-type":"image/jpeg","date":"Sun, 19 May 2024 19:26:49 GMT","etag":"47f76dad0be9bdc2d133716968f7005b","last-modified":"Fri, 22 Apr 2022 03:16:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a9b4d180-3fca-40cb-b677-e18333092f74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":381976,"utime":801,"cutime":0,"cstime":0,"stime":750,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab43b166-d815-44e5-a4f8-0931913f8361","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.71400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383479,"end_time":383533,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"8","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aea34879-1b49-4223-ab87-19e3c9195c3c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b663565c-965f-4041-aa40-d0c4c9df9653","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.30400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_save","width":216,"height":189,"x":165.98145,"y":1733.9062,"touch_down_time":381003,"touch_up_time":381119},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b6dc2522-0bdf-44e6-841f-950a3662e61d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba2c8ffd-7dc0-4c86-b11a-dc22116cc8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0917667-9d2d-4e7f-82bf-0f8c4871dd31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.97800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg","method":"get","status_code":200,"start_time":384747,"end_time":384797,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"67278","content-disposition":"inline;filename*=UTF-8''Three_leaders_%282022-07-19%29.jpg","content-length":"230877","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:21:13 GMT","etag":"91dd534ecb00b59016e621eeba084357","last-modified":"Wed, 11 Oct 2023 09:48:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/206","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf79aee0-6463-40ad-8a6e-1cea2314db65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.60100000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":383334,"on_next_draw_uptime":383420,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d06bf33d-7b11-4c86-bcd5-166ea18517f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.47300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":304,"start_time":384249,"end_time":384292,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"0b13c7dd73094c814c22e7730ab6cac2","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9410","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/246","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7d9fd34-3d2b-49c2-9d13-5926de6c4db6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d92430-b57e-4e3a-af70-7675d8d1c555","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.87700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","method":"get","status_code":200,"start_time":384643,"end_time":384696,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62780","content-disposition":"inline;filename*=UTF-8''Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","content-length":"216176","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:11 GMT","etag":"d4494b80147cf7edea8532b993d60e14","last-modified":"Sun, 05 Feb 2023 00:50:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/170","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3cf04ff-b4d9-43c8-9d6e-2ea0f27b3835","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1769","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ef7b3982-142a-42ca-b292-13cf4f758ebc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":383347,"utime":808,"cutime":0,"cstime":0,"stime":751,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f08dd3f0-e669-4516-bf31-706f9193a572","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":383714,"end_time":383764,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"216","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/110","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6b5ace3-254e-4c51-836a-16fa788fb7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6f2e76f-a189-4869-9f13-e68ff368b283","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.64800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Ebrahim_Raisi","method":"get","status_code":200,"start_time":381130,"end_time":381466,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"765","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-drrqp","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Ebrahim_Raisi\",\"to\":\"Ebrahim Raisi\"}],\"pages\":[{\"pageid\":49679283,\"ns\":0,\"title\":\"Ebrahim Raisi\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T09:02:12Z\",\"lastrevid\":1224761876,\"length\":116131,\"displaytitle\":\"Ebrahim Raisi\",\"varianttitles\":{\"en\":\"Ebrahim Raisi\"},\"description\":\"8th President of Iran from 2021 to 2024\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"pageimage\":\"Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf8e585-8f99-4dd8-92fc-5b9b0547e0f5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.51400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff80c9cc-4f59-49a3-a778-11d545a8e258","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"021c78a8-54be-4887-a8bc-e8e056de741c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09369d2e-543e-403c-a1ad-9a2942d8b697","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.57700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17f4f4b3-abd6-42ad-a0c0-2a5f5c610ddc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.59200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":383408,"end_time":383411,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1cf1e130-a2f4-4c49-bebf-c5f4de68926e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2e03656f-8817-419b-a1ab-0e6724a696a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.56900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":382083,"end_time":382388,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"689","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35abdb5f-3c5d-440c-a4b4-e3a73e709202","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.42700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":384201,"end_time":384246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36513","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20462","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38267275-ee4c-4915-9453-7cdcb9d0e3cc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44b13ad4-6047-4730-8d32-84e85642510f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.58700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45ccce41-bf77-4bcf-b9d8-cd648210feed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.77500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg","method":"get","status_code":200,"start_time":384545,"end_time":384593,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71198","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021_election_08.jpg","content-length":"172710","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:53 GMT","etag":"9f85592a6f70ba00169b82571c7ad580","last-modified":"Sun, 24 Jul 2022 21:43:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/149","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4953ffee-c1d9-4283-88a5-d39908f8321d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.38000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":384151,"end_time":384199,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39531","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21533","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a678663-d6bc-4960-a00c-2fdb97e295d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f6b3fef-af65-4a7c-a473-17773a1fb6de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:27.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20388,"java_free_heap":6112,"total_pss":175258,"rss":260816,"native_total_heap":95744,"native_free_heap":11953,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58228c25-0bf9-4fd2-bb87-bffb481cc6d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.82200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","method":"get","status_code":200,"start_time":384595,"end_time":384641,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71194","content-disposition":"inline;filename*=UTF-8''37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","content-length":"59498","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:57 GMT","etag":"8fbc29e838582f86013c3bb99bfa98fb","last-modified":"Sun, 01 Oct 2023 21:56:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/142","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"59c5d114-8876-4852-92b0-61977462a286","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.92700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg","method":"get","status_code":200,"start_time":384698,"end_time":384746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69643","content-disposition":"inline;filename*=UTF-8''Khamenei_meets_with_Bashar_al-Assad_C.jpeg","content-length":"183199","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:41:49 GMT","etag":"be9bd7ad0fe2ee9176b33cf1ee997f73","last-modified":"Sun, 15 May 2022 07:37:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/230","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e66d874-4e87-4d63-b99b-e699a57199b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.53400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f8664c6-7d68-4b96-a648-7cc239b6ac9d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.52100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":384294,"end_time":384340,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"94831aec963f5737c3fce1ef362eb359","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21208","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.png","content-length":"3943","content-type":"image/png","date":"Mon, 20 May 2024 03:09:03 GMT","etag":"ffc3424f49b0e3719c6bdab8911739e4","last-modified":"Fri, 17 May 2024 23:49:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17089","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60f47dc2-c1fd-47ac-beba-123c9f6dc2d0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.28000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":384052,"end_time":384099,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45527","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21420","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66cc3759-6e3b-45dd-88f6-931f8f4661ee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1417","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69b683b2-d5bc-48fd-9dbc-86a21eea0f28","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","method":"get","status_code":200,"start_time":384441,"end_time":384494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71215","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","content-length":"161893","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:36 GMT","etag":"7cddc5e07bdeda497e95993a27c1bed2","last-modified":"Sat, 29 May 2021 10:29:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/216","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c6b0bc8-cc92-403c-8b88-c49eb735a656","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.61900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png","method":"get","status_code":200,"start_time":384392,"end_time":384438,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"17469","content-disposition":"inline;filename*=UTF-8''Emblem_of_Iran.svg.png","content-length":"15112","content-type":"image/png","date":"Mon, 20 May 2024 04:11:22 GMT","etag":"03ef3337400297b9c49b1d332ada6aff","last-modified":"Fri, 01 Mar 2024 18:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1949","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6cb0b8f7-1e27-4178-9601-aa3c2a2c426b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80a01493-c336-4de2-8d26-35ed87eebc24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":4775,"total_pss":160935,"rss":246696,"native_total_heap":95744,"native_free_heap":11151,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"81450e33-e1ed-42ea-8dc7-61515577a5d5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.72400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","method":"get","status_code":200,"start_time":384497,"end_time":384543,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71203","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","content-length":"67232","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:50 GMT","etag":"277934ed937d3ec33cd1e83b487ffab0","last-modified":"Fri, 19 May 2017 00:15:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/241","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"5vw8pmxm7i4oqy3i0lpg3f3jokegv2v"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84e52641-f8be-4e0d-9660-b911831759ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"853f51e3-361c-4d72-8b27-28c1776e7b12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"87ce5df1-2829-44ae-84bf-fa5e5a0f4fed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.20800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","method":"get","status_code":200,"start_time":383537,"end_time":384027,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:31 GMT","etag":"W/\"1224761876/a536db88-1687-11ef-813f-0a7819745525\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224761876\",\"tid\":\"a536db88-1687-11ef-813f-0a7819745525\",\"items\":[{\"title\":\"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Ebrahim_Raisi_signature.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/128px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/192px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi_in_2021-02_(cropped).jpg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/320px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Emblem_of_Iran.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"leadImage\":false,\"section_id\":6,\"type\":\"image\",\"caption\":{\"html\":\"Raisi in the 1980s\",\"text\":\"Raisi in the 1980s\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/640px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_presidential_campaign_rally_in_Tehran,_29_April_2017_23.jpg\",\"leadImage\":false,\"section_id\":10,\"type\":\"image\",\"caption\":{\"html\":\"Raisi speaking at a presidential campaign rally, 2017\",\"text\":\"Raisi speaking at a presidential campaign rally, 2017\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Raisi_in_2021_election_08.jpg\",\"leadImage\":false,\"section_id\":12,\"type\":\"image\",\"caption\":{\"html\":\"Raisi casting his ballot in the 2021 presidential election\",\"text\":\"Raisi casting his ballot in the 2021 presidential election\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/640px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:37-(Provincial_trips_of_the_president)-سفرهای_استانی_رئیس_جمهور-_قزوین.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\",\"text\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi and other leaders at the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Shanghai_Cooperation_Organisation\\\" title=\\\"Shanghai Cooperation Organisation\\\" id=\\\"mwAZM\\\"\u003eShanghai Cooperation Organisation\u003c/a\u003e summit on 16 September 2022\",\"text\":\"Raisi and other leaders at the Shanghai Cooperation Organisation summit on 16 September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/640px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/960px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Khamenei, Assad and Raisi, May 2022\",\"text\":\"Khamenei, Assad and Raisi, May 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/640px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/960px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"2x\"}]},{\"title\":\"File:Three_leaders_(2022-07-19).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Russian president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Vladimir_Putin\\\" title=\\\"Vladimir Putin\\\" id=\\\"mwAds\\\"\u003eVladimir Putin\u003c/a\u003e and Turkish president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Recep_Tayyip_Erdoğan\\\" title=\\\"Recep Tayyip Erdoğan\\\" id=\\\"mwAdw\\\"\u003eRecep Tayyip Erdoğan\u003c/a\u003e at the Iran–Russia–Turkey summit in Tehran, July 2022\",\"text\":\"Raisi with Russian president Vladimir Putin and Turkish president Recep Tayyip Erdoğan at the Iran–Russia–Turkey summit in Tehran, July 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/640px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/960px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_(2).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Japanese Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Fumio_Kishida\\\" title=\\\"Fumio Kishida\\\" id=\\\"mwAgU\\\"\u003eFumio Kishida\u003c/a\u003e, September 2022\",\"text\":\"Raisi with Japanese Prime Minister Fumio Kishida, September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/640px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/960px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi-Xi_meeting_(2023-02-14).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Chinese president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Xi_Jinping\\\" title=\\\"Xi Jinping\\\" id=\\\"mwAgo\\\"\u003eXi Jinping\u003c/a\u003e in Beijing, during Raisi's state visit to China, February 2023\",\"text\":\"Raisi with Chinese president Xi Jinping in Beijing, during Raisi's state visit to China, February 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran,_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg,_in_South_Africa_on_August_24,_2023_(2).jpg\",\"leadImage\":false,\"section_id\":16,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Indian Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Narendra_Modi\\\" title=\\\"Narendra Modi\\\" id=\\\"mwAmg\\\"\u003eNarendra Modi\u003c/a\u003e during the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./15th_BRICS_summit\\\" title=\\\"15th BRICS summit\\\" id=\\\"mwAmk\\\"\u003e15th BRICS summit\u003c/a\u003e in Johannesburg, South Africa, 24 August 2023\",\"text\":\"Raisi with Indian Prime Minister Narendra Modi during the 15th BRICS summit in Johannesburg, South Africa, 24 August 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/640px-thumbnail.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/960px-thumbnail.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"leadImage\":false,\"section_id\":21,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ilham_Aliyev\\\" title=\\\"Ilham Aliyev\\\" id=\\\"mwArQ\\\"\u003eIlham Aliyev\u003c/a\u003e at the border with Azerbaijan on 19 May 2024, hours before his death\",\"text\":\"Raisi with Ilham Aliyev at the border with Azerbaijan on 19 May 2024, hours before his death\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/640px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/960px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa186f4-ac25-4709-a9b0-d7f4c2cb75eb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.32900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":384102,"end_time":384148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38622","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11212","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"973fd965-02f1-47d0-82d9-027b21dc1099","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":3804,"total_pss":145998,"rss":232864,"native_total_heap":95744,"native_free_heap":14920,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99635b43-f7ff-4900-98d8-743047e88510","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b2b0d2d-2c7b-4e54-9d5e-510d8fbd8c93","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a577f80f-4f96-4f75-9768-872fab94ba7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.76700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383538,"end_time":383586,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"10","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7530431-27b6-4282-9e41-683106e984a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.57200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":384344,"end_time":384391,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"48942","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021-02_%28cropped%29.jpg","content-length":"49899","content-type":"image/jpeg","date":"Sun, 19 May 2024 19:26:49 GMT","etag":"47f76dad0be9bdc2d133716968f7005b","last-modified":"Fri, 22 Apr 2022 03:16:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a9b4d180-3fca-40cb-b677-e18333092f74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":381976,"utime":801,"cutime":0,"cstime":0,"stime":750,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab43b166-d815-44e5-a4f8-0931913f8361","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.71400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383479,"end_time":383533,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"8","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aea34879-1b49-4223-ab87-19e3c9195c3c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b663565c-965f-4041-aa40-d0c4c9df9653","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.30400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_save","width":216,"height":189,"x":165.98145,"y":1733.9062,"touch_down_time":381003,"touch_up_time":381119},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b6dc2522-0bdf-44e6-841f-950a3662e61d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba2c8ffd-7dc0-4c86-b11a-dc22116cc8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0917667-9d2d-4e7f-82bf-0f8c4871dd31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.97800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg","method":"get","status_code":200,"start_time":384747,"end_time":384797,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"67278","content-disposition":"inline;filename*=UTF-8''Three_leaders_%282022-07-19%29.jpg","content-length":"230877","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:21:13 GMT","etag":"91dd534ecb00b59016e621eeba084357","last-modified":"Wed, 11 Oct 2023 09:48:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/206","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf79aee0-6463-40ad-8a6e-1cea2314db65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.60100000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":383334,"on_next_draw_uptime":383420,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d06bf33d-7b11-4c86-bcd5-166ea18517f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.47300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":304,"start_time":384249,"end_time":384292,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"0b13c7dd73094c814c22e7730ab6cac2","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9410","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/246","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7d9fd34-3d2b-49c2-9d13-5926de6c4db6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d92430-b57e-4e3a-af70-7675d8d1c555","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.87700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","method":"get","status_code":200,"start_time":384643,"end_time":384696,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62780","content-disposition":"inline;filename*=UTF-8''Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","content-length":"216176","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:11 GMT","etag":"d4494b80147cf7edea8532b993d60e14","last-modified":"Sun, 05 Feb 2023 00:50:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/170","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3cf04ff-b4d9-43c8-9d6e-2ea0f27b3835","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1769","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ef7b3982-142a-42ca-b292-13cf4f758ebc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":383347,"utime":808,"cutime":0,"cstime":0,"stime":751,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f08dd3f0-e669-4516-bf31-706f9193a572","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":383714,"end_time":383764,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"216","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/110","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6b5ace3-254e-4c51-836a-16fa788fb7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6f2e76f-a189-4869-9f13-e68ff368b283","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.64800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Ebrahim_Raisi","method":"get","status_code":200,"start_time":381130,"end_time":381466,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"765","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-drrqp","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Ebrahim_Raisi\",\"to\":\"Ebrahim Raisi\"}],\"pages\":[{\"pageid\":49679283,\"ns\":0,\"title\":\"Ebrahim Raisi\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T09:02:12Z\",\"lastrevid\":1224761876,\"length\":116131,\"displaytitle\":\"Ebrahim Raisi\",\"varianttitles\":{\"en\":\"Ebrahim Raisi\"},\"description\":\"8th President of Iran from 2021 to 2024\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"pageimage\":\"Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf8e585-8f99-4dd8-92fc-5b9b0547e0f5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.51400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff80c9cc-4f59-49a3-a778-11d545a8e258","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json index db2e92b7f..458d50626 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json @@ -1 +1 @@ -[{"id":"05309710-52b8-47b9-b6ec-9bd1b8fce852","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.23200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":334742,"end_time":335051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"680","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07b299dc-14a9-40d4-9a93-36052a1f6cd0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.72300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":331214,"end_time":331542,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1099","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"082c90c4-02c9-4f8d-b0a1-42457d8c0cc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.99400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","method":"get","status_code":200,"start_time":334765,"end_time":334813,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1560","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"567","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 08:35:43 GMT","etag":"W/\"1223300368/d478ad20-1683-11ef-9910-f760628c90d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2026","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/15","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"mainpage\",\"title\":\"Main Page\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5296\",\"titles\":{\"canonical\":\"Main_Page\",\"normalized\":\"Main Page\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\"},\"pageid\":15580374,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg\",\"width\":320,\"height\":340},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/94/City_Building_Champaign_Illinois_from_west.jpg\",\"width\":1978,\"height\":2101},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223300368\",\"tid\":\"145d41bc-0f57-11ef-a9c9-a032e13c4746\",\"timestamp\":\"2024-05-11T05:26:55Z\",\"description\":\"Main page of the English Wikipedia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.wikipedia.org/wiki/Main_Page?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Main_Page\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Main_Page\",\"edit\":\"https://en.m.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Main_Page\"}},\"extract\":\"\",\"extract_html\":\"\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d36c64b-a7c5-449e-ac25-6962713bd1c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.21600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"121cd5c8-6a5f-4293-a1b1-e8e407c8b732","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14fcd973-0fe2-408d-aefd-b9bb9357e054","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.content.styles.images\u0026image=a.external%2C+.mw-parser-output+a.external\u0026variant=reference\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=1p40b","method":"get","status_code":200,"start_time":335142,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''a.external%2C%20.mw-parser-output%20a.external.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:01:45 GMT","etag":"W/\"1p40b\"","expires":"Wed, 19 Jun 2024 06:01:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/197658","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1910ea56-4b63-4e09-b199-118043db659b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.31900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329870,"end_time":330138,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1456","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ea7aaa2-77ea-4da9-afaa-6d1af2a3b93b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=site.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334945,"end_time":335006,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"611","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:45 GMT","etag":"W/\"1azmd\"","expires":"Mon, 20 May 2024 09:02:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/9073","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21960b02-421a-48c6-b4e0-c49e09151aa0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f55694b-7282-4793-8c98-746e84514c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":330976,"utime":283,"cutime":0,"cstime":0,"stime":208,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"335f06ac-bb17-4f33-843a-0cbe282fe868","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36572a0d-1cac-47c5-ad10-3ca060a88288","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52000000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg","method":"get","status_code":200,"start_time":335006,"end_time":335339,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"52463","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"2604","content-type":"image/svg+xml","date":"Sun, 19 May 2024 18:27:19 GMT","etag":"W/\"181a-617c8293c9c40\"","expires":"Mon, 19 May 2025 18:27:18 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/924609","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fa941f6-efd9-403f-874b-b0168c1b23e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=home\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335246,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''home.svg","content-encoding":"gzip","content-length":"222","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:18:11 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:18:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/115579","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42aad87c-be8f-4874-a889-113cb0e26041","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.17600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334939,"end_time":334995,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"15016","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:32 GMT","etag":"W/\"orl5c\"","expires":"Mon, 20 May 2024 08:57:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/267","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45f8ff68-ddf9-43fd-bae0-3307bf96c764","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":333976,"utime":302,"cutime":0,"cstime":0,"stime":240,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"563e2b19-73fb-4416-83c4-ae19bf77292f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.37100000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":153.98438,"touch_down_time":331101,"touch_up_time":331188},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56b79cb3-292f-437e-849d-ec1fbd3c26f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026version=tablv","method":"get","status_code":200,"start_time":335102,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"4803","content-type":"text/javascript; charset=utf-8","date":"Sun, 19 May 2024 22:39:42 GMT","etag":"W/\"tablv\"","expires":"Tue, 18 Jun 2024 22:39:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026sourcemap=1\u0026version=tablv","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/328385","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1f82eb-8381-4d6b-8bcc-f7307939bcd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"602eaceb-b65b-4a98-bd26-ea91cce1a5dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17571,"java_free_heap":5215,"total_pss":141967,"rss":238912,"native_total_heap":73728,"native_free_heap":6892,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6923a082-5baf-484f-9e5b-46ce017f9a1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"73304fef-2c85-4491-8030-fd2cc9bdf2b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.23200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77d1f7bb-edcb-416f-9b4b-ce110d2fcde7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78b60a4b-90bc-4bbc-95a6-29177131d713","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.90700000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":85.98999,"y":144.96094,"touch_down_time":334629,"touch_up_time":334721},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa8bdfd-150c-4c4f-a102-694ab7d92ff5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17420,"java_free_heap":5018,"total_pss":140499,"rss":241152,"native_total_heap":70656,"native_free_heap":7082,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b13e025-c385-47f0-b7d8-0cc78e62da7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.40200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a407dce5-1d30-4c85-8ede-0aa1d5f428aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4758f95-d02b-4c9d-b908-9822600f51c7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17585,"java_free_heap":5908,"total_pss":138650,"rss":236184,"native_total_heap":70656,"native_free_heap":7607,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdcc50f-e9d5-473a-a43e-5728da349458","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3c126cb-3fe8-44b4-889f-674a035f01c2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330241,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"714","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b4c7c272-c195-47ec-9c95-60ee43e174a0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=logIn\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335159,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''logIn.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:00:20 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:00:20 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/201325","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b94073ae-5791-4c48-86e7-a1d854ba640d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=search\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335151,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''search.svg","content-encoding":"gzip","content-length":"220","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:02:32 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 07:02:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/132479","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bbace32b-c315-4859-9989-e8043efd0cd1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.39400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":329933,"end_time":330213,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:30 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c47237ee-8496-42c6-8325-187f84482e0a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c480535c-f9ee-452e-908d-201968fee00f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.12200000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/wiki/Main_Page","method":"get","status_code":200,"start_time":334766,"end_time":334941,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.m.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"2392","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-language":"en","content-length":"25070","content-type":"text/html; charset=UTF-8","date":"Mon, 20 May 2024 08:21:51 GMT","last-modified":"Mon, 20 May 2024 08:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","origin-trial":"AonOP4SwCrqpb0nhZbg554z9iJimP3DxUDB8V4yu9fyyepauGKD0NXqTknWi4gnuDfMG6hNb7TDUDTsl0mDw9gIAAABmeyJvcmlnaW4iOiJodHRwczovL3dpa2lwZWRpYS5vcmc6NDQzIiwiZmVhdHVyZSI6IlRvcExldmVsVHBjZCIsImV4cGlyeSI6MTczNTM0Mzk5OSwiaXNTdWJkb21haW4iOnRydWV9","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2393.codfw.wmnet","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-DP=abd;Path=/;HttpOnly;secure;Expires=Mon, 20 May 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/3507","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c56b2d8d-7f9d-4482-9989-9a880afcc44b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc8b8974-e78a-4293-a34e-0ae4f4257957","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.57000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":862.9651,"y":153.98438,"touch_down_time":330290,"touch_up_time":330386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da31a943-caeb-412d-b66d-a84b077928ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg/242px-thumbnail.jpg","method":"get","status_code":200,"start_time":335052,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"40905","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg.webp","content-length":"18666","content-type":"image/webp","date":"Sun, 19 May 2024 21:39:56 GMT","etag":"318f1f62d392bd01f0c92aefd684c273","last-modified":"Sun, 19 May 2024 21:38:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25077","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da570f0b-4c82-4d7b-8fc5-328e6ca92bf5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.16900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":895.95703,"y":177.94922,"touch_down_time":331879,"touch_up_time":331981},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dcc2a5a5-159f-4c76-aae2-46ced28a0c5a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332344,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"352","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"de315a38-ac75-4f89-8414-b55d8dd9289d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=die\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335247,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''die.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:49:32 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:49:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/147101","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1e99acc-db90-4c71-9d08-fa0472699eee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5249a22-2c90-4c12-8d2e-c482af6e832b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=heart\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335251,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''heart.svg","content-encoding":"gzip","content-length":"230","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:33:00 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:33:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/98414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e60e744a-77f4-4735-b8b3-ec45cc2f80e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e6487deb-1c1e-4235-8394-58153dfa0100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/242px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":335007,"end_time":335340,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32279","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg.webp","content-length":"13362","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:43 GMT","etag":"116366c8c04da3c0d12ec01f8807a2ce","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22901","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7f97e8d-dddc-48e9-af6d-d2a835677ea7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.93200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8e81598-f1c6-48b0-a6e7-b5d1d970fc51","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026raw=1\u0026skin=minerva","method":"get","status_code":200,"start_time":334943,"end_time":335005,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"19691","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 09:01:07 GMT","etag":"W/\"5s31n\"","expires":"Mon, 20 May 2024 09:06:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=5s31n","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1731","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8f4471d-6d28-4b19-86fe-0939cdef277c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb2cbe0a-4a48-436b-80c1-4ed7da7264e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332345,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"edcc401e-299d-4a53-8e31-0f17f1d24aee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg/264px-Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg","method":"get","status_code":200,"start_time":335008,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32236","content-disposition":"inline;filename*=UTF-8''Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg.webp","content-length":"21622","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:27 GMT","etag":"2ffb37c0522c5b4bb8c48a776bcd0499","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/23045","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fffaf829-e771-4c4e-bc90-537097ff3f94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"05309710-52b8-47b9-b6ec-9bd1b8fce852","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.23200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":334742,"end_time":335051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"680","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07b299dc-14a9-40d4-9a93-36052a1f6cd0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.72300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":331214,"end_time":331542,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1099","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"082c90c4-02c9-4f8d-b0a1-42457d8c0cc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.99400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","method":"get","status_code":200,"start_time":334765,"end_time":334813,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1560","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"567","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 08:35:43 GMT","etag":"W/\"1223300368/d478ad20-1683-11ef-9910-f760628c90d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2026","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/15","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"mainpage\",\"title\":\"Main Page\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5296\",\"titles\":{\"canonical\":\"Main_Page\",\"normalized\":\"Main Page\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\"},\"pageid\":15580374,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg\",\"width\":320,\"height\":340},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/94/City_Building_Champaign_Illinois_from_west.jpg\",\"width\":1978,\"height\":2101},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223300368\",\"tid\":\"145d41bc-0f57-11ef-a9c9-a032e13c4746\",\"timestamp\":\"2024-05-11T05:26:55Z\",\"description\":\"Main page of the English Wikipedia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.wikipedia.org/wiki/Main_Page?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Main_Page\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Main_Page\",\"edit\":\"https://en.m.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Main_Page\"}},\"extract\":\"\",\"extract_html\":\"\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d36c64b-a7c5-449e-ac25-6962713bd1c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.21600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"121cd5c8-6a5f-4293-a1b1-e8e407c8b732","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14fcd973-0fe2-408d-aefd-b9bb9357e054","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.content.styles.images\u0026image=a.external%2C+.mw-parser-output+a.external\u0026variant=reference\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=1p40b","method":"get","status_code":200,"start_time":335142,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''a.external%2C%20.mw-parser-output%20a.external.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:01:45 GMT","etag":"W/\"1p40b\"","expires":"Wed, 19 Jun 2024 06:01:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/197658","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1910ea56-4b63-4e09-b199-118043db659b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.31900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329870,"end_time":330138,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1456","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ea7aaa2-77ea-4da9-afaa-6d1af2a3b93b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=site.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334945,"end_time":335006,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"611","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:45 GMT","etag":"W/\"1azmd\"","expires":"Mon, 20 May 2024 09:02:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/9073","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21960b02-421a-48c6-b4e0-c49e09151aa0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f55694b-7282-4793-8c98-746e84514c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":330976,"utime":283,"cutime":0,"cstime":0,"stime":208,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"335f06ac-bb17-4f33-843a-0cbe282fe868","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36572a0d-1cac-47c5-ad10-3ca060a88288","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52000000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg","method":"get","status_code":200,"start_time":335006,"end_time":335339,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"52463","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"2604","content-type":"image/svg+xml","date":"Sun, 19 May 2024 18:27:19 GMT","etag":"W/\"181a-617c8293c9c40\"","expires":"Mon, 19 May 2025 18:27:18 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/924609","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fa941f6-efd9-403f-874b-b0168c1b23e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=home\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335246,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''home.svg","content-encoding":"gzip","content-length":"222","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:18:11 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:18:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/115579","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42aad87c-be8f-4874-a889-113cb0e26041","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.17600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334939,"end_time":334995,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"15016","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:32 GMT","etag":"W/\"orl5c\"","expires":"Mon, 20 May 2024 08:57:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/267","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45f8ff68-ddf9-43fd-bae0-3307bf96c764","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":333976,"utime":302,"cutime":0,"cstime":0,"stime":240,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"563e2b19-73fb-4416-83c4-ae19bf77292f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.37100000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":153.98438,"touch_down_time":331101,"touch_up_time":331188},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56b79cb3-292f-437e-849d-ec1fbd3c26f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026version=tablv","method":"get","status_code":200,"start_time":335102,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"4803","content-type":"text/javascript; charset=utf-8","date":"Sun, 19 May 2024 22:39:42 GMT","etag":"W/\"tablv\"","expires":"Tue, 18 Jun 2024 22:39:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026sourcemap=1\u0026version=tablv","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/328385","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1f82eb-8381-4d6b-8bcc-f7307939bcd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"602eaceb-b65b-4a98-bd26-ea91cce1a5dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17571,"java_free_heap":5215,"total_pss":141967,"rss":238912,"native_total_heap":73728,"native_free_heap":6892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6923a082-5baf-484f-9e5b-46ce017f9a1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"73304fef-2c85-4491-8030-fd2cc9bdf2b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.23200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77d1f7bb-edcb-416f-9b4b-ce110d2fcde7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78b60a4b-90bc-4bbc-95a6-29177131d713","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.90700000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":85.98999,"y":144.96094,"touch_down_time":334629,"touch_up_time":334721},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa8bdfd-150c-4c4f-a102-694ab7d92ff5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17420,"java_free_heap":5018,"total_pss":140499,"rss":241152,"native_total_heap":70656,"native_free_heap":7082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b13e025-c385-47f0-b7d8-0cc78e62da7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.40200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a407dce5-1d30-4c85-8ede-0aa1d5f428aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4758f95-d02b-4c9d-b908-9822600f51c7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17585,"java_free_heap":5908,"total_pss":138650,"rss":236184,"native_total_heap":70656,"native_free_heap":7607,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdcc50f-e9d5-473a-a43e-5728da349458","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3c126cb-3fe8-44b4-889f-674a035f01c2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330241,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"714","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b4c7c272-c195-47ec-9c95-60ee43e174a0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=logIn\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335159,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''logIn.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:00:20 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:00:20 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/201325","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b94073ae-5791-4c48-86e7-a1d854ba640d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=search\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335151,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''search.svg","content-encoding":"gzip","content-length":"220","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:02:32 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 07:02:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/132479","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bbace32b-c315-4859-9989-e8043efd0cd1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.39400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":329933,"end_time":330213,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:30 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c47237ee-8496-42c6-8325-187f84482e0a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c480535c-f9ee-452e-908d-201968fee00f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.12200000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/wiki/Main_Page","method":"get","status_code":200,"start_time":334766,"end_time":334941,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.m.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"2392","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-language":"en","content-length":"25070","content-type":"text/html; charset=UTF-8","date":"Mon, 20 May 2024 08:21:51 GMT","last-modified":"Mon, 20 May 2024 08:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","origin-trial":"AonOP4SwCrqpb0nhZbg554z9iJimP3DxUDB8V4yu9fyyepauGKD0NXqTknWi4gnuDfMG6hNb7TDUDTsl0mDw9gIAAABmeyJvcmlnaW4iOiJodHRwczovL3dpa2lwZWRpYS5vcmc6NDQzIiwiZmVhdHVyZSI6IlRvcExldmVsVHBjZCIsImV4cGlyeSI6MTczNTM0Mzk5OSwiaXNTdWJkb21haW4iOnRydWV9","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2393.codfw.wmnet","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-DP=abd;Path=/;HttpOnly;secure;Expires=Mon, 20 May 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/3507","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c56b2d8d-7f9d-4482-9989-9a880afcc44b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc8b8974-e78a-4293-a34e-0ae4f4257957","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.57000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":862.9651,"y":153.98438,"touch_down_time":330290,"touch_up_time":330386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da31a943-caeb-412d-b66d-a84b077928ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg/242px-thumbnail.jpg","method":"get","status_code":200,"start_time":335052,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"40905","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg.webp","content-length":"18666","content-type":"image/webp","date":"Sun, 19 May 2024 21:39:56 GMT","etag":"318f1f62d392bd01f0c92aefd684c273","last-modified":"Sun, 19 May 2024 21:38:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25077","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da570f0b-4c82-4d7b-8fc5-328e6ca92bf5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.16900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":895.95703,"y":177.94922,"touch_down_time":331879,"touch_up_time":331981},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dcc2a5a5-159f-4c76-aae2-46ced28a0c5a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332344,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"352","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"de315a38-ac75-4f89-8414-b55d8dd9289d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=die\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335247,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''die.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:49:32 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:49:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/147101","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1e99acc-db90-4c71-9d08-fa0472699eee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5249a22-2c90-4c12-8d2e-c482af6e832b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=heart\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335251,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''heart.svg","content-encoding":"gzip","content-length":"230","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:33:00 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:33:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/98414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e60e744a-77f4-4735-b8b3-ec45cc2f80e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e6487deb-1c1e-4235-8394-58153dfa0100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/242px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":335007,"end_time":335340,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32279","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg.webp","content-length":"13362","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:43 GMT","etag":"116366c8c04da3c0d12ec01f8807a2ce","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22901","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7f97e8d-dddc-48e9-af6d-d2a835677ea7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.93200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8e81598-f1c6-48b0-a6e7-b5d1d970fc51","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026raw=1\u0026skin=minerva","method":"get","status_code":200,"start_time":334943,"end_time":335005,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"19691","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 09:01:07 GMT","etag":"W/\"5s31n\"","expires":"Mon, 20 May 2024 09:06:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=5s31n","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1731","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8f4471d-6d28-4b19-86fe-0939cdef277c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb2cbe0a-4a48-436b-80c1-4ed7da7264e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332345,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"edcc401e-299d-4a53-8e31-0f17f1d24aee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg/264px-Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg","method":"get","status_code":200,"start_time":335008,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32236","content-disposition":"inline;filename*=UTF-8''Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg.webp","content-length":"21622","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:27 GMT","etag":"2ffb37c0522c5b4bb8c48a776bcd0499","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/23045","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fffaf829-e771-4c4e-bc90-537097ff3f94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json index 264daab47..31220f888 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json @@ -1 +1 @@ -[{"id":"020a3404-b4d3-4884-bc1d-419ea0070fa8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.10100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10d7067c-3c6e-48ae-acd4-166bc5bb1b04","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":445636,"end_time":445639,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12782bdb-a8e5-4e53-a505-fef48b1b07c2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":773,"total_pss":91188,"rss":168736,"native_total_heap":40960,"native_free_heap":4914,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"188b4fbc-50eb-4e90-9411-b30556078e3b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s_Republic_of_China.svg/45px-Flag_of_the_People%27s_Republic_of_China.svg.png","method":"get","status_code":200,"start_time":445750,"end_time":445803,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"7248","content-disposition":"inline;filename*=UTF-8''Flag_of_the_People%27s_Republic_of_China.svg.webp","content-length":"214","content-type":"image/webp","date":"Mon, 20 May 2024 07:02:44 GMT","etag":"ac5e49c101bc791c07551cd3d42e3bcc","last-modified":"Sat, 02 Mar 2024 08:39:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2287","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ada2149-a09e-44e8-9fde-ad7482de4455","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/45px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445703,"end_time":445800,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2510","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"242","content-type":"image/webp","date":"Mon, 20 May 2024 08:21:42 GMT","etag":"376f251ced23ca55870270fbde2e6a38","last-modified":"Sun, 23 Jul 2023 00:27:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2244","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"265fd5a0-3d00-415c-9da1-1badcd41226c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.88500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Red_pog.svg/12px-Red_pog.svg.png","method":"get","status_code":200,"start_time":445657,"end_time":445704,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"82748","content-disposition":"inline;filename*=UTF-8''Red_pog.svg.webp","content-length":"292","content-type":"image/webp","date":"Sun, 19 May 2024 10:04:25 GMT","etag":"17a200492689febd6b35d3eb8528ae66","last-modified":"Wed, 01 May 2024 21:29:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/63192","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"300e93f5-e7e4-4697-a9c7-0bb86a437879","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.22600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=bangalore\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":443705,"end_time":444045,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-sqst5","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"50idxu2hqbxxfisc0kotuvp97"},"request_body":null,"response_body":"{\"continue\":{\"cocontinue\":\"44275267|791123834\",\"continue\":\"||description|pageimages|info\"},\"query\":{\"pages\":[{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":14,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":1684337,\"ns\":0,\"title\":\"Bangalore Urban district\",\"index\":6,\"description\":\"District of Karnataka in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.970214,\"lon\":77.56029,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:32Z\",\"lastrevid\":1224290740,\"length\":63567,\"displaytitle\":\"Bangalore Urban district\",\"varianttitles\":{\"en\":\"Bangalore Urban district\"}},{\"pageid\":3367279,\"ns\":0,\"title\":\"Bangalore Metropolitan Transport Corporation\",\"index\":8,\"description\":\"Transport corporation of Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png\",\"width\":316,\"height\":316},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:31Z\",\"lastrevid\":1220095160,\"length\":35556,\"displaytitle\":\"Bangalore Metropolitan Transport Corporation\",\"varianttitles\":{\"en\":\"Bangalore Metropolitan Transport Corporation\"}},{\"pageid\":3992119,\"ns\":0,\"title\":\"Bangalore geography and environment\",\"index\":18,\"coordinates\":[{\"lat\":12.97,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T04:46:21Z\",\"lastrevid\":1224399208,\"length\":20419,\"displaytitle\":\"Bangalore geography and environment\",\"varianttitles\":{\"en\":\"Bangalore geography and environment\"}},{\"pageid\":3998184,\"ns\":0,\"title\":\"Bangalore Medical College and Research Institute\",\"index\":4,\"description\":\"Indian medical college in Bangalore, Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg\",\"width\":320,\"height\":427},\"coordinates\":[{\"lat\":12.95938333,\"lon\":77.57474167,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:17Z\",\"lastrevid\":1218784184,\"length\":21257,\"displaytitle\":\"Bangalore Medical College and Research Institute\",\"varianttitles\":{\"en\":\"Bangalore Medical College and Research Institute\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":16872084,\"ns\":0,\"title\":\"Bangalore City railway station\",\"index\":9,\"description\":\"Railway station in Bangalore, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/KSRBengaluruEntrance.jpg/320px-KSRBengaluruEntrance.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.97833333,\"lon\":77.56944444,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:59Z\",\"lastrevid\":1221137357,\"length\":19801,\"displaytitle\":\"Bangalore City railway station\",\"varianttitles\":{\"en\":\"Bangalore City railway station\"}},{\"pageid\":18466192,\"ns\":0,\"title\":\"Bangalore North Lok Sabha constituency\",\"index\":3,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.14,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334231,\"length\":53276,\"displaytitle\":\"Bangalore North Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore North Lok Sabha constituency\"}},{\"pageid\":18466360,\"ns\":0,\"title\":\"Bangalore South Lok Sabha constituency\",\"index\":5,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif\",\"width\":320,\"height\":231},\"coordinates\":[{\"lat\":12.76,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334343,\"length\":24491,\"displaytitle\":\"Bangalore South Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore South Lok Sabha constituency\"}},{\"pageid\":18626771,\"ns\":0,\"title\":\"Bangalore Rural Lok Sabha constituency\",\"index\":16,\"description\":\"Lok Sabha Constituency in Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.3,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221311137,\"length\":16502,\"displaytitle\":\"Bangalore Rural Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Rural Lok Sabha constituency\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":10,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":20477217,\"ns\":0,\"title\":\"Bangalore Fort\",\"index\":11,\"description\":\"Historic mud fort in Kamataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Old_Bangalore_Fort%2C_Inside_View.JPG/320px-Old_Bangalore_Fort%2C_Inside_View.JPG\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:25Z\",\"lastrevid\":1210428540,\"length\":35673,\"displaytitle\":\"Bangalore Fort\",\"varianttitles\":{\"en\":\"Bangalore Fort\"}},{\"pageid\":24251238,\"ns\":0,\"title\":\"Bangalore Central Business District\",\"index\":19,\"description\":\"Neighborhood in Bangalore Urban, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/59/Bangalore-cbd.jpg/320px-Bangalore-cbd.jpg\",\"width\":320,\"height\":237},\"coordinates\":[{\"lat\":12.975,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T20:57:01Z\",\"lastrevid\":1224510573,\"length\":15823,\"displaytitle\":\"Bangalore Central Business District\",\"varianttitles\":{\"en\":\"Bangalore Central Business District\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":7,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":31932753,\"ns\":0,\"title\":\"Bangalore Football League\",\"index\":12,\"description\":\"Football league\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:06:02Z\",\"lastrevid\":1224018601,\"length\":24294,\"displaytitle\":\"Bangalore Football League\",\"varianttitles\":{\"en\":\"Bangalore Football League\"}},{\"pageid\":38216551,\"ns\":0,\"title\":\"Bangalore University Task Force\",\"index\":20,\"description\":\"High-power committee\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:15:10Z\",\"lastrevid\":1208322313,\"length\":35399,\"displaytitle\":\"Bangalore University Task Force\",\"varianttitles\":{\"en\":\"Bangalore University Task Force\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":2,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":46187196,\"ns\":0,\"title\":\"Bangalore Naatkal\",\"index\":13,\"description\":\"2016 film directed by Bhaskar\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/8a/Bangalore_Naatkal_Tamil_poster.jpg\",\"width\":270,\"height\":367},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:21:32Z\",\"lastrevid\":1215621207,\"length\":23352,\"displaytitle\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\"}},{\"pageid\":55024630,\"ns\":0,\"title\":\"Bangalore Ganesh Utsava\",\"index\":17,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-05T21:52:14Z\",\"lastrevid\":1210075728,\"length\":37362,\"displaytitle\":\"Bangalore Ganesh Utsava\",\"varianttitles\":{\"en\":\"Bangalore Ganesh Utsava\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3073b7bb-3be8-47ef-ad76-51672405758e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":442564,"utime":95,"cutime":0,"cstime":0,"stime":76,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35110a1a-40c4-4575-b6ab-82b69e6ed409","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/46px-Flag_of_the_United_States.svg.png","method":"get","status_code":200,"start_time":445732,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"49045","content-length":"498","content-type":"image/webp","date":"Sun, 19 May 2024 19:26:07 GMT","etag":"2eecc01159f34cee7b96bc7ed010a421","last-modified":"Fri, 21 Jun 2019 08:11:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/11713","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35f2dc4a-f4a2-42b2-9c1a-185fa42b0cff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:28.85900000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=sc\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":441262,"end_time":441678,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.canary-77459b97b-8c6fm","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"2evy3lygncw5gh09s8aw0f62u"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"redirects\":[{\"index\":1,\"from\":\"Sc\",\"to\":\"SC\"}],\"pages\":[{\"pageid\":26700,\"ns\":0,\"title\":\"Science\",\"index\":10,\"description\":\"Systematic endeavor for gaining knowledge\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:40Z\",\"lastrevid\":1223109993,\"length\":170821,\"displaytitle\":\"Science\",\"varianttitles\":{\"en\":\"Science\"}},{\"pageid\":26740,\"ns\":0,\"title\":\"Scandinavia\",\"index\":11,\"description\":\"Subregion of Northern Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Scandinavia_M2002074_lrg.jpg/320px-Scandinavia_M2002074_lrg.jpg\",\"width\":320,\"height\":414},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:21:04Z\",\"lastrevid\":1224745886,\"length\":85969,\"displaytitle\":\"Scandinavia\",\"varianttitles\":{\"en\":\"Scandinavia\"}},{\"pageid\":26787,\"ns\":0,\"title\":\"Science fiction\",\"index\":7,\"description\":\"Genre of speculative fiction\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg/320px-The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg\",\"width\":320,\"height\":401},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224197918,\"length\":159442,\"displaytitle\":\"Science fiction\",\"varianttitles\":{\"en\":\"Science fiction\"}},{\"pageid\":26833,\"ns\":0,\"title\":\"Scientific method\",\"index\":12,\"description\":\"Interplay between observation, experiment, and theory in science\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:21:01Z\",\"lastrevid\":1224700801,\"length\":189671,\"displaytitle\":\"Scientific method\",\"varianttitles\":{\"en\":\"Scientific method\"}},{\"pageid\":26994,\"ns\":0,\"title\":\"Scotland\",\"index\":2,\"description\":\"Country within the United Kingdom\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png\",\"width\":320,\"height\":192},\"coordinates\":[{\"lat\":57,\"lon\":-4,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224599331,\"length\":240204,\"displaytitle\":\"Scotland\",\"varianttitles\":{\"en\":\"Scotland\"}},{\"pageid\":27040,\"ns\":0,\"title\":\"Schutzstaffel\",\"index\":4,\"description\":\"Nazi paramilitary organisation (1925–1945)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg\",\"width\":320,\"height\":238},\"coordinates\":[{\"lat\":52.50694444,\"lon\":13.38277778,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:48:53Z\",\"lastrevid\":1223244499,\"length\":142540,\"displaytitle\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\"}},{\"pageid\":27790,\"ns\":0,\"title\":\"Schizophrenia\",\"index\":6,\"description\":\"Mental disorder with psychotic symptoms\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1221204757,\"length\":169955,\"displaytitle\":\"Schizophrenia\",\"varianttitles\":{\"en\":\"Schizophrenia\"}},{\"pageid\":28397,\"ns\":0,\"title\":\"Scottish Gaelic\",\"index\":16,\"description\":\"Goidelic Celtic language of Scotland\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Scots_Gaelic_speakers_in_the_2011_census.png/320px-Scots_Gaelic_speakers_in_the_2011_census.png\",\"width\":320,\"height\":475},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T04:14:43Z\",\"lastrevid\":1224734192,\"length\":119497,\"displaytitle\":\"Scottish Gaelic\",\"varianttitles\":{\"en\":\"Scottish Gaelic\"}},{\"pageid\":37287,\"ns\":0,\"title\":\"Scooby-Doo\",\"index\":13,\"description\":\"American animated media franchise\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Scooby_doo_logo.png/320px-Scooby_doo_logo.png\",\"width\":320,\"height\":107},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224264757,\"length\":112505,\"displaytitle\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\"}},{\"pageid\":55092,\"ns\":0,\"title\":\"Scythians\",\"index\":17,\"description\":\"Nomadic Iranic people of the Pontic Steppe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Scythian_Kingdom_in_West_Asia.jpg/320px-Scythian_Kingdom_in_West_Asia.jpg\",\"width\":320,\"height\":195},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1221221772,\"length\":284125,\"displaytitle\":\"Scythians\",\"varianttitles\":{\"en\":\"Scythians\"}},{\"pageid\":59874,\"ns\":0,\"title\":\"Schrödinger equation\",\"index\":18,\"description\":\"Description of a quantum-mechanical system\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Grave_Schroedinger_%28detail%29.png/320px-Grave_Schroedinger_%28detail%29.png\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:11:53Z\",\"lastrevid\":1224728096,\"length\":74996,\"displaytitle\":\"Schrödinger equation\",\"varianttitles\":{\"en\":\"Schrödinger equation\"}},{\"pageid\":191304,\"ns\":0,\"title\":\"Schistosomiasis\",\"index\":8,\"description\":\"Human disease caused by parasitic worms called schistosomes\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Schistosomiasis_in_a_child_2.jpg/320px-Schistosomiasis_in_a_child_2.jpg\",\"width\":320,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:45Z\",\"lastrevid\":1224583089,\"length\":96568,\"displaytitle\":\"Schistosomiasis\",\"varianttitles\":{\"en\":\"Schistosomiasis\"}},{\"pageid\":225063,\"ns\":0,\"title\":\"SC\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:22:55Z\",\"lastrevid\":1214596484,\"length\":4989,\"displaytitle\":\"SC\",\"varianttitles\":{\"en\":\"SC\"}},{\"pageid\":267848,\"ns\":0,\"title\":\"Scarface (1983 film)\",\"index\":19,\"description\":\"American crime drama film by Brian De Palma\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/71/Scarface_-_1983_film.jpg\",\"width\":256,\"height\":388},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T14:42:53Z\",\"lastrevid\":1224634022,\"length\":97222,\"displaytitle\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\"}},{\"pageid\":3437663,\"ns\":0,\"title\":\"Science, technology, engineering, and mathematics\",\"index\":20,\"description\":\"Group of academic disciplines\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg/320px-Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg\",\"width\":320,\"height\":212},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:48Z\",\"lastrevid\":1223985006,\"length\":92714,\"displaytitle\":\"Science, technology, engineering, and mathematics\",\"varianttitles\":{\"en\":\"Science, technology, engineering, and mathematics\"}},{\"pageid\":13118744,\"ns\":0,\"title\":\"Scientology\",\"index\":14,\"description\":\"Beliefs and practices and associated movement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg/320px-Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg\",\"width\":320,\"height\":228},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:57:49Z\",\"lastrevid\":1224639439,\"length\":206002,\"displaytitle\":\"Scientology\",\"varianttitles\":{\"en\":\"Scientology\"}},{\"pageid\":16565139,\"ns\":0,\"title\":\"Schengen Area\",\"index\":5,\"description\":\"Area of 29 European states without mutual border controls\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:59:53Z\",\"lastrevid\":1224138185,\"length\":258944,\"displaytitle\":\"Schengen Area\",\"varianttitles\":{\"en\":\"Schengen Area\"}},{\"pageid\":20913246,\"ns\":0,\"title\":\"Scarlett Johansson\",\"index\":9,\"description\":\"American actress (born 1984)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg/320px-Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg\",\"width\":320,\"height\":498},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:01:37Z\",\"lastrevid\":1224575630,\"length\":202536,\"displaytitle\":\"Scarlett Johansson\",\"varianttitles\":{\"en\":\"Scarlett Johansson\"}},{\"pageid\":48077208,\"ns\":0,\"title\":\"Sci-Hub\",\"index\":15,\"description\":\"Scientific research paper file sharing website\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/80/Sci-hub_screen_shot.png/320px-Sci-hub_screen_shot.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:10:13Z\",\"lastrevid\":1224715159,\"length\":100790,\"displaytitle\":\"Sci-Hub\",\"varianttitles\":{\"en\":\"Sci-Hub\"}},{\"pageid\":54256563,\"ns\":0,\"title\":\"Scottie Scheffler\",\"index\":3,\"description\":\"American professional golfer (born 1996)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:20:20Z\",\"lastrevid\":1224708630,\"length\":52043,\"displaytitle\":\"Scottie Scheffler\",\"varianttitles\":{\"en\":\"Scottie Scheffler\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b4c9002-37fd-4eee-9ec1-e864131f9b36","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.37400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":444862,"end_time":445193,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e9fccb5-c245-4d38-ba0d-45d9c5bcfd4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.90100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","method":"get","status_code":200,"start_time":445137,"end_time":445720,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:03:33 GMT","etag":"W/\"1223290316/c85c3be0-158b-11ef-a9e5-76db261de79a\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42dd09bf-ffa9-4177-a33e-64657e636e18","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:27.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":4349,"total_pss":83482,"rss":161116,"native_total_heap":36864,"native_free_heap":5008,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4335f5cc-3aa4-4322-8772-5cae6934b077","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.35800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":438525,"end_time":439177,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"53ce0da2-c212-4609-ac2c-75dc5d9fdeb0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:30.98900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","method":"get","status_code":200,"start_time":443740,"end_time":443808,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"29707","content-disposition":"inline;filename*=UTF-8''Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","content-length":"36518","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:48:24 GMT","etag":"0e664e18a7e8c56780982cdec4dcddf5","last-modified":"Wed, 29 Mar 2023 19:01:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587457f7-d345-48a3-92b5-dafaea6a7cae","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58dd307c-1098-4485-8516-5b9f940d7131","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.74800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":439567,"utime":69,"cutime":0,"cstime":0,"stime":47,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a3d6b76-9467-47e6-aa4b-64a3ba96fba8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.32800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","method":"get","status_code":200,"start_time":445099,"end_time":445147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"24691","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"1015","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 02:12:01 GMT","etag":"W/\"1223290316/596e4ba0-158c-11ef-9522-c7a0c2b73d32\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/443","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1355\",\"titles\":{\"canonical\":\"Bangalore\",\"normalized\":\"Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\"},\"pageid\":44275267,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":640,\"height\":458},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223290316\",\"tid\":\"d22b1496-0f44-11ef-8b85-8777b462a886\",\"timestamp\":\"2024-05-11T03:16:13Z\",\"description\":\"Capital of Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97888889,\"lon\":77.59166667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bangalore\"}},\"extract\":\"Bangalore, officially Bengaluru, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than 8 million and a metropolitan population of around 15 million, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e, officially \u003cb\u003eBengaluru\u003c/b\u003e, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than \u003cspan class=\\\"nowrap\\\"\u003e8 million\u003c/span\u003e and a metropolitan population of around \u003cspan class=\\\"nowrap\\\"\u003e15 million\u003c/span\u003e, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"753276be-d6ea-471e-b456-1e25ac8f12ca","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.55200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png","method":"get","status_code":200,"start_time":444066,"end_time":444371,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"18593","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"4332f2b58aa1329cfab7539c4f1728f2","last-modified":"Fri, 03 Jan 2020 02:00:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75e3f617-a93d-495d-9f8c-1152762aa7bc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"766acf39-c1f0-4ab0-bddd-f3b877d992ed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":445564,"utime":172,"cutime":0,"cstime":0,"stime":134,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7bf3cbc3-d54e-463c-bb26-389e99ed889c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":445797,"end_time":445798,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"839eab92-ed09-445d-af80-a46fbb8e7e72","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.03200000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":1731,"x":459.9756,"y":309.96094,"touch_down_time":444777,"touch_up_time":444848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85df57c5-6b2c-4e97-bd98-1dd22694f09c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85f394f3-d874-4de8-b6af-91635217e51a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.51000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg","method":"get","status_code":200,"start_time":444063,"end_time":444329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"56063","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"0eabf42026cfaa93bb864a0f792af18d","last-modified":"Sun, 16 Feb 2020 09:41:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f2185a2-125f-475c-91f0-bdd2301aa082","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.09300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2e0afa5-e1d3-450f-b990-89c3b616e61a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=sc\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":441687,"end_time":441880,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6c13d8f-88ab-4333-b41f-4389607b105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5517be6-9227-46c5-919b-cc4fb7493354","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.65800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=bangalore\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":444054,"end_time":444477,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-kmz8x","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"e2pm726c46ptnwr5s7wscl6z1"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":37533,\"ns\":0,\"title\":\"Indian Institute of Science\",\"redirecttitle\":\"Indian Institute of Science Bangalore\",\"index\":16,\"description\":\"Public university for scientific research and higher education in Bangalore\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3b/Indian_Institute_of_Science_2019_logo.svg/320px-Indian_Institute_of_Science_2019_logo.svg.png\",\"width\":320,\"height\":286},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1222905910,\"length\":98459,\"displaytitle\":\"Indian Institute of Science\",\"varianttitles\":{\"en\":\"Indian Institute of Science\"}},{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":6,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":652234,\"ns\":0,\"title\":\"Whitefield, Bangalore\",\"index\":11,\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg/320px-Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg\",\"width\":320,\"height\":182},\"coordinates\":[{\"lat\":12.97,\"lon\":77.715,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:12:24Z\",\"lastrevid\":1223602569,\"length\":16938,\"displaytitle\":\"Whitefield, Bangalore\",\"varianttitles\":{\"en\":\"Whitefield, Bangalore\"}},{\"pageid\":920017,\"ns\":0,\"title\":\"Bangalore IT.in\",\"index\":4,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:13:29Z\",\"lastrevid\":1209907618,\"length\":1333,\"displaytitle\":\"Bangalore IT.in\",\"varianttitles\":{\"en\":\"Bangalore IT.in\"}},{\"pageid\":2192062,\"ns\":0,\"title\":\"Bangalore (disambiguation)\",\"index\":17,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-04-27T01:58:17Z\",\"lastrevid\":1189264050,\"length\":1062,\"displaytitle\":\"Bangalore (disambiguation)\",\"varianttitles\":{\"en\":\"Bangalore (disambiguation)\"}},{\"pageid\":2409948,\"ns\":0,\"title\":\"Namma Metro\",\"redirecttitle\":\"Bangalore metro\",\"index\":7,\"description\":\"Rapid transit system in Bengaluru, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Metro_Trains_of_Namma_Metro.jpg/320px-Metro_Trains_of_Namma_Metro.jpg\",\"width\":320,\"height\":257},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:47Z\",\"lastrevid\":1222695638,\"length\":148660,\"displaytitle\":\"Namma Metro\",\"varianttitles\":{\"en\":\"Namma Metro\"}},{\"pageid\":2912063,\"ns\":0,\"title\":\"Bangalore division\",\"index\":5,\"description\":\"Place in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Karnataka-divisions-Bangalore.png/320px-Karnataka-divisions-Bangalore.png\",\"width\":320,\"height\":506},\"coordinates\":[{\"lat\":12.9667,\"lon\":77.5667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:21:45Z\",\"lastrevid\":1221849884,\"length\":4625,\"displaytitle\":\"Bangalore division\",\"varianttitles\":{\"en\":\"Bangalore division\"}},{\"pageid\":3950518,\"ns\":0,\"title\":\"Economy of Bangalore\",\"index\":19,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/UB_City_Bangalore.JPG/320px-UB_City_Bangalore.JPG\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:10Z\",\"lastrevid\":1220141129,\"length\":27299,\"displaytitle\":\"Economy of Bangalore\",\"varianttitles\":{\"en\":\"Economy of Bangalore\"}},{\"pageid\":4044762,\"ns\":0,\"title\":\"Bengaluru Airport\",\"redirecttitle\":\"Bangalore Airport\",\"index\":8,\"description\":\"International airport in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/55/Kempegowda_International_Airport_Bengaluru_Logo.svg/320px-Kempegowda_International_Airport_Bengaluru_Logo.svg.png\",\"width\":320,\"height\":261},\"coordinates\":[{\"lat\":13.20694444,\"lon\":77.70416667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:53:10Z\",\"lastrevid\":1224574455,\"length\":132714,\"displaytitle\":\"Bengaluru Airport\",\"varianttitles\":{\"en\":\"Bengaluru Airport\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":8599775,\"ns\":0,\"title\":\"Bangalore Palace\",\"index\":18,\"description\":\"Royal palace in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Bangalore_Mysore_Maharaja_Palace.jpg/320px-Bangalore_Mysore_Maharaja_Palace.jpg\",\"width\":320,\"height\":151},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:34:38Z\",\"lastrevid\":1219003008,\"length\":6055,\"displaytitle\":\"Bangalore Palace\",\"varianttitles\":{\"en\":\"Bangalore Palace\"}},{\"pageid\":15861688,\"ns\":0,\"title\":\"Royal Challengers Bangalore\",\"index\":2,\"description\":\"Bangalore based franchise in the Indian Premier League\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0a/Royal_Challengers_Bengaluru_Logo.png\",\"width\":267,\"height\":373},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:32:47Z\",\"lastrevid\":1224730459,\"length\":90102,\"displaytitle\":\"Royal Challengers Bangalore\",\"varianttitles\":{\"en\":\"Royal Challengers Bangalore\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":12,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":26809312,\"ns\":0,\"title\":\"Purple Line (Namma Metro)\",\"redirecttitle\":\"Purple Line (Bangalore Metro)\",\"index\":13,\"description\":\"Line of Bengaluru's Namma Metro\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Namma_Metro%27s_Purple_Line_trainset.jpg/320px-Namma_Metro%27s_Purple_Line_trainset.jpg\",\"width\":320,\"height\":161},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:51:03Z\",\"lastrevid\":1223987918,\"length\":54136,\"displaytitle\":\"Purple Line (Namma Metro)\",\"varianttitles\":{\"en\":\"Purple Line (Namma Metro)\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":10,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":3,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"coordinates\":[{\"lat\":12.97888889,\"lon\":77.59166667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":45249047,\"ns\":0,\"title\":\"Love in Bangalore\",\"index\":14,\"description\":\"1966 Indian film\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:28:46Z\",\"lastrevid\":1212970362,\"length\":1925,\"displaytitle\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\"}},{\"pageid\":49213725,\"ns\":0,\"title\":\"Bangalore Blue\",\"index\":9,\"description\":\"Noir grape variety\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Blue_grapes_in_vineyard.jpg/320px-Blue_grapes_in_vineyard.jpg\",\"width\":320,\"height\":425},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T18:56:11Z\",\"lastrevid\":1147235604,\"length\":4448,\"displaytitle\":\"Bangalore Blue\",\"varianttitles\":{\"en\":\"Bangalore Blue\"}},{\"pageid\":64312095,\"ns\":0,\"title\":\"Bangalore South Assembly constituency\",\"index\":20,\"description\":\"Vidhana Sabha constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/176-Bangalore_South_constituency.svg/320px-176-Bangalore_South_constituency.svg.png\",\"width\":320,\"height\":316},\"coordinates\":[{\"lat\":12.86,\"lon\":77.58,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T09:23:25Z\",\"lastrevid\":1213122229,\"length\":8807,\"displaytitle\":\"Bangalore South Assembly constituency\",\"varianttitles\":{\"en\":\"Bangalore South Assembly constituency\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb424ca9-1a7a-4497-96bc-df809fc8419c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Flag_of_Belarus.svg/46px-Flag_of_Belarus.svg.png","method":"get","status_code":200,"start_time":445731,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13839","content-disposition":"inline;filename*=UTF-8''Flag_of_Belarus.svg.webp","content-length":"328","content-type":"image/webp","date":"Mon, 20 May 2024 05:12:54 GMT","etag":"22b0881547d06a0a7abe5e914011fd27","last-modified":"Tue, 23 Jan 2024 23:32:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1468","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bf526972-039e-4c45-9ea6-b229f82fa7d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.11200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg","method":"get","status_code":200,"start_time":441708,"end_time":441931,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32703","content-disposition":"inline;filename*=UTF-8''Scottie_Scheffler_2023_01.jpg","content-length":"28013","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:58:25 GMT","etag":"0a5a95d6838ea5225265c871fcc485ea","last-modified":"Mon, 15 Apr 2024 00:29:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/41","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3d974d7-6bed-4ef7-86fc-9a47511c3692","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdaf5ea3-1230-4eb8-a77e-30d77a3f353e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png","method":"get","status_code":200,"start_time":441706,"end_time":441886,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13931","content-disposition":"inline;filename*=UTF-8''Flag_of_Scotland.svg.png","content-length":"1416","content-type":"image/png","date":"Mon, 20 May 2024 05:11:18 GMT","etag":"116e7ad3411fef2892a4f560eeb9ac88","last-modified":"Tue, 29 Nov 2022 04:40:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d02eead2-1b40-49e7-93f2-412ae3a02e3d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","method":"get","status_code":200,"start_time":444057,"end_time":444109,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70814","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"33213","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:23:16 GMT","etag":"a77891f913653956636f4e78e9f85235","last-modified":"Tue, 07 May 2024 15:28:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d764d4b6-d648-4f3e-8322-b9f6000acea9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg","method":"get","status_code":200,"start_time":444060,"end_time":444120,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"27582","content-length":"18792","content-type":"image/jpeg","date":"Mon, 20 May 2024 01:23:48 GMT","etag":"e9ffa25766587d06e79ff3dd741c597d","last-modified":"Mon, 16 Oct 2017 22:45:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/33","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"42h4vxu7q87nt73606bmuy05qbjngxl"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7a30ad8-4b8e-40a0-8946-e7303171f40b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.01800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","method":"get","status_code":200,"start_time":443748,"end_time":443837,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"72961","content-disposition":"inline;filename*=UTF-8''Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","content-length":"38362","content-type":"image/jpeg","date":"Sun, 19 May 2024 12:47:30 GMT","etag":"aa706922e801305aca334599b4f39fa0","last-modified":"Sat, 25 Dec 2021 09:15:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d880b56d-b684-4eda-9268-336a556f2d3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.81800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":445635,"end_time":445636,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d9c0e3fd-b810-4891-838e-f9dd6e34451c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.19900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png","method":"get","status_code":200,"start_time":443745,"end_time":444018,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Map_of_the_Schengen_Area.svg.png","content-length":"39412","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f2546c5b669cc609c38f9a34aa3e6e9d","last-modified":"Sun, 31 Mar 2024 09:12:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e06e9a69-d791-4a62-adfa-d98199d7483c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.74700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15468,"java_free_heap":795,"total_pss":96401,"rss":173048,"native_total_heap":45056,"native_free_heap":5333,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11cd222-e695-4fdb-a294-871b07429e34","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":445642,"end_time":445644,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1aaa75b-f364-40e6-aebd-721dc43cfec3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.62600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=s\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":null,"start_time":442085,"end_time":442445,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e72d75b6-cc4c-4f24-beb8-212c4107baed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","method":"get","status_code":200,"start_time":444061,"end_time":444115,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65960","content-disposition":"inline;filename*=UTF-8''Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","content-length":"31020","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:44:11 GMT","etag":"08b33c6ca658bce29fcf7e4b7a8f05d6","last-modified":"Sun, 03 Sep 2023 00:40:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8c64f9d-60be-4071-aeac-3a25d8a3f7ce","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.40400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg/640px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg","method":"get","status_code":200,"start_time":445163,"end_time":445223,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11994","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"86275","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:43:39 GMT","etag":"0d0008172016fe7d7be9c073762e4520","last-modified":"Tue, 07 May 2024 15:34:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb7e39b3-c886-4944-a778-965e3c480f7a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.83000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":445639,"end_time":445649,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0475d0-3299-42c2-88fe-7d13a7df094b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif","method":"get","status_code":200,"start_time":444064,"end_time":444125,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"8935","content-length":"12268","content-type":"image/gif","date":"Mon, 20 May 2024 06:34:35 GMT","etag":"1358f74d5c77a355cff8a92a55e4f0b4","last-modified":"Thu, 19 Jul 2018 05:50:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f35cf97a-5bda-4130-a6a2-bf7528059fa3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.54500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg","method":"get","status_code":200,"start_time":444065,"end_time":444364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Brigade_Road_Bangalore.jpg","content-length":"33965","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f521e65ca0e6ef701eccd34fa7f43aa1","last-modified":"Mon, 07 Aug 2023 23:58:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f363c188-b88a-4077-8ba7-7bd5975881d9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.27400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":441702,"end_time":442093,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"15872","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:29 GMT","etag":"8ef639120e64588af7912ced4f2670b2","last-modified":"Sat, 27 Feb 2016 04:12:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"eyxrcp83otgt6lam7bflqzgsciop8pe"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6cd5c59-2f0c-47fa-9bdb-53100bc3931c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f846ac03-1d92-4e21-981b-db3bbdde169b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.36600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png","method":"get","status_code":200,"start_time":444067,"end_time":444184,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25040","content-length":"108611","content-type":"image/png","date":"Mon, 20 May 2024 02:06:10 GMT","etag":"1df3af57bc9e53f01563d0903c555eb4","last-modified":"Sat, 07 Apr 2018 14:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"bf5j4qbkjfu4k6au3h63waco77l0jfr"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf00dab-e951-4745-aea6-6568fad0f660","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.60300000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":304,"start_time":445154,"end_time":445422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","if-modified-since":"Fri, 29 Dec 2023 14:07:42 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-7","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"020a3404-b4d3-4884-bc1d-419ea0070fa8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.10100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10d7067c-3c6e-48ae-acd4-166bc5bb1b04","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":445636,"end_time":445639,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12782bdb-a8e5-4e53-a505-fef48b1b07c2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":773,"total_pss":91188,"rss":168736,"native_total_heap":40960,"native_free_heap":4914,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"188b4fbc-50eb-4e90-9411-b30556078e3b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s_Republic_of_China.svg/45px-Flag_of_the_People%27s_Republic_of_China.svg.png","method":"get","status_code":200,"start_time":445750,"end_time":445803,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"7248","content-disposition":"inline;filename*=UTF-8''Flag_of_the_People%27s_Republic_of_China.svg.webp","content-length":"214","content-type":"image/webp","date":"Mon, 20 May 2024 07:02:44 GMT","etag":"ac5e49c101bc791c07551cd3d42e3bcc","last-modified":"Sat, 02 Mar 2024 08:39:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2287","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ada2149-a09e-44e8-9fde-ad7482de4455","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/45px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445703,"end_time":445800,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2510","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"242","content-type":"image/webp","date":"Mon, 20 May 2024 08:21:42 GMT","etag":"376f251ced23ca55870270fbde2e6a38","last-modified":"Sun, 23 Jul 2023 00:27:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2244","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"265fd5a0-3d00-415c-9da1-1badcd41226c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.88500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Red_pog.svg/12px-Red_pog.svg.png","method":"get","status_code":200,"start_time":445657,"end_time":445704,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"82748","content-disposition":"inline;filename*=UTF-8''Red_pog.svg.webp","content-length":"292","content-type":"image/webp","date":"Sun, 19 May 2024 10:04:25 GMT","etag":"17a200492689febd6b35d3eb8528ae66","last-modified":"Wed, 01 May 2024 21:29:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/63192","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"300e93f5-e7e4-4697-a9c7-0bb86a437879","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.22600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=bangalore\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":443705,"end_time":444045,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-sqst5","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"50idxu2hqbxxfisc0kotuvp97"},"request_body":null,"response_body":"{\"continue\":{\"cocontinue\":\"44275267|791123834\",\"continue\":\"||description|pageimages|info\"},\"query\":{\"pages\":[{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":14,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":1684337,\"ns\":0,\"title\":\"Bangalore Urban district\",\"index\":6,\"description\":\"District of Karnataka in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.970214,\"lon\":77.56029,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:32Z\",\"lastrevid\":1224290740,\"length\":63567,\"displaytitle\":\"Bangalore Urban district\",\"varianttitles\":{\"en\":\"Bangalore Urban district\"}},{\"pageid\":3367279,\"ns\":0,\"title\":\"Bangalore Metropolitan Transport Corporation\",\"index\":8,\"description\":\"Transport corporation of Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png\",\"width\":316,\"height\":316},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:31Z\",\"lastrevid\":1220095160,\"length\":35556,\"displaytitle\":\"Bangalore Metropolitan Transport Corporation\",\"varianttitles\":{\"en\":\"Bangalore Metropolitan Transport Corporation\"}},{\"pageid\":3992119,\"ns\":0,\"title\":\"Bangalore geography and environment\",\"index\":18,\"coordinates\":[{\"lat\":12.97,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T04:46:21Z\",\"lastrevid\":1224399208,\"length\":20419,\"displaytitle\":\"Bangalore geography and environment\",\"varianttitles\":{\"en\":\"Bangalore geography and environment\"}},{\"pageid\":3998184,\"ns\":0,\"title\":\"Bangalore Medical College and Research Institute\",\"index\":4,\"description\":\"Indian medical college in Bangalore, Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg\",\"width\":320,\"height\":427},\"coordinates\":[{\"lat\":12.95938333,\"lon\":77.57474167,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:17Z\",\"lastrevid\":1218784184,\"length\":21257,\"displaytitle\":\"Bangalore Medical College and Research Institute\",\"varianttitles\":{\"en\":\"Bangalore Medical College and Research Institute\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":16872084,\"ns\":0,\"title\":\"Bangalore City railway station\",\"index\":9,\"description\":\"Railway station in Bangalore, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/KSRBengaluruEntrance.jpg/320px-KSRBengaluruEntrance.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.97833333,\"lon\":77.56944444,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:59Z\",\"lastrevid\":1221137357,\"length\":19801,\"displaytitle\":\"Bangalore City railway station\",\"varianttitles\":{\"en\":\"Bangalore City railway station\"}},{\"pageid\":18466192,\"ns\":0,\"title\":\"Bangalore North Lok Sabha constituency\",\"index\":3,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.14,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334231,\"length\":53276,\"displaytitle\":\"Bangalore North Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore North Lok Sabha constituency\"}},{\"pageid\":18466360,\"ns\":0,\"title\":\"Bangalore South Lok Sabha constituency\",\"index\":5,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif\",\"width\":320,\"height\":231},\"coordinates\":[{\"lat\":12.76,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334343,\"length\":24491,\"displaytitle\":\"Bangalore South Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore South Lok Sabha constituency\"}},{\"pageid\":18626771,\"ns\":0,\"title\":\"Bangalore Rural Lok Sabha constituency\",\"index\":16,\"description\":\"Lok Sabha Constituency in Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.3,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221311137,\"length\":16502,\"displaytitle\":\"Bangalore Rural Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Rural Lok Sabha constituency\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":10,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":20477217,\"ns\":0,\"title\":\"Bangalore Fort\",\"index\":11,\"description\":\"Historic mud fort in Kamataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Old_Bangalore_Fort%2C_Inside_View.JPG/320px-Old_Bangalore_Fort%2C_Inside_View.JPG\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:25Z\",\"lastrevid\":1210428540,\"length\":35673,\"displaytitle\":\"Bangalore Fort\",\"varianttitles\":{\"en\":\"Bangalore Fort\"}},{\"pageid\":24251238,\"ns\":0,\"title\":\"Bangalore Central Business District\",\"index\":19,\"description\":\"Neighborhood in Bangalore Urban, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/59/Bangalore-cbd.jpg/320px-Bangalore-cbd.jpg\",\"width\":320,\"height\":237},\"coordinates\":[{\"lat\":12.975,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T20:57:01Z\",\"lastrevid\":1224510573,\"length\":15823,\"displaytitle\":\"Bangalore Central Business District\",\"varianttitles\":{\"en\":\"Bangalore Central Business District\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":7,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":31932753,\"ns\":0,\"title\":\"Bangalore Football League\",\"index\":12,\"description\":\"Football league\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:06:02Z\",\"lastrevid\":1224018601,\"length\":24294,\"displaytitle\":\"Bangalore Football League\",\"varianttitles\":{\"en\":\"Bangalore Football League\"}},{\"pageid\":38216551,\"ns\":0,\"title\":\"Bangalore University Task Force\",\"index\":20,\"description\":\"High-power committee\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:15:10Z\",\"lastrevid\":1208322313,\"length\":35399,\"displaytitle\":\"Bangalore University Task Force\",\"varianttitles\":{\"en\":\"Bangalore University Task Force\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":2,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":46187196,\"ns\":0,\"title\":\"Bangalore Naatkal\",\"index\":13,\"description\":\"2016 film directed by Bhaskar\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/8a/Bangalore_Naatkal_Tamil_poster.jpg\",\"width\":270,\"height\":367},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:21:32Z\",\"lastrevid\":1215621207,\"length\":23352,\"displaytitle\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\"}},{\"pageid\":55024630,\"ns\":0,\"title\":\"Bangalore Ganesh Utsava\",\"index\":17,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-05T21:52:14Z\",\"lastrevid\":1210075728,\"length\":37362,\"displaytitle\":\"Bangalore Ganesh Utsava\",\"varianttitles\":{\"en\":\"Bangalore Ganesh Utsava\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3073b7bb-3be8-47ef-ad76-51672405758e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":442564,"utime":95,"cutime":0,"cstime":0,"stime":76,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35110a1a-40c4-4575-b6ab-82b69e6ed409","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/46px-Flag_of_the_United_States.svg.png","method":"get","status_code":200,"start_time":445732,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"49045","content-length":"498","content-type":"image/webp","date":"Sun, 19 May 2024 19:26:07 GMT","etag":"2eecc01159f34cee7b96bc7ed010a421","last-modified":"Fri, 21 Jun 2019 08:11:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/11713","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35f2dc4a-f4a2-42b2-9c1a-185fa42b0cff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:28.85900000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=sc\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":441262,"end_time":441678,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.canary-77459b97b-8c6fm","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"2evy3lygncw5gh09s8aw0f62u"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"redirects\":[{\"index\":1,\"from\":\"Sc\",\"to\":\"SC\"}],\"pages\":[{\"pageid\":26700,\"ns\":0,\"title\":\"Science\",\"index\":10,\"description\":\"Systematic endeavor for gaining knowledge\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:40Z\",\"lastrevid\":1223109993,\"length\":170821,\"displaytitle\":\"Science\",\"varianttitles\":{\"en\":\"Science\"}},{\"pageid\":26740,\"ns\":0,\"title\":\"Scandinavia\",\"index\":11,\"description\":\"Subregion of Northern Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Scandinavia_M2002074_lrg.jpg/320px-Scandinavia_M2002074_lrg.jpg\",\"width\":320,\"height\":414},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:21:04Z\",\"lastrevid\":1224745886,\"length\":85969,\"displaytitle\":\"Scandinavia\",\"varianttitles\":{\"en\":\"Scandinavia\"}},{\"pageid\":26787,\"ns\":0,\"title\":\"Science fiction\",\"index\":7,\"description\":\"Genre of speculative fiction\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg/320px-The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg\",\"width\":320,\"height\":401},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224197918,\"length\":159442,\"displaytitle\":\"Science fiction\",\"varianttitles\":{\"en\":\"Science fiction\"}},{\"pageid\":26833,\"ns\":0,\"title\":\"Scientific method\",\"index\":12,\"description\":\"Interplay between observation, experiment, and theory in science\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:21:01Z\",\"lastrevid\":1224700801,\"length\":189671,\"displaytitle\":\"Scientific method\",\"varianttitles\":{\"en\":\"Scientific method\"}},{\"pageid\":26994,\"ns\":0,\"title\":\"Scotland\",\"index\":2,\"description\":\"Country within the United Kingdom\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png\",\"width\":320,\"height\":192},\"coordinates\":[{\"lat\":57,\"lon\":-4,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224599331,\"length\":240204,\"displaytitle\":\"Scotland\",\"varianttitles\":{\"en\":\"Scotland\"}},{\"pageid\":27040,\"ns\":0,\"title\":\"Schutzstaffel\",\"index\":4,\"description\":\"Nazi paramilitary organisation (1925–1945)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg\",\"width\":320,\"height\":238},\"coordinates\":[{\"lat\":52.50694444,\"lon\":13.38277778,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:48:53Z\",\"lastrevid\":1223244499,\"length\":142540,\"displaytitle\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\"}},{\"pageid\":27790,\"ns\":0,\"title\":\"Schizophrenia\",\"index\":6,\"description\":\"Mental disorder with psychotic symptoms\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1221204757,\"length\":169955,\"displaytitle\":\"Schizophrenia\",\"varianttitles\":{\"en\":\"Schizophrenia\"}},{\"pageid\":28397,\"ns\":0,\"title\":\"Scottish Gaelic\",\"index\":16,\"description\":\"Goidelic Celtic language of Scotland\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Scots_Gaelic_speakers_in_the_2011_census.png/320px-Scots_Gaelic_speakers_in_the_2011_census.png\",\"width\":320,\"height\":475},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T04:14:43Z\",\"lastrevid\":1224734192,\"length\":119497,\"displaytitle\":\"Scottish Gaelic\",\"varianttitles\":{\"en\":\"Scottish Gaelic\"}},{\"pageid\":37287,\"ns\":0,\"title\":\"Scooby-Doo\",\"index\":13,\"description\":\"American animated media franchise\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Scooby_doo_logo.png/320px-Scooby_doo_logo.png\",\"width\":320,\"height\":107},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224264757,\"length\":112505,\"displaytitle\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\"}},{\"pageid\":55092,\"ns\":0,\"title\":\"Scythians\",\"index\":17,\"description\":\"Nomadic Iranic people of the Pontic Steppe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Scythian_Kingdom_in_West_Asia.jpg/320px-Scythian_Kingdom_in_West_Asia.jpg\",\"width\":320,\"height\":195},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1221221772,\"length\":284125,\"displaytitle\":\"Scythians\",\"varianttitles\":{\"en\":\"Scythians\"}},{\"pageid\":59874,\"ns\":0,\"title\":\"Schrödinger equation\",\"index\":18,\"description\":\"Description of a quantum-mechanical system\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Grave_Schroedinger_%28detail%29.png/320px-Grave_Schroedinger_%28detail%29.png\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:11:53Z\",\"lastrevid\":1224728096,\"length\":74996,\"displaytitle\":\"Schrödinger equation\",\"varianttitles\":{\"en\":\"Schrödinger equation\"}},{\"pageid\":191304,\"ns\":0,\"title\":\"Schistosomiasis\",\"index\":8,\"description\":\"Human disease caused by parasitic worms called schistosomes\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Schistosomiasis_in_a_child_2.jpg/320px-Schistosomiasis_in_a_child_2.jpg\",\"width\":320,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:45Z\",\"lastrevid\":1224583089,\"length\":96568,\"displaytitle\":\"Schistosomiasis\",\"varianttitles\":{\"en\":\"Schistosomiasis\"}},{\"pageid\":225063,\"ns\":0,\"title\":\"SC\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:22:55Z\",\"lastrevid\":1214596484,\"length\":4989,\"displaytitle\":\"SC\",\"varianttitles\":{\"en\":\"SC\"}},{\"pageid\":267848,\"ns\":0,\"title\":\"Scarface (1983 film)\",\"index\":19,\"description\":\"American crime drama film by Brian De Palma\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/71/Scarface_-_1983_film.jpg\",\"width\":256,\"height\":388},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T14:42:53Z\",\"lastrevid\":1224634022,\"length\":97222,\"displaytitle\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\"}},{\"pageid\":3437663,\"ns\":0,\"title\":\"Science, technology, engineering, and mathematics\",\"index\":20,\"description\":\"Group of academic disciplines\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg/320px-Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg\",\"width\":320,\"height\":212},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:48Z\",\"lastrevid\":1223985006,\"length\":92714,\"displaytitle\":\"Science, technology, engineering, and mathematics\",\"varianttitles\":{\"en\":\"Science, technology, engineering, and mathematics\"}},{\"pageid\":13118744,\"ns\":0,\"title\":\"Scientology\",\"index\":14,\"description\":\"Beliefs and practices and associated movement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg/320px-Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg\",\"width\":320,\"height\":228},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:57:49Z\",\"lastrevid\":1224639439,\"length\":206002,\"displaytitle\":\"Scientology\",\"varianttitles\":{\"en\":\"Scientology\"}},{\"pageid\":16565139,\"ns\":0,\"title\":\"Schengen Area\",\"index\":5,\"description\":\"Area of 29 European states without mutual border controls\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:59:53Z\",\"lastrevid\":1224138185,\"length\":258944,\"displaytitle\":\"Schengen Area\",\"varianttitles\":{\"en\":\"Schengen Area\"}},{\"pageid\":20913246,\"ns\":0,\"title\":\"Scarlett Johansson\",\"index\":9,\"description\":\"American actress (born 1984)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg/320px-Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg\",\"width\":320,\"height\":498},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:01:37Z\",\"lastrevid\":1224575630,\"length\":202536,\"displaytitle\":\"Scarlett Johansson\",\"varianttitles\":{\"en\":\"Scarlett Johansson\"}},{\"pageid\":48077208,\"ns\":0,\"title\":\"Sci-Hub\",\"index\":15,\"description\":\"Scientific research paper file sharing website\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/80/Sci-hub_screen_shot.png/320px-Sci-hub_screen_shot.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:10:13Z\",\"lastrevid\":1224715159,\"length\":100790,\"displaytitle\":\"Sci-Hub\",\"varianttitles\":{\"en\":\"Sci-Hub\"}},{\"pageid\":54256563,\"ns\":0,\"title\":\"Scottie Scheffler\",\"index\":3,\"description\":\"American professional golfer (born 1996)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:20:20Z\",\"lastrevid\":1224708630,\"length\":52043,\"displaytitle\":\"Scottie Scheffler\",\"varianttitles\":{\"en\":\"Scottie Scheffler\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b4c9002-37fd-4eee-9ec1-e864131f9b36","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.37400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":444862,"end_time":445193,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e9fccb5-c245-4d38-ba0d-45d9c5bcfd4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.90100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","method":"get","status_code":200,"start_time":445137,"end_time":445720,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:03:33 GMT","etag":"W/\"1223290316/c85c3be0-158b-11ef-a9e5-76db261de79a\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42dd09bf-ffa9-4177-a33e-64657e636e18","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:27.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":4349,"total_pss":83482,"rss":161116,"native_total_heap":36864,"native_free_heap":5008,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4335f5cc-3aa4-4322-8772-5cae6934b077","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.35800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":438525,"end_time":439177,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"53ce0da2-c212-4609-ac2c-75dc5d9fdeb0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:30.98900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","method":"get","status_code":200,"start_time":443740,"end_time":443808,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"29707","content-disposition":"inline;filename*=UTF-8''Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","content-length":"36518","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:48:24 GMT","etag":"0e664e18a7e8c56780982cdec4dcddf5","last-modified":"Wed, 29 Mar 2023 19:01:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587457f7-d345-48a3-92b5-dafaea6a7cae","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58dd307c-1098-4485-8516-5b9f940d7131","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.74800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":439567,"utime":69,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a3d6b76-9467-47e6-aa4b-64a3ba96fba8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.32800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","method":"get","status_code":200,"start_time":445099,"end_time":445147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"24691","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"1015","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 02:12:01 GMT","etag":"W/\"1223290316/596e4ba0-158c-11ef-9522-c7a0c2b73d32\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/443","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1355\",\"titles\":{\"canonical\":\"Bangalore\",\"normalized\":\"Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\"},\"pageid\":44275267,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":640,\"height\":458},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223290316\",\"tid\":\"d22b1496-0f44-11ef-8b85-8777b462a886\",\"timestamp\":\"2024-05-11T03:16:13Z\",\"description\":\"Capital of Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97888889,\"lon\":77.59166667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bangalore\"}},\"extract\":\"Bangalore, officially Bengaluru, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than 8 million and a metropolitan population of around 15 million, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e, officially \u003cb\u003eBengaluru\u003c/b\u003e, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than \u003cspan class=\\\"nowrap\\\"\u003e8 million\u003c/span\u003e and a metropolitan population of around \u003cspan class=\\\"nowrap\\\"\u003e15 million\u003c/span\u003e, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"753276be-d6ea-471e-b456-1e25ac8f12ca","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.55200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png","method":"get","status_code":200,"start_time":444066,"end_time":444371,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"18593","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"4332f2b58aa1329cfab7539c4f1728f2","last-modified":"Fri, 03 Jan 2020 02:00:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75e3f617-a93d-495d-9f8c-1152762aa7bc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"766acf39-c1f0-4ab0-bddd-f3b877d992ed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":445564,"utime":172,"cutime":0,"cstime":0,"stime":134,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7bf3cbc3-d54e-463c-bb26-389e99ed889c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":445797,"end_time":445798,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"839eab92-ed09-445d-af80-a46fbb8e7e72","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.03200000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":1731,"x":459.9756,"y":309.96094,"touch_down_time":444777,"touch_up_time":444848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85df57c5-6b2c-4e97-bd98-1dd22694f09c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85f394f3-d874-4de8-b6af-91635217e51a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.51000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg","method":"get","status_code":200,"start_time":444063,"end_time":444329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"56063","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"0eabf42026cfaa93bb864a0f792af18d","last-modified":"Sun, 16 Feb 2020 09:41:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f2185a2-125f-475c-91f0-bdd2301aa082","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.09300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2e0afa5-e1d3-450f-b990-89c3b616e61a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=sc\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":441687,"end_time":441880,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6c13d8f-88ab-4333-b41f-4389607b105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5517be6-9227-46c5-919b-cc4fb7493354","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.65800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=bangalore\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":444054,"end_time":444477,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-kmz8x","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"e2pm726c46ptnwr5s7wscl6z1"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":37533,\"ns\":0,\"title\":\"Indian Institute of Science\",\"redirecttitle\":\"Indian Institute of Science Bangalore\",\"index\":16,\"description\":\"Public university for scientific research and higher education in Bangalore\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3b/Indian_Institute_of_Science_2019_logo.svg/320px-Indian_Institute_of_Science_2019_logo.svg.png\",\"width\":320,\"height\":286},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1222905910,\"length\":98459,\"displaytitle\":\"Indian Institute of Science\",\"varianttitles\":{\"en\":\"Indian Institute of Science\"}},{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":6,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":652234,\"ns\":0,\"title\":\"Whitefield, Bangalore\",\"index\":11,\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg/320px-Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg\",\"width\":320,\"height\":182},\"coordinates\":[{\"lat\":12.97,\"lon\":77.715,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:12:24Z\",\"lastrevid\":1223602569,\"length\":16938,\"displaytitle\":\"Whitefield, Bangalore\",\"varianttitles\":{\"en\":\"Whitefield, Bangalore\"}},{\"pageid\":920017,\"ns\":0,\"title\":\"Bangalore IT.in\",\"index\":4,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:13:29Z\",\"lastrevid\":1209907618,\"length\":1333,\"displaytitle\":\"Bangalore IT.in\",\"varianttitles\":{\"en\":\"Bangalore IT.in\"}},{\"pageid\":2192062,\"ns\":0,\"title\":\"Bangalore (disambiguation)\",\"index\":17,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-04-27T01:58:17Z\",\"lastrevid\":1189264050,\"length\":1062,\"displaytitle\":\"Bangalore (disambiguation)\",\"varianttitles\":{\"en\":\"Bangalore (disambiguation)\"}},{\"pageid\":2409948,\"ns\":0,\"title\":\"Namma Metro\",\"redirecttitle\":\"Bangalore metro\",\"index\":7,\"description\":\"Rapid transit system in Bengaluru, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Metro_Trains_of_Namma_Metro.jpg/320px-Metro_Trains_of_Namma_Metro.jpg\",\"width\":320,\"height\":257},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:47Z\",\"lastrevid\":1222695638,\"length\":148660,\"displaytitle\":\"Namma Metro\",\"varianttitles\":{\"en\":\"Namma Metro\"}},{\"pageid\":2912063,\"ns\":0,\"title\":\"Bangalore division\",\"index\":5,\"description\":\"Place in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Karnataka-divisions-Bangalore.png/320px-Karnataka-divisions-Bangalore.png\",\"width\":320,\"height\":506},\"coordinates\":[{\"lat\":12.9667,\"lon\":77.5667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:21:45Z\",\"lastrevid\":1221849884,\"length\":4625,\"displaytitle\":\"Bangalore division\",\"varianttitles\":{\"en\":\"Bangalore division\"}},{\"pageid\":3950518,\"ns\":0,\"title\":\"Economy of Bangalore\",\"index\":19,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/UB_City_Bangalore.JPG/320px-UB_City_Bangalore.JPG\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:10Z\",\"lastrevid\":1220141129,\"length\":27299,\"displaytitle\":\"Economy of Bangalore\",\"varianttitles\":{\"en\":\"Economy of Bangalore\"}},{\"pageid\":4044762,\"ns\":0,\"title\":\"Bengaluru Airport\",\"redirecttitle\":\"Bangalore Airport\",\"index\":8,\"description\":\"International airport in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/55/Kempegowda_International_Airport_Bengaluru_Logo.svg/320px-Kempegowda_International_Airport_Bengaluru_Logo.svg.png\",\"width\":320,\"height\":261},\"coordinates\":[{\"lat\":13.20694444,\"lon\":77.70416667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:53:10Z\",\"lastrevid\":1224574455,\"length\":132714,\"displaytitle\":\"Bengaluru Airport\",\"varianttitles\":{\"en\":\"Bengaluru Airport\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":8599775,\"ns\":0,\"title\":\"Bangalore Palace\",\"index\":18,\"description\":\"Royal palace in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Bangalore_Mysore_Maharaja_Palace.jpg/320px-Bangalore_Mysore_Maharaja_Palace.jpg\",\"width\":320,\"height\":151},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:34:38Z\",\"lastrevid\":1219003008,\"length\":6055,\"displaytitle\":\"Bangalore Palace\",\"varianttitles\":{\"en\":\"Bangalore Palace\"}},{\"pageid\":15861688,\"ns\":0,\"title\":\"Royal Challengers Bangalore\",\"index\":2,\"description\":\"Bangalore based franchise in the Indian Premier League\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0a/Royal_Challengers_Bengaluru_Logo.png\",\"width\":267,\"height\":373},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:32:47Z\",\"lastrevid\":1224730459,\"length\":90102,\"displaytitle\":\"Royal Challengers Bangalore\",\"varianttitles\":{\"en\":\"Royal Challengers Bangalore\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":12,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":26809312,\"ns\":0,\"title\":\"Purple Line (Namma Metro)\",\"redirecttitle\":\"Purple Line (Bangalore Metro)\",\"index\":13,\"description\":\"Line of Bengaluru's Namma Metro\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Namma_Metro%27s_Purple_Line_trainset.jpg/320px-Namma_Metro%27s_Purple_Line_trainset.jpg\",\"width\":320,\"height\":161},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:51:03Z\",\"lastrevid\":1223987918,\"length\":54136,\"displaytitle\":\"Purple Line (Namma Metro)\",\"varianttitles\":{\"en\":\"Purple Line (Namma Metro)\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":10,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":3,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"coordinates\":[{\"lat\":12.97888889,\"lon\":77.59166667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":45249047,\"ns\":0,\"title\":\"Love in Bangalore\",\"index\":14,\"description\":\"1966 Indian film\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:28:46Z\",\"lastrevid\":1212970362,\"length\":1925,\"displaytitle\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\"}},{\"pageid\":49213725,\"ns\":0,\"title\":\"Bangalore Blue\",\"index\":9,\"description\":\"Noir grape variety\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Blue_grapes_in_vineyard.jpg/320px-Blue_grapes_in_vineyard.jpg\",\"width\":320,\"height\":425},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T18:56:11Z\",\"lastrevid\":1147235604,\"length\":4448,\"displaytitle\":\"Bangalore Blue\",\"varianttitles\":{\"en\":\"Bangalore Blue\"}},{\"pageid\":64312095,\"ns\":0,\"title\":\"Bangalore South Assembly constituency\",\"index\":20,\"description\":\"Vidhana Sabha constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/176-Bangalore_South_constituency.svg/320px-176-Bangalore_South_constituency.svg.png\",\"width\":320,\"height\":316},\"coordinates\":[{\"lat\":12.86,\"lon\":77.58,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T09:23:25Z\",\"lastrevid\":1213122229,\"length\":8807,\"displaytitle\":\"Bangalore South Assembly constituency\",\"varianttitles\":{\"en\":\"Bangalore South Assembly constituency\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb424ca9-1a7a-4497-96bc-df809fc8419c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Flag_of_Belarus.svg/46px-Flag_of_Belarus.svg.png","method":"get","status_code":200,"start_time":445731,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13839","content-disposition":"inline;filename*=UTF-8''Flag_of_Belarus.svg.webp","content-length":"328","content-type":"image/webp","date":"Mon, 20 May 2024 05:12:54 GMT","etag":"22b0881547d06a0a7abe5e914011fd27","last-modified":"Tue, 23 Jan 2024 23:32:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1468","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bf526972-039e-4c45-9ea6-b229f82fa7d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.11200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg","method":"get","status_code":200,"start_time":441708,"end_time":441931,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32703","content-disposition":"inline;filename*=UTF-8''Scottie_Scheffler_2023_01.jpg","content-length":"28013","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:58:25 GMT","etag":"0a5a95d6838ea5225265c871fcc485ea","last-modified":"Mon, 15 Apr 2024 00:29:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/41","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3d974d7-6bed-4ef7-86fc-9a47511c3692","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdaf5ea3-1230-4eb8-a77e-30d77a3f353e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png","method":"get","status_code":200,"start_time":441706,"end_time":441886,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13931","content-disposition":"inline;filename*=UTF-8''Flag_of_Scotland.svg.png","content-length":"1416","content-type":"image/png","date":"Mon, 20 May 2024 05:11:18 GMT","etag":"116e7ad3411fef2892a4f560eeb9ac88","last-modified":"Tue, 29 Nov 2022 04:40:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d02eead2-1b40-49e7-93f2-412ae3a02e3d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","method":"get","status_code":200,"start_time":444057,"end_time":444109,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70814","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"33213","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:23:16 GMT","etag":"a77891f913653956636f4e78e9f85235","last-modified":"Tue, 07 May 2024 15:28:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d764d4b6-d648-4f3e-8322-b9f6000acea9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg","method":"get","status_code":200,"start_time":444060,"end_time":444120,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"27582","content-length":"18792","content-type":"image/jpeg","date":"Mon, 20 May 2024 01:23:48 GMT","etag":"e9ffa25766587d06e79ff3dd741c597d","last-modified":"Mon, 16 Oct 2017 22:45:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/33","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"42h4vxu7q87nt73606bmuy05qbjngxl"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7a30ad8-4b8e-40a0-8946-e7303171f40b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.01800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","method":"get","status_code":200,"start_time":443748,"end_time":443837,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"72961","content-disposition":"inline;filename*=UTF-8''Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","content-length":"38362","content-type":"image/jpeg","date":"Sun, 19 May 2024 12:47:30 GMT","etag":"aa706922e801305aca334599b4f39fa0","last-modified":"Sat, 25 Dec 2021 09:15:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d880b56d-b684-4eda-9268-336a556f2d3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.81800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":445635,"end_time":445636,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d9c0e3fd-b810-4891-838e-f9dd6e34451c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.19900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png","method":"get","status_code":200,"start_time":443745,"end_time":444018,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Map_of_the_Schengen_Area.svg.png","content-length":"39412","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f2546c5b669cc609c38f9a34aa3e6e9d","last-modified":"Sun, 31 Mar 2024 09:12:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e06e9a69-d791-4a62-adfa-d98199d7483c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.74700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15468,"java_free_heap":795,"total_pss":96401,"rss":173048,"native_total_heap":45056,"native_free_heap":5333,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11cd222-e695-4fdb-a294-871b07429e34","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":445642,"end_time":445644,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1aaa75b-f364-40e6-aebd-721dc43cfec3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.62600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=s\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":null,"start_time":442085,"end_time":442445,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e72d75b6-cc4c-4f24-beb8-212c4107baed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","method":"get","status_code":200,"start_time":444061,"end_time":444115,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65960","content-disposition":"inline;filename*=UTF-8''Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","content-length":"31020","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:44:11 GMT","etag":"08b33c6ca658bce29fcf7e4b7a8f05d6","last-modified":"Sun, 03 Sep 2023 00:40:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8c64f9d-60be-4071-aeac-3a25d8a3f7ce","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.40400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg/640px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg","method":"get","status_code":200,"start_time":445163,"end_time":445223,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11994","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"86275","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:43:39 GMT","etag":"0d0008172016fe7d7be9c073762e4520","last-modified":"Tue, 07 May 2024 15:34:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb7e39b3-c886-4944-a778-965e3c480f7a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.83000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":445639,"end_time":445649,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0475d0-3299-42c2-88fe-7d13a7df094b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif","method":"get","status_code":200,"start_time":444064,"end_time":444125,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"8935","content-length":"12268","content-type":"image/gif","date":"Mon, 20 May 2024 06:34:35 GMT","etag":"1358f74d5c77a355cff8a92a55e4f0b4","last-modified":"Thu, 19 Jul 2018 05:50:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f35cf97a-5bda-4130-a6a2-bf7528059fa3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.54500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg","method":"get","status_code":200,"start_time":444065,"end_time":444364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Brigade_Road_Bangalore.jpg","content-length":"33965","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f521e65ca0e6ef701eccd34fa7f43aa1","last-modified":"Mon, 07 Aug 2023 23:58:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f363c188-b88a-4077-8ba7-7bd5975881d9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.27400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":441702,"end_time":442093,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"15872","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:29 GMT","etag":"8ef639120e64588af7912ced4f2670b2","last-modified":"Sat, 27 Feb 2016 04:12:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"eyxrcp83otgt6lam7bflqzgsciop8pe"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6cd5c59-2f0c-47fa-9bdb-53100bc3931c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f846ac03-1d92-4e21-981b-db3bbdde169b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.36600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png","method":"get","status_code":200,"start_time":444067,"end_time":444184,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25040","content-length":"108611","content-type":"image/png","date":"Mon, 20 May 2024 02:06:10 GMT","etag":"1df3af57bc9e53f01563d0903c555eb4","last-modified":"Sat, 07 Apr 2018 14:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"bf5j4qbkjfu4k6au3h63waco77l0jfr"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf00dab-e951-4745-aea6-6568fad0f660","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.60300000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":304,"start_time":445154,"end_time":445422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","if-modified-since":"Fri, 29 Dec 2023 14:07:42 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-7","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json index 1ad5c3e10..8900e233a 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json @@ -1 +1 @@ -[{"id":"01890716-db31-4706-a700-262310951c37","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07d6b463-58a6-4f41-8f2e-f79ba5367ebe","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.00600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","method":"get","status_code":200,"start_time":445864,"end_time":446825,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"cilesz1hwtkea6orxvpf8zjse","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":16880,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1185\",\"titles\":{\"canonical\":\"Karnataka\",\"normalized\":\"Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Gagan_Mahal_Bijapura.jpg/320px-Gagan_Mahal_Bijapura.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c8/Gagan_Mahal_Bijapura.jpg\",\"width\":1141,\"height\":762},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221678390\",\"tid\":\"f3048d21-07a3-11ef-bede-8f2058ec9a14\",\"timestamp\":\"2024-05-01T10:17:01Z\",\"description\":\"State in southern India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97,\"lon\":77.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka\"}},\"extract\":\"Karnataka, also known colloquially as Karunāḍu, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed Karnataka in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKarnataka\u003c/b\u003e, also known colloquially as \u003cb\u003eKarunāḍu\u003c/b\u003e, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed \u003ci\u003eKarnataka\u003c/i\u003e in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka\"},{\"pageid\":70023,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Mysore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10086\",\"titles\":{\"canonical\":\"Mysore\",\"normalized\":\"Mysore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Mysuru_Montage.jpg/320px-Mysuru_Montage.jpg\",\"width\":320,\"height\":561},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/56/Mysuru_Montage.jpg\",\"width\":1000,\"height\":1754},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223068352\",\"tid\":\"fba44fe0-0e2b-11ef-941e-facbc4e8df99\",\"timestamp\":\"2024-05-09T17:45:54Z\",\"description\":\"City in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.30861111,\"lon\":76.65305556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore\"}},\"extract\":\"Mysore, officially Mysuru, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore\u003c/b\u003e, officially \u003cb\u003eMysuru\u003c/b\u003e, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore\"},{\"pageid\":1380947,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Sullia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2571896\",\"titles\":{\"canonical\":\"Sullia\",\"normalized\":\"Sullia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/NMC_Sullia_front_view.jpg/320px-NMC_Sullia_front_view.jpg\",\"width\":320,\"height\":152},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8c/NMC_Sullia_front_view.jpg\",\"width\":1598,\"height\":759},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761149\",\"tid\":\"8421b874-1686-11ef-a103-4e90a2abe26d\",\"timestamp\":\"2024-05-20T08:54:07Z\",\"description\":\"Town in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.55805556,\"lon\":75.38916667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.wikipedia.org/wiki/Sullia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sullia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sullia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sullia\"}},\"extract\":\"Sullia is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSullia\u003c/b\u003e is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\u003c/p\u003e\",\"normalizedtitle\":\"Sullia\"},{\"pageid\":1468641,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Domlur\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3595289\",\"titles\":{\"canonical\":\"Domlur\",\"normalized\":\"Domlur\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Domlur_BusDepot.JPG/320px-Domlur_BusDepot.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ed/Domlur_BusDepot.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217931298\",\"tid\":\"55211a03-f5d9-11ee-a0d5-711647236d2f\",\"timestamp\":\"2024-04-08T18:53:48Z\",\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.9608157,\"lon\":77.6361322},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.wikipedia.org/wiki/Domlur?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Domlur\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Domlur\",\"edit\":\"https://en.m.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Domlur\"}},\"extract\":\"Domlur is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDomlur\u003c/b\u003e is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\u003c/p\u003e\",\"normalizedtitle\":\"Domlur\"},{\"pageid\":1728245,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Kempe_Gowda_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6387049\",\"titles\":{\"canonical\":\"Kempe_Gowda_I\",\"normalized\":\"Kempe Gowda I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Kempegowda_I.jpg/320px-Kempegowda_I.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ac/Kempegowda_I.jpg\",\"width\":810,\"height\":1001},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224445989\",\"tid\":\"4e12eb13-1519-11ef-aebb-a6511243e4ff\",\"timestamp\":\"2024-05-18T13:19:50Z\",\"description\":\"Founder of Bangalore (1510–1569)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kempe_Gowda_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"}},\"extract\":\"Kempe Gowda I locally venerated as Nadaprabhu Kempe Gowda, or commonly known as Kempe Gowda, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored Ganga-gauri-vilasa, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKempe Gowda I\u003c/b\u003e locally venerated as \u003cb\u003eNadaprabhu Kempe Gowda\u003c/b\u003e, or commonly known as \u003cb\u003eKempe Gowda\u003c/b\u003e, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored \u003ci\u003eGanga-gauri-vilasa\u003c/i\u003e, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\u003c/p\u003e\",\"normalizedtitle\":\"Kempe Gowda I\"},{\"pageid\":1859572,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Vishnuvardhan_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2097394\",\"titles\":{\"canonical\":\"Vishnuvardhan_(actor)\",\"normalized\":\"Vishnuvardhan (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Vishnuvardhan_2013_stamp_of_India.jpg/320px-Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":926,\"height\":692},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224093492\",\"tid\":\"e5293ca4-1349-11ef-9498-28fe94e6da64\",\"timestamp\":\"2024-05-16T06:02:37Z\",\"description\":\"Indian actor (1950–2009)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Vishnuvardhan_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"}},\"extract\":\"Sampath Kumar, known by his stage name Vishnuvardhan, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema. Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSampath Kumar\u003c/b\u003e, known by his stage name \u003cb\u003eVishnuvardhan\u003c/b\u003e, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema\u003ci\u003e.\u003c/i\u003e Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\u003c/p\u003e\",\"normalizedtitle\":\"Vishnuvardhan (actor)\"},{\"pageid\":2660511,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"History_of_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16056635\",\"titles\":{\"canonical\":\"History_of_Bangalore\",\"normalized\":\"History of Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg/320px-Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":320,\"height\":519},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":1161,\"height\":1884},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223594812\",\"tid\":\"fae91352-10e2-11ef-90f8-e15901067025\",\"timestamp\":\"2024-05-13T04:40:53Z\",\"description\":\"Account of past events in Bengaluru, India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:History_of_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/History_of_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:History_of_Bangalore\"}},\"extract\":\"Bangalore is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\u003c/p\u003e\",\"normalizedtitle\":\"History of Bangalore\"},{\"pageid\":3820976,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4978693\",\"titles\":{\"canonical\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"normalized\":\"Bruhat Bengaluru Mahanagara Palike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Bbmp..jpg/320px-Bbmp..jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4d/Bbmp..jpg\",\"width\":474,\"height\":355},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223428088\",\"tid\":\"6313e564-1002-11ef-891b-34bed192305e\",\"timestamp\":\"2024-05-12T01:53:11Z\",\"description\":\"Administrative body for the city of Bengaluru\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bruhat_Bengaluru_Mahanagara_Palike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"}},\"extract\":\"Bruhat Bengaluru Mahanagara Palike (BBMP) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km2. Its boundaries have expanded more than 10 times over the last six decades.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBruhat Bengaluru Mahanagara Palike\u003c/b\u003e (\u003cb\u003eBBMP\u003c/b\u003e) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km\u003csup\u003e2\u003c/sup\u003e. Its boundaries have expanded more than 10 times over the last six decades.\u003c/p\u003e\",\"normalizedtitle\":\"Bruhat Bengaluru Mahanagara Palike\"},{\"pageid\":8010315,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Mysore_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1529219\",\"titles\":{\"canonical\":\"Mysore_Airport\",\"normalized\":\"Mysore Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Mysore_Airport.jpg/320px-Mysore_Airport.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Mysore_Airport.jpg\",\"width\":6000,\"height\":3375},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221901149\",\"tid\":\"229dd7aa-08aa-11ef-b1e4-c7f994ba9d24\",\"timestamp\":\"2024-05-02T17:33:49Z\",\"description\":\"Airport in Mysuru, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.2325,\"lon\":76.65638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore_Airport\"}},\"extract\":\"Mysore Airport, also known as Mandakalli Airport, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore Airport\u003c/b\u003e, also known as \u003cb\u003eMandakalli Airport\u003c/b\u003e, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore Airport\"},{\"pageid\":9387475,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Education_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5341051\",\"titles\":{\"canonical\":\"Education_in_Karnataka\",\"normalized\":\"Education in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Iisc-Founder.jpg/320px-Iisc-Founder.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/76/Iisc-Founder.jpg\",\"width\":480,\"height\":640},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210322104\",\"tid\":\"7aebbc8e-d44a-11ee-8b01-3af3a6ee520f\",\"timestamp\":\"2024-02-26T01:58:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Education_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Education_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Education_in_Karnataka\"}},\"extract\":\"The state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\",\"extract_html\":\"\u003cp\u003eThe state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\u003c/p\u003e\",\"normalizedtitle\":\"Education in Karnataka\"},{\"pageid\":10512950,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Karnataka_Rakshana_Vedike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3520980\",\"titles\":{\"canonical\":\"Karnataka_Rakshana_Vedike\",\"normalized\":\"Karnataka Rakshana Vedike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220018590\",\"tid\":\"46673f46-ffc1-11ee-9790-b9ab8d6af39d\",\"timestamp\":\"2024-04-21T09:26:47Z\",\"description\":\"Regionalistic group in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka_Rakshana_Vedike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"}},\"extract\":\"\\n\\nThe Karnataka Rakshana Vedike, popularly known as, KaRaVe and abbreviated as the KRV is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\nThe \u003cb\u003eKarnataka Rakshana Vedike\u003c/b\u003e, popularly known as, \u003cb\u003eKaRaVe\u003c/b\u003e and abbreviated as the \u003cb\u003eKRV\u003c/b\u003e is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka Rakshana Vedike\"},{\"pageid\":11661332,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Media_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6805710\",\"titles\":{\"canonical\":\"Media_in_Karnataka\",\"normalized\":\"Media in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184421697\",\"tid\":\"07f5266d-7fa2-11ee-b9ec-9c2b5ad4ac79\",\"timestamp\":\"2023-11-10T08:20:39Z\",\"description\":\"Overview of the media in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Media_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Media_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Media_in_Karnataka\"}},\"extract\":\"\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\",\"extract_html\":\"\u003cp\u003e\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\u003c/p\u003e\",\"normalizedtitle\":\"Media in Karnataka\"},{\"pageid\":15749661,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"List_of_tourist_attractions_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6643497\",\"titles\":{\"canonical\":\"List_of_tourist_attractions_in_Bangalore\",\"normalized\":\"List of tourist attractions in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Vidhana_Soudha_sunset.jpg\",\"width\":2027,\"height\":890},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217869735\",\"tid\":\"9bec158d-f593-11ee-bcea-f90d3955aa30\",\"timestamp\":\"2024-04-08T10:34:42Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_tourist_attractions_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"}},\"extract\":\"Bengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\",\"extract_html\":\"\u003cp\u003eBengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\u003c/p\u003e\",\"normalizedtitle\":\"List of tourist attractions in Bangalore\"},{\"pageid\":19041261,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Lakes_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6478987\",\"titles\":{\"canonical\":\"Lakes_in_Bangalore\",\"normalized\":\"Lakes in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222719449\",\"tid\":\"b85ab411-0c82-11ef-81ad-288042c6a3ef\",\"timestamp\":\"2024-05-07T15:01:45Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lakes_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"}},\"extract\":\"Lakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\",\"extract_html\":\"\u003cp\u003eLakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\u003c/p\u003e\",\"normalizedtitle\":\"Lakes in Bangalore\"},{\"pageid\":30806004,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Rajarajeshwari_Nagar,_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5320813\",\"titles\":{\"canonical\":\"Rajarajeshwari_Nagar,_Bangalore\",\"normalized\":\"Rajarajeshwari Nagar, Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg/320px-Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224389480\",\"tid\":\"27c2652a-14c3-11ef-97ec-318a54a06244\",\"timestamp\":\"2024-05-18T03:03:09Z\",\"description\":\"Neighborhood in Bengaluru, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.929949,\"lon\":77.536011},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Rajarajeshwari_Nagar%2C_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"}},\"extract\":\"Rajarajeshwari Nagar, officially Rajarajeshwari Nagara is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRajarajeshwari Nagar,\u003c/b\u003e officially \u003cb\u003eRajarajeshwari Nagara\u003c/b\u003e is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\u003c/p\u003e\",\"normalizedtitle\":\"Rajarajeshwari Nagar, Bangalore\"},{\"pageid\":30872437,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"S._L._Bhyrappa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5246375\",\"titles\":{\"canonical\":\"S._L._Bhyrappa\",\"normalized\":\"S. L. Bhyrappa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/S.L.Bhyrappa.jpg/320px-S.L.Bhyrappa.jpg\",\"width\":320,\"height\":460},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/S.L.Bhyrappa.jpg\",\"width\":2498,\"height\":3592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216323851\",\"tid\":\"c39bfe7e-ee82-11ee-8c4a-fea0472edf16\",\"timestamp\":\"2024-03-30T10:46:29Z\",\"description\":\"Indian novelist, philosopher and screenwriter\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/S._L._Bhyrappa\",\"edit\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"}},\"extract\":\"Santeshivara Lingannaiah Bhyrappa is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSanteshivara Lingannaiah Bhyrappa\u003c/b\u003e is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\u003c/p\u003e\",\"normalizedtitle\":\"S. L. Bhyrappa\"},{\"pageid\":36724102,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6603582\",\"titles\":{\"canonical\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"normalized\":\"List of Vijayanagara era temples in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg/320px-View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":4608,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1175359699\",\"tid\":\"bf0b5a2b-530b-11ee-a780-035970c51a51\",\"timestamp\":\"2023-09-14T14:34:01Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Vijayanagara_era_temples_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"}},\"extract\":\"\\n\\n\\nThe List of Vijayanagara era temples in Karnataka includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\",\"extract_html\":\"\u003cp\u003e\\n\\n\\nThe \u003cb\u003eList of Vijayanagara era temples in Karnataka\u003c/b\u003e includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\u003c/p\u003e\",\"normalizedtitle\":\"List of Vijayanagara era temples in Karnataka\"},{\"pageid\":47496105,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Prakash_Belawadi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7238168\",\"titles\":{\"canonical\":\"Prakash_Belawadi\",\"normalized\":\"Prakash Belawadi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Prakash_Belavadi_4.jpg/320px-Prakash_Belavadi_4.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Prakash_Belavadi_4.jpg\",\"width\":731,\"height\":548},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222797567\",\"tid\":\"487108c8-0ccc-11ef-827c-9c8edf2a32b0\",\"timestamp\":\"2024-05-07T23:48:20Z\",\"description\":\"Indian film director\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prakash_Belawadi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prakash_Belawadi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prakash_Belawadi\"}},\"extract\":\"Prakash Belawadi is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrakash Belawadi\u003c/b\u003e is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\u003c/p\u003e\",\"normalizedtitle\":\"Prakash Belawadi\"},{\"pageid\":50300633,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Jayciana\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24950637\",\"titles\":{\"canonical\":\"Jayciana\",\"normalized\":\"Jayciana\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220540943\",\"tid\":\"538e6384-0239-11ef-80db-046bfbaf07f2\",\"timestamp\":\"2024-04-24T12:51:11Z\",\"description\":\"Annual cultural festival\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.wikipedia.org/wiki/Jayciana?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jayciana\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jayciana\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jayciana\"}},\"extract\":\"Jayciana is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJayciana\u003c/b\u003e is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\u003c/p\u003e\",\"normalizedtitle\":\"Jayciana\"},{\"pageid\":66277810,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104903080\",\"titles\":{\"canonical\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"normalized\":\"2015 Bruhat Bengaluru Mahanagara Palike election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/320px-Lotus_flower_symbol.svg.png\",\"width\":320,\"height\":311},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/340px-Lotus_flower_symbol.svg.png\",\"width\":340,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218535775\",\"tid\":\"59cf1993-f8a8-11ee-8d79-f8805439f155\",\"timestamp\":\"2024-04-12T08:40:44Z\",\"description\":\"2015 election in India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"}},\"extract\":\"The 2015 Bruhat Bengaluru Mahanagara Palike election was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/b\u003e was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\u003c/p\u003e\",\"normalizedtitle\":\"2015 Bruhat Bengaluru Mahanagara Palike election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"097ec691-25f2-404d-b694-e925601b21af","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17719,"java_free_heap":5407,"total_pss":167889,"rss":262560,"native_total_heap":79872,"native_free_heap":5795,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a8e6c6-feb8-402b-99b3-30a55752e97b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/32px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":445893,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44707","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1036","content-type":"image/webp","date":"Sun, 19 May 2024 20:38:25 GMT","etag":"cd739a43c44b181292f80f73d577c105","last-modified":"Thu, 08 Jun 2023 05:53:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2982","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"16efd73a-5d9f-4a6b-89b0-3800990a6ed1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.32000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"22216446-310d-4e6a-9ae5-d2a61c3673e0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.96500000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":919.9512,"y":205.95703,"touch_down_time":451653,"touch_up_time":451782},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b477b78-bcf8-4a9e-b0b3-75aad4664124","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/38px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":445940,"end_time":445986,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"16013","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"1648","content-type":"image/webp","date":"Mon, 20 May 2024 04:36:40 GMT","etag":"f23eec45f0a338280a1d8cb9b39ccc75","last-modified":"Fri, 08 Sep 2023 17:18:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/977","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c7dfd53-6318-403d-8968-136763ddfcb6","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/36px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":445911,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9211","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"1606","content-type":"image/webp","date":"Mon, 20 May 2024 06:30:02 GMT","etag":"70423aa778261ff9ae4261991f013674","last-modified":"Sun, 06 Aug 2023 03:57:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/622","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f54bc85-ef1a-41f9-991f-83508326ac38","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.73200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"page_toolbar_button_show_overflow_menu","width":126,"height":126,"x":1009.96216,"y":182.98828,"touch_down_time":453453,"touch_up_time":453544},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3749a6c5-f0b4-4267-b177-b00e2f436be2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.87300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":440.95825,"y":1468.9453,"end_x":464.98535,"end_y":986.9531,"direction":"up","touch_down_time":446140,"touch_up_time":446691},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3bb86a55-1d02-470a-b0b0-03cb314e44d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.99500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f67b454-4def-4a6d-afff-91b4e39ae616","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/42px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":445868,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53433","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"1908","content-type":"image/webp","date":"Sun, 19 May 2024 18:13:00 GMT","etag":"9eb22eceec2d1971062ce08b67dcf9d1","last-modified":"Wed, 24 May 2023 14:58:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1035","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42354935-daae-41b2-aaee-9d106d83401e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/38px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":445819,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11063","content-length":"1174","content-type":"image/webp","date":"Mon, 20 May 2024 05:59:09 GMT","etag":"da286f6370a9d33991278d05967df0d1","last-modified":"Fri, 21 Jun 2019 08:25:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/261","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4d314163-274d-4ee4-a553-3fe53c43d558","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/42px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445776,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"57502","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"226","content-type":"image/webp","date":"Sun, 19 May 2024 17:05:10 GMT","etag":"f8b6d8e11e2a7c4dd8ac9388127be890","last-modified":"Sun, 23 Jul 2023 02:01:59 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1442","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"504e2ccc-d49e-4012-b288-7ada75447e4e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.72000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"505e805e-7539-4c13-a4fa-cfc370d249dc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52c13ba3-368e-4a0d-82d8-bec835cca1ea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b226149-7edd-4a5a-87b9-e46797f09421","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.20200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6162ff07-872c-4a07-b5ec-8d21952f59ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.58900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449128,"end_time":449408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"680f575d-eeeb-4a38-9e2f-a7b491adf3e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.33500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6986a335-2f6c-45dd-a0bf-d7d49589b3c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e004789-10bf-4e4f-801f-68a274380b59","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/28px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":445848,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"43774","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"836","content-type":"image/webp","date":"Sun, 19 May 2024 20:53:59 GMT","etag":"126f8494b0f116e1ee2b890ac64ea4d3","last-modified":"Sat, 16 Mar 2024 06:34:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1857","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71423733-5fee-419c-ba08-870284a59d23","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.29900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0435eb-f264-4df1-8d33-6c6016482897","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8be6c160-754d-444f-b5c1-2c68c04e42d2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449409,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"712","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9405717b-7603-4f9a-90c2-4d5287ab4c22","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/42px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":445954,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69339","content-disposition":"inline;filename*=UTF-8''Wikiversity_logo_2017.svg.webp","content-length":"562","content-type":"image/webp","date":"Sun, 19 May 2024 13:47:54 GMT","etag":"4a828dc89ddea450dcf8a0a529237641","last-modified":"Sat, 18 Dec 2021 10:16:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/880","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95daa89a-542f-44c7-9370-e80734196480","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.19500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":450698,"end_time":451013,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0ba2920-e465-4671-b9a9-2d86a08fffe8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.71600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a10b6579-b5c1-4907-ba1e-e24f94c7f22f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.87800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2174cd3-29a0-46d5-aa30-b49aee72abf3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.01900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":452531,"end_time":452838,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b13de324-39e8-4668-a2be-51704c96f738","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1c66dff-0680-4e09-9b73-8912605a408a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Bangalore_Palace.jpg/42px-Bangalore_Palace.jpg","method":"get","status_code":200,"start_time":445805,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"30598","content-disposition":"inline;filename*=UTF-8''Bangalore_Palace.jpg","content-length":"1106","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:33:34 GMT","etag":"a681d8eae4e88991c2f76c520d5595ca","last-modified":"Sat, 18 Dec 2021 07:38:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b23bef50-30a3-4cca-b2d3-5c3eb4cc91c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Openstreetmap_logo.svg/32px-Openstreetmap_logo.svg.png","method":"get","status_code":200,"start_time":445774,"end_time":445865,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36982","content-disposition":"inline;filename*=UTF-8''Openstreetmap_logo.svg.webp","content-length":"2404","content-type":"image/webp","date":"Sun, 19 May 2024 22:47:11 GMT","etag":"16a8ee4b7e7bc64dea201b90e5a4a6d3","last-modified":"Mon, 19 Sep 2022 10:52:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1679","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b2805971-2fba-4acd-b984-e0800830bd05","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":448565,"utime":248,"cutime":0,"cstime":0,"stime":194,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8f9e59f-4ac9-4522-ae0a-6392a92ef5ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17168,"java_free_heap":6064,"total_pss":168661,"rss":264472,"native_total_heap":66560,"native_free_heap":6093,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5273a31-336a-4bc8-9f7e-f47c3a28d65d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":451565,"utime":272,"cutime":0,"cstime":0,"stime":212,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5c16395-9eb1-42ca-b7df-598e26f3a6e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.10300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":525.9595,"y":465.9375,"end_x":521.97144,"end_y":745.95703,"direction":"down","touch_down_time":447656,"touch_up_time":447919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cb066e6e-e8b4-49b1-a4ac-ad14bf3d0e0e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17538,"java_free_heap":5033,"total_pss":172697,"rss":268200,"native_total_heap":71680,"native_free_heap":6427,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdf298bf-4d1b-49da-aa7c-4cda57f3ffa5","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cee0e50e-8806-4e82-841b-cbe20c90a44e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.30000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cfdc0f27-5fc9-471b-8c94-fb36f55f9c81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.61300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":488.9795,"y":1251.9141,"end_x":511.9519,"end_y":409.98047,"direction":"up","touch_down_time":447042,"touch_up_time":447426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5d14e2d-b28d-4ecd-a02c-bc4160e30535","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.22100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/42px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":445997,"end_time":446039,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32409","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"198","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:24 GMT","etag":"b02818fe22f012e3bba0c3b2853b41a8","last-modified":"Thu, 04 Jan 2024 04:40:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1013","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6ccf0c9-1f29-449a-b9f3-dd0cef6d5231","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.28600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg","method":"get","status_code":200,"start_time":446848,"end_time":447105,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"12473","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:34 GMT","etag":"2c7bdca426cac204cbfdf15e3b71080e","last-modified":"Sat, 26 Mar 2016 10:36:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qw3ai9uecb9knskjpgi4oon5o4ug903"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8941c70-48d3-4dcc-89db-eac04a71dc3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.21200000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":904.95483,"y":149.9414,"touch_down_time":448957,"touch_up_time":449026},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e567f0c5-10b0-4669-8702-cbbf1c793160","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.38400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec4f7db5-556e-42da-878e-f80a9bc8ae45","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449410,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"706","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9d38c6-2f20-4fcf-8140-9785e36abd17","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/38px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":445987,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76214","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"518","content-type":"image/webp","date":"Sun, 19 May 2024 11:53:19 GMT","etag":"66771d756c5d4092be18d3ab3de44be0","last-modified":"Fri, 04 Aug 2023 01:39:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1541","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ecf6ec4c-4d9c-484b-90b7-828d07b78c9a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Terra.png/38px-Terra.png","method":"get","status_code":200,"start_time":445817,"end_time":445868,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58457","content-disposition":"inline;filename*=UTF-8''Terra.png.webp","content-length":"2948","content-type":"image/webp","date":"Sun, 19 May 2024 16:49:15 GMT","etag":"48f16c644a58aaca70b0719a23ae3cef","last-modified":"Thu, 27 Apr 2023 04:49:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/289","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0975435-c6a6-48e8-8b49-0d2008de2ff3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f2dfc82c-11c4-4b0b-931e-658c3d21c910","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17216,"java_free_heap":5996,"total_pss":155265,"rss":250772,"native_total_heap":91136,"native_free_heap":6339,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"01890716-db31-4706-a700-262310951c37","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07d6b463-58a6-4f41-8f2e-f79ba5367ebe","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.00600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","method":"get","status_code":200,"start_time":445864,"end_time":446825,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"cilesz1hwtkea6orxvpf8zjse","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":16880,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1185\",\"titles\":{\"canonical\":\"Karnataka\",\"normalized\":\"Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Gagan_Mahal_Bijapura.jpg/320px-Gagan_Mahal_Bijapura.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c8/Gagan_Mahal_Bijapura.jpg\",\"width\":1141,\"height\":762},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221678390\",\"tid\":\"f3048d21-07a3-11ef-bede-8f2058ec9a14\",\"timestamp\":\"2024-05-01T10:17:01Z\",\"description\":\"State in southern India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97,\"lon\":77.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka\"}},\"extract\":\"Karnataka, also known colloquially as Karunāḍu, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed Karnataka in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKarnataka\u003c/b\u003e, also known colloquially as \u003cb\u003eKarunāḍu\u003c/b\u003e, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed \u003ci\u003eKarnataka\u003c/i\u003e in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka\"},{\"pageid\":70023,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Mysore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10086\",\"titles\":{\"canonical\":\"Mysore\",\"normalized\":\"Mysore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Mysuru_Montage.jpg/320px-Mysuru_Montage.jpg\",\"width\":320,\"height\":561},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/56/Mysuru_Montage.jpg\",\"width\":1000,\"height\":1754},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223068352\",\"tid\":\"fba44fe0-0e2b-11ef-941e-facbc4e8df99\",\"timestamp\":\"2024-05-09T17:45:54Z\",\"description\":\"City in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.30861111,\"lon\":76.65305556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore\"}},\"extract\":\"Mysore, officially Mysuru, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore\u003c/b\u003e, officially \u003cb\u003eMysuru\u003c/b\u003e, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore\"},{\"pageid\":1380947,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Sullia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2571896\",\"titles\":{\"canonical\":\"Sullia\",\"normalized\":\"Sullia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/NMC_Sullia_front_view.jpg/320px-NMC_Sullia_front_view.jpg\",\"width\":320,\"height\":152},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8c/NMC_Sullia_front_view.jpg\",\"width\":1598,\"height\":759},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761149\",\"tid\":\"8421b874-1686-11ef-a103-4e90a2abe26d\",\"timestamp\":\"2024-05-20T08:54:07Z\",\"description\":\"Town in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.55805556,\"lon\":75.38916667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.wikipedia.org/wiki/Sullia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sullia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sullia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sullia\"}},\"extract\":\"Sullia is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSullia\u003c/b\u003e is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\u003c/p\u003e\",\"normalizedtitle\":\"Sullia\"},{\"pageid\":1468641,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Domlur\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3595289\",\"titles\":{\"canonical\":\"Domlur\",\"normalized\":\"Domlur\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Domlur_BusDepot.JPG/320px-Domlur_BusDepot.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ed/Domlur_BusDepot.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217931298\",\"tid\":\"55211a03-f5d9-11ee-a0d5-711647236d2f\",\"timestamp\":\"2024-04-08T18:53:48Z\",\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.9608157,\"lon\":77.6361322},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.wikipedia.org/wiki/Domlur?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Domlur\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Domlur\",\"edit\":\"https://en.m.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Domlur\"}},\"extract\":\"Domlur is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDomlur\u003c/b\u003e is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\u003c/p\u003e\",\"normalizedtitle\":\"Domlur\"},{\"pageid\":1728245,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Kempe_Gowda_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6387049\",\"titles\":{\"canonical\":\"Kempe_Gowda_I\",\"normalized\":\"Kempe Gowda I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Kempegowda_I.jpg/320px-Kempegowda_I.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ac/Kempegowda_I.jpg\",\"width\":810,\"height\":1001},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224445989\",\"tid\":\"4e12eb13-1519-11ef-aebb-a6511243e4ff\",\"timestamp\":\"2024-05-18T13:19:50Z\",\"description\":\"Founder of Bangalore (1510–1569)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kempe_Gowda_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"}},\"extract\":\"Kempe Gowda I locally venerated as Nadaprabhu Kempe Gowda, or commonly known as Kempe Gowda, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored Ganga-gauri-vilasa, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKempe Gowda I\u003c/b\u003e locally venerated as \u003cb\u003eNadaprabhu Kempe Gowda\u003c/b\u003e, or commonly known as \u003cb\u003eKempe Gowda\u003c/b\u003e, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored \u003ci\u003eGanga-gauri-vilasa\u003c/i\u003e, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\u003c/p\u003e\",\"normalizedtitle\":\"Kempe Gowda I\"},{\"pageid\":1859572,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Vishnuvardhan_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2097394\",\"titles\":{\"canonical\":\"Vishnuvardhan_(actor)\",\"normalized\":\"Vishnuvardhan (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Vishnuvardhan_2013_stamp_of_India.jpg/320px-Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":926,\"height\":692},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224093492\",\"tid\":\"e5293ca4-1349-11ef-9498-28fe94e6da64\",\"timestamp\":\"2024-05-16T06:02:37Z\",\"description\":\"Indian actor (1950–2009)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Vishnuvardhan_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"}},\"extract\":\"Sampath Kumar, known by his stage name Vishnuvardhan, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema. Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSampath Kumar\u003c/b\u003e, known by his stage name \u003cb\u003eVishnuvardhan\u003c/b\u003e, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema\u003ci\u003e.\u003c/i\u003e Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\u003c/p\u003e\",\"normalizedtitle\":\"Vishnuvardhan (actor)\"},{\"pageid\":2660511,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"History_of_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16056635\",\"titles\":{\"canonical\":\"History_of_Bangalore\",\"normalized\":\"History of Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg/320px-Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":320,\"height\":519},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":1161,\"height\":1884},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223594812\",\"tid\":\"fae91352-10e2-11ef-90f8-e15901067025\",\"timestamp\":\"2024-05-13T04:40:53Z\",\"description\":\"Account of past events in Bengaluru, India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:History_of_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/History_of_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:History_of_Bangalore\"}},\"extract\":\"Bangalore is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\u003c/p\u003e\",\"normalizedtitle\":\"History of Bangalore\"},{\"pageid\":3820976,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4978693\",\"titles\":{\"canonical\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"normalized\":\"Bruhat Bengaluru Mahanagara Palike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Bbmp..jpg/320px-Bbmp..jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4d/Bbmp..jpg\",\"width\":474,\"height\":355},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223428088\",\"tid\":\"6313e564-1002-11ef-891b-34bed192305e\",\"timestamp\":\"2024-05-12T01:53:11Z\",\"description\":\"Administrative body for the city of Bengaluru\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bruhat_Bengaluru_Mahanagara_Palike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"}},\"extract\":\"Bruhat Bengaluru Mahanagara Palike (BBMP) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km2. Its boundaries have expanded more than 10 times over the last six decades.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBruhat Bengaluru Mahanagara Palike\u003c/b\u003e (\u003cb\u003eBBMP\u003c/b\u003e) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km\u003csup\u003e2\u003c/sup\u003e. Its boundaries have expanded more than 10 times over the last six decades.\u003c/p\u003e\",\"normalizedtitle\":\"Bruhat Bengaluru Mahanagara Palike\"},{\"pageid\":8010315,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Mysore_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1529219\",\"titles\":{\"canonical\":\"Mysore_Airport\",\"normalized\":\"Mysore Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Mysore_Airport.jpg/320px-Mysore_Airport.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Mysore_Airport.jpg\",\"width\":6000,\"height\":3375},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221901149\",\"tid\":\"229dd7aa-08aa-11ef-b1e4-c7f994ba9d24\",\"timestamp\":\"2024-05-02T17:33:49Z\",\"description\":\"Airport in Mysuru, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.2325,\"lon\":76.65638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore_Airport\"}},\"extract\":\"Mysore Airport, also known as Mandakalli Airport, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore Airport\u003c/b\u003e, also known as \u003cb\u003eMandakalli Airport\u003c/b\u003e, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore Airport\"},{\"pageid\":9387475,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Education_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5341051\",\"titles\":{\"canonical\":\"Education_in_Karnataka\",\"normalized\":\"Education in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Iisc-Founder.jpg/320px-Iisc-Founder.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/76/Iisc-Founder.jpg\",\"width\":480,\"height\":640},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210322104\",\"tid\":\"7aebbc8e-d44a-11ee-8b01-3af3a6ee520f\",\"timestamp\":\"2024-02-26T01:58:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Education_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Education_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Education_in_Karnataka\"}},\"extract\":\"The state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\",\"extract_html\":\"\u003cp\u003eThe state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\u003c/p\u003e\",\"normalizedtitle\":\"Education in Karnataka\"},{\"pageid\":10512950,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Karnataka_Rakshana_Vedike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3520980\",\"titles\":{\"canonical\":\"Karnataka_Rakshana_Vedike\",\"normalized\":\"Karnataka Rakshana Vedike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220018590\",\"tid\":\"46673f46-ffc1-11ee-9790-b9ab8d6af39d\",\"timestamp\":\"2024-04-21T09:26:47Z\",\"description\":\"Regionalistic group in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka_Rakshana_Vedike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"}},\"extract\":\"\\n\\nThe Karnataka Rakshana Vedike, popularly known as, KaRaVe and abbreviated as the KRV is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\nThe \u003cb\u003eKarnataka Rakshana Vedike\u003c/b\u003e, popularly known as, \u003cb\u003eKaRaVe\u003c/b\u003e and abbreviated as the \u003cb\u003eKRV\u003c/b\u003e is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka Rakshana Vedike\"},{\"pageid\":11661332,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Media_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6805710\",\"titles\":{\"canonical\":\"Media_in_Karnataka\",\"normalized\":\"Media in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184421697\",\"tid\":\"07f5266d-7fa2-11ee-b9ec-9c2b5ad4ac79\",\"timestamp\":\"2023-11-10T08:20:39Z\",\"description\":\"Overview of the media in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Media_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Media_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Media_in_Karnataka\"}},\"extract\":\"\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\",\"extract_html\":\"\u003cp\u003e\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\u003c/p\u003e\",\"normalizedtitle\":\"Media in Karnataka\"},{\"pageid\":15749661,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"List_of_tourist_attractions_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6643497\",\"titles\":{\"canonical\":\"List_of_tourist_attractions_in_Bangalore\",\"normalized\":\"List of tourist attractions in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Vidhana_Soudha_sunset.jpg\",\"width\":2027,\"height\":890},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217869735\",\"tid\":\"9bec158d-f593-11ee-bcea-f90d3955aa30\",\"timestamp\":\"2024-04-08T10:34:42Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_tourist_attractions_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"}},\"extract\":\"Bengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\",\"extract_html\":\"\u003cp\u003eBengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\u003c/p\u003e\",\"normalizedtitle\":\"List of tourist attractions in Bangalore\"},{\"pageid\":19041261,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Lakes_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6478987\",\"titles\":{\"canonical\":\"Lakes_in_Bangalore\",\"normalized\":\"Lakes in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222719449\",\"tid\":\"b85ab411-0c82-11ef-81ad-288042c6a3ef\",\"timestamp\":\"2024-05-07T15:01:45Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lakes_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"}},\"extract\":\"Lakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\",\"extract_html\":\"\u003cp\u003eLakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\u003c/p\u003e\",\"normalizedtitle\":\"Lakes in Bangalore\"},{\"pageid\":30806004,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Rajarajeshwari_Nagar,_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5320813\",\"titles\":{\"canonical\":\"Rajarajeshwari_Nagar,_Bangalore\",\"normalized\":\"Rajarajeshwari Nagar, Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg/320px-Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224389480\",\"tid\":\"27c2652a-14c3-11ef-97ec-318a54a06244\",\"timestamp\":\"2024-05-18T03:03:09Z\",\"description\":\"Neighborhood in Bengaluru, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.929949,\"lon\":77.536011},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Rajarajeshwari_Nagar%2C_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"}},\"extract\":\"Rajarajeshwari Nagar, officially Rajarajeshwari Nagara is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRajarajeshwari Nagar,\u003c/b\u003e officially \u003cb\u003eRajarajeshwari Nagara\u003c/b\u003e is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\u003c/p\u003e\",\"normalizedtitle\":\"Rajarajeshwari Nagar, Bangalore\"},{\"pageid\":30872437,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"S._L._Bhyrappa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5246375\",\"titles\":{\"canonical\":\"S._L._Bhyrappa\",\"normalized\":\"S. L. Bhyrappa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/S.L.Bhyrappa.jpg/320px-S.L.Bhyrappa.jpg\",\"width\":320,\"height\":460},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/S.L.Bhyrappa.jpg\",\"width\":2498,\"height\":3592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216323851\",\"tid\":\"c39bfe7e-ee82-11ee-8c4a-fea0472edf16\",\"timestamp\":\"2024-03-30T10:46:29Z\",\"description\":\"Indian novelist, philosopher and screenwriter\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/S._L._Bhyrappa\",\"edit\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"}},\"extract\":\"Santeshivara Lingannaiah Bhyrappa is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSanteshivara Lingannaiah Bhyrappa\u003c/b\u003e is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\u003c/p\u003e\",\"normalizedtitle\":\"S. L. Bhyrappa\"},{\"pageid\":36724102,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6603582\",\"titles\":{\"canonical\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"normalized\":\"List of Vijayanagara era temples in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg/320px-View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":4608,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1175359699\",\"tid\":\"bf0b5a2b-530b-11ee-a780-035970c51a51\",\"timestamp\":\"2023-09-14T14:34:01Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Vijayanagara_era_temples_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"}},\"extract\":\"\\n\\n\\nThe List of Vijayanagara era temples in Karnataka includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\",\"extract_html\":\"\u003cp\u003e\\n\\n\\nThe \u003cb\u003eList of Vijayanagara era temples in Karnataka\u003c/b\u003e includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\u003c/p\u003e\",\"normalizedtitle\":\"List of Vijayanagara era temples in Karnataka\"},{\"pageid\":47496105,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Prakash_Belawadi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7238168\",\"titles\":{\"canonical\":\"Prakash_Belawadi\",\"normalized\":\"Prakash Belawadi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Prakash_Belavadi_4.jpg/320px-Prakash_Belavadi_4.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Prakash_Belavadi_4.jpg\",\"width\":731,\"height\":548},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222797567\",\"tid\":\"487108c8-0ccc-11ef-827c-9c8edf2a32b0\",\"timestamp\":\"2024-05-07T23:48:20Z\",\"description\":\"Indian film director\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prakash_Belawadi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prakash_Belawadi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prakash_Belawadi\"}},\"extract\":\"Prakash Belawadi is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrakash Belawadi\u003c/b\u003e is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\u003c/p\u003e\",\"normalizedtitle\":\"Prakash Belawadi\"},{\"pageid\":50300633,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Jayciana\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24950637\",\"titles\":{\"canonical\":\"Jayciana\",\"normalized\":\"Jayciana\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220540943\",\"tid\":\"538e6384-0239-11ef-80db-046bfbaf07f2\",\"timestamp\":\"2024-04-24T12:51:11Z\",\"description\":\"Annual cultural festival\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.wikipedia.org/wiki/Jayciana?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jayciana\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jayciana\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jayciana\"}},\"extract\":\"Jayciana is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJayciana\u003c/b\u003e is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\u003c/p\u003e\",\"normalizedtitle\":\"Jayciana\"},{\"pageid\":66277810,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104903080\",\"titles\":{\"canonical\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"normalized\":\"2015 Bruhat Bengaluru Mahanagara Palike election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/320px-Lotus_flower_symbol.svg.png\",\"width\":320,\"height\":311},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/340px-Lotus_flower_symbol.svg.png\",\"width\":340,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218535775\",\"tid\":\"59cf1993-f8a8-11ee-8d79-f8805439f155\",\"timestamp\":\"2024-04-12T08:40:44Z\",\"description\":\"2015 election in India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"}},\"extract\":\"The 2015 Bruhat Bengaluru Mahanagara Palike election was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/b\u003e was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\u003c/p\u003e\",\"normalizedtitle\":\"2015 Bruhat Bengaluru Mahanagara Palike election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"097ec691-25f2-404d-b694-e925601b21af","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17719,"java_free_heap":5407,"total_pss":167889,"rss":262560,"native_total_heap":79872,"native_free_heap":5795,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a8e6c6-feb8-402b-99b3-30a55752e97b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/32px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":445893,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44707","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1036","content-type":"image/webp","date":"Sun, 19 May 2024 20:38:25 GMT","etag":"cd739a43c44b181292f80f73d577c105","last-modified":"Thu, 08 Jun 2023 05:53:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2982","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"16efd73a-5d9f-4a6b-89b0-3800990a6ed1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.32000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"22216446-310d-4e6a-9ae5-d2a61c3673e0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.96500000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":919.9512,"y":205.95703,"touch_down_time":451653,"touch_up_time":451782},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b477b78-bcf8-4a9e-b0b3-75aad4664124","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/38px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":445940,"end_time":445986,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"16013","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"1648","content-type":"image/webp","date":"Mon, 20 May 2024 04:36:40 GMT","etag":"f23eec45f0a338280a1d8cb9b39ccc75","last-modified":"Fri, 08 Sep 2023 17:18:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/977","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c7dfd53-6318-403d-8968-136763ddfcb6","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/36px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":445911,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9211","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"1606","content-type":"image/webp","date":"Mon, 20 May 2024 06:30:02 GMT","etag":"70423aa778261ff9ae4261991f013674","last-modified":"Sun, 06 Aug 2023 03:57:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/622","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f54bc85-ef1a-41f9-991f-83508326ac38","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.73200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"page_toolbar_button_show_overflow_menu","width":126,"height":126,"x":1009.96216,"y":182.98828,"touch_down_time":453453,"touch_up_time":453544},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3749a6c5-f0b4-4267-b177-b00e2f436be2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.87300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":440.95825,"y":1468.9453,"end_x":464.98535,"end_y":986.9531,"direction":"up","touch_down_time":446140,"touch_up_time":446691},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3bb86a55-1d02-470a-b0b0-03cb314e44d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.99500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f67b454-4def-4a6d-afff-91b4e39ae616","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/42px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":445868,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53433","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"1908","content-type":"image/webp","date":"Sun, 19 May 2024 18:13:00 GMT","etag":"9eb22eceec2d1971062ce08b67dcf9d1","last-modified":"Wed, 24 May 2023 14:58:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1035","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42354935-daae-41b2-aaee-9d106d83401e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/38px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":445819,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11063","content-length":"1174","content-type":"image/webp","date":"Mon, 20 May 2024 05:59:09 GMT","etag":"da286f6370a9d33991278d05967df0d1","last-modified":"Fri, 21 Jun 2019 08:25:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/261","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4d314163-274d-4ee4-a553-3fe53c43d558","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/42px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445776,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"57502","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"226","content-type":"image/webp","date":"Sun, 19 May 2024 17:05:10 GMT","etag":"f8b6d8e11e2a7c4dd8ac9388127be890","last-modified":"Sun, 23 Jul 2023 02:01:59 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1442","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"504e2ccc-d49e-4012-b288-7ada75447e4e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.72000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"505e805e-7539-4c13-a4fa-cfc370d249dc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52c13ba3-368e-4a0d-82d8-bec835cca1ea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b226149-7edd-4a5a-87b9-e46797f09421","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.20200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6162ff07-872c-4a07-b5ec-8d21952f59ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.58900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449128,"end_time":449408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"680f575d-eeeb-4a38-9e2f-a7b491adf3e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.33500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6986a335-2f6c-45dd-a0bf-d7d49589b3c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e004789-10bf-4e4f-801f-68a274380b59","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/28px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":445848,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"43774","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"836","content-type":"image/webp","date":"Sun, 19 May 2024 20:53:59 GMT","etag":"126f8494b0f116e1ee2b890ac64ea4d3","last-modified":"Sat, 16 Mar 2024 06:34:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1857","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71423733-5fee-419c-ba08-870284a59d23","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.29900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0435eb-f264-4df1-8d33-6c6016482897","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8be6c160-754d-444f-b5c1-2c68c04e42d2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449409,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"712","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9405717b-7603-4f9a-90c2-4d5287ab4c22","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/42px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":445954,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69339","content-disposition":"inline;filename*=UTF-8''Wikiversity_logo_2017.svg.webp","content-length":"562","content-type":"image/webp","date":"Sun, 19 May 2024 13:47:54 GMT","etag":"4a828dc89ddea450dcf8a0a529237641","last-modified":"Sat, 18 Dec 2021 10:16:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/880","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95daa89a-542f-44c7-9370-e80734196480","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.19500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":450698,"end_time":451013,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0ba2920-e465-4671-b9a9-2d86a08fffe8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.71600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a10b6579-b5c1-4907-ba1e-e24f94c7f22f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.87800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2174cd3-29a0-46d5-aa30-b49aee72abf3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.01900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":452531,"end_time":452838,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b13de324-39e8-4668-a2be-51704c96f738","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1c66dff-0680-4e09-9b73-8912605a408a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Bangalore_Palace.jpg/42px-Bangalore_Palace.jpg","method":"get","status_code":200,"start_time":445805,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"30598","content-disposition":"inline;filename*=UTF-8''Bangalore_Palace.jpg","content-length":"1106","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:33:34 GMT","etag":"a681d8eae4e88991c2f76c520d5595ca","last-modified":"Sat, 18 Dec 2021 07:38:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b23bef50-30a3-4cca-b2d3-5c3eb4cc91c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Openstreetmap_logo.svg/32px-Openstreetmap_logo.svg.png","method":"get","status_code":200,"start_time":445774,"end_time":445865,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36982","content-disposition":"inline;filename*=UTF-8''Openstreetmap_logo.svg.webp","content-length":"2404","content-type":"image/webp","date":"Sun, 19 May 2024 22:47:11 GMT","etag":"16a8ee4b7e7bc64dea201b90e5a4a6d3","last-modified":"Mon, 19 Sep 2022 10:52:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1679","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b2805971-2fba-4acd-b984-e0800830bd05","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":448565,"utime":248,"cutime":0,"cstime":0,"stime":194,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8f9e59f-4ac9-4522-ae0a-6392a92ef5ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17168,"java_free_heap":6064,"total_pss":168661,"rss":264472,"native_total_heap":66560,"native_free_heap":6093,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5273a31-336a-4bc8-9f7e-f47c3a28d65d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":451565,"utime":272,"cutime":0,"cstime":0,"stime":212,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5c16395-9eb1-42ca-b7df-598e26f3a6e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.10300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":525.9595,"y":465.9375,"end_x":521.97144,"end_y":745.95703,"direction":"down","touch_down_time":447656,"touch_up_time":447919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cb066e6e-e8b4-49b1-a4ac-ad14bf3d0e0e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17538,"java_free_heap":5033,"total_pss":172697,"rss":268200,"native_total_heap":71680,"native_free_heap":6427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdf298bf-4d1b-49da-aa7c-4cda57f3ffa5","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cee0e50e-8806-4e82-841b-cbe20c90a44e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.30000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cfdc0f27-5fc9-471b-8c94-fb36f55f9c81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.61300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":488.9795,"y":1251.9141,"end_x":511.9519,"end_y":409.98047,"direction":"up","touch_down_time":447042,"touch_up_time":447426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5d14e2d-b28d-4ecd-a02c-bc4160e30535","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.22100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/42px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":445997,"end_time":446039,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32409","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"198","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:24 GMT","etag":"b02818fe22f012e3bba0c3b2853b41a8","last-modified":"Thu, 04 Jan 2024 04:40:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1013","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6ccf0c9-1f29-449a-b9f3-dd0cef6d5231","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.28600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg","method":"get","status_code":200,"start_time":446848,"end_time":447105,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"12473","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:34 GMT","etag":"2c7bdca426cac204cbfdf15e3b71080e","last-modified":"Sat, 26 Mar 2016 10:36:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qw3ai9uecb9knskjpgi4oon5o4ug903"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8941c70-48d3-4dcc-89db-eac04a71dc3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.21200000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":904.95483,"y":149.9414,"touch_down_time":448957,"touch_up_time":449026},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e567f0c5-10b0-4669-8702-cbbf1c793160","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.38400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec4f7db5-556e-42da-878e-f80a9bc8ae45","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449410,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"706","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9d38c6-2f20-4fcf-8140-9785e36abd17","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/38px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":445987,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76214","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"518","content-type":"image/webp","date":"Sun, 19 May 2024 11:53:19 GMT","etag":"66771d756c5d4092be18d3ab3de44be0","last-modified":"Fri, 04 Aug 2023 01:39:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1541","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ecf6ec4c-4d9c-484b-90b7-828d07b78c9a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Terra.png/38px-Terra.png","method":"get","status_code":200,"start_time":445817,"end_time":445868,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58457","content-disposition":"inline;filename*=UTF-8''Terra.png.webp","content-length":"2948","content-type":"image/webp","date":"Sun, 19 May 2024 16:49:15 GMT","etag":"48f16c644a58aaca70b0719a23ae3cef","last-modified":"Thu, 27 Apr 2023 04:49:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/289","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0975435-c6a6-48e8-8b49-0d2008de2ff3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f2dfc82c-11c4-4b0b-931e-658c3d21c910","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17216,"java_free_heap":5996,"total_pss":155265,"rss":250772,"native_total_heap":91136,"native_free_heap":6339,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json index 315dff3f9..3cb05c2d6 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json @@ -1 +1 @@ -[{"id":"30ca33c6-6d31-4d1a-ab56-29a30516e88c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":104605,"utime":11,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"346dda2a-4871-4560-a824-6625b9187a67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f4e77a4-5f6c-4fc0-bbea-e609d1fa5c57","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7cabe84f-31a4-47db-9345-e396c4ef113f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":3791,"java_free_heap":779,"total_pss":36101,"rss":88520,"native_total_heap":14446,"native_free_heap":10129,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d5ade0ea-ae90-40cc-813a-9840c1091eef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.21200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"30ca33c6-6d31-4d1a-ab56-29a30516e88c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":104605,"utime":11,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"346dda2a-4871-4560-a824-6625b9187a67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f4e77a4-5f6c-4fc0-bbea-e609d1fa5c57","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7cabe84f-31a4-47db-9345-e396c4ef113f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":3791,"java_free_heap":779,"total_pss":36101,"rss":88520,"native_total_heap":14446,"native_free_heap":10129,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d5ade0ea-ae90-40cc-813a-9840c1091eef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.21200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json index 3eea3fdaf..2f3ea51f1 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json @@ -1 +1 @@ -[{"id":"08b133ca-0aa4-43a5-88f7-58aa0de3cdbc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17813,"java_free_heap":4702,"total_pss":83729,"rss":180864,"native_total_heap":55296,"native_free_heap":13934,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a473be3-d72a-4c40-8fe2-48d3048a1b74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.48000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":200,"start_time":328250,"end_time":328299,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"25486","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"574","content-location":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/i18n/0.0.1\"","date":"Mon, 20 May 2024 01:56:49 GMT","etag":"W/\"-29437690499/a8435d10-1587-11ef-9ca2-eb8d6d601c75\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/6784","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1aa23b27-04c2-410b-bce7-0d79febcf712","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be891a0-a5c1-406e-85c5-ab1f983f0760","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bd7c24c-12dc-4e90-872f-67f6370e7867","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.14000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":237.96387,"y":390.9375,"touch_down_time":326873,"touch_up_time":326954},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bdca819-4669-445e-8106-8116f866b95b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2db5a959-dfe4-474b-8fe2-f972d4fdeb9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"309c2c86-0171-42dd-a81c-9353368a2363","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.11900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3a47f5c8-6a66-488a-8c09-ed25b4078758","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.87500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png","method":"get","status_code":200,"start_time":325640,"end_time":325694,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21113","content-disposition":"inline;filename*=UTF-8''Illu_conducting_passages.svg.png","content-length":"46000","content-type":"image/png","date":"Mon, 20 May 2024 03:09:39 GMT","etag":"16b2c870410f65c99f7ec65bb1c46d6d","last-modified":"Mon, 21 Mar 2022 10:14:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46631109-606e-412c-8d27-2653353abe6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.08000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":325639,"end_time":325899,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","content-length":"47989","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:33 GMT","etag":"d9b4d0f75089368a850fc4cde6a5afc7","last-modified":"Mon, 12 Jul 2021 20:26:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5009c99a-53e1-41b5-9800-c34d289c5010","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":200,"start_time":327991,"end_time":328048,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39475","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"14055","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21501","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"57e55e32-b032-43e0-9c2d-f286bb2cfa49","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.21200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5aa51a98-49a1-447e-9e52-d5c63f2a6464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","method":"get","status_code":200,"start_time":327396,"end_time":327972,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51cd2bb0-0fe6-11ef-bd1a-1d71cb25ee14\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2030","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ad624ae-1dca-4ec8-831c-eaa44203ceff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.25500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c011a3d-94fa-493a-be07-dab17ee61e96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71bdce5c-8804-438f-a355-d2e051f6b015","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":200,"start_time":327991,"end_time":328047,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38566","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"2529","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11193","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"723c72d8-76bc-4ca1-acc5-2661c3a13cf7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.09000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"79b2eb72-4c94-4c24-be6a-f504258eb93c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.21800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","method":"get","status_code":200,"start_time":328308,"end_time":329037,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"3ezppzh4qhqwuen8g21xvvnhm","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":51856,\"ns\":0,\"index\":20,\"type\":\"disambiguation\",\"title\":\"Acme\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296960\",\"titles\":{\"canonical\":\"Acme\",\"normalized\":\"Acme\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210027613\",\"tid\":\"a03bdbe5-d337-11ee-9881-cd92505f5158\",\"timestamp\":\"2024-02-24T17:10:36Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.wikipedia.org/wiki/Acme?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Acme\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Acme\",\"edit\":\"https://en.m.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Acme\"}},\"extract\":\"Acme is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAcme\u003c/b\u003e is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Acme\"},{\"pageid\":55044,\"ns\":0,\"index\":11,\"type\":\"disambiguation\",\"title\":\"Transition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q405416\",\"titles\":{\"canonical\":\"Transition\",\"normalized\":\"Transition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218110154\",\"tid\":\"dba53260-f6a9-11ee-97a9-1e10ac84822b\",\"timestamp\":\"2024-04-09T19:46:29Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.wikipedia.org/wiki/Transition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Transition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Transition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Transition\"}},\"extract\":\"Transition or transitional may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTransition\u003c/b\u003e or \u003cb\u003etransitional\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Transition\"},{\"pageid\":58717,\"ns\":0,\"index\":9,\"type\":\"disambiguation\",\"title\":\"Hume\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q224669\",\"titles\":{\"canonical\":\"Hume\",\"normalized\":\"Hume\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1193206643\",\"tid\":\"86ab898b-a98b-11ee-a7da-65aec92fe735\",\"timestamp\":\"2024-01-02T16:25:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.wikipedia.org/wiki/Hume?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hume\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hume\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hume\"}},\"extract\":\"Hume most commonly refers to:David Hume (1711–1776), Scottish philosopher\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHume\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eDavid Hume (1711–1776), Scottish philosopher\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Hume\"},{\"pageid\":148814,\"ns\":0,\"index\":12,\"type\":\"disambiguation\",\"title\":\"Max\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q225238\",\"titles\":{\"canonical\":\"Max\",\"normalized\":\"Max\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219425766\",\"tid\":\"6d34119c-fce2-11ee-8b11-75e3c19343cd\",\"timestamp\":\"2024-04-17T17:46:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.wikipedia.org/wiki/Max?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Max\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Max\",\"edit\":\"https://en.m.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Max\"}},\"extract\":\"Max or MAX may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMax\u003c/b\u003e or \u003cb\u003eMAX\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Max\"},{\"pageid\":279097,\"ns\":0,\"index\":2,\"type\":\"disambiguation\",\"title\":\"Star_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q176688\",\"titles\":{\"canonical\":\"Star_(disambiguation)\",\"normalized\":\"Star (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224134541\",\"tid\":\"85509e7f-1385-11ef-bd2f-84134f5c8a7b\",\"timestamp\":\"2024-05-16T13:09:26Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Star_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Star_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Star_(disambiguation)\"}},\"extract\":\"A star is a luminous astronomical object.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003estar\u003c/b\u003e is a luminous astronomical object.\u003c/p\u003e\",\"normalizedtitle\":\"Star (disambiguation)\"},{\"pageid\":290282,\"ns\":0,\"index\":8,\"type\":\"disambiguation\",\"title\":\"State\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q12251220\",\"titles\":{\"canonical\":\"State\",\"normalized\":\"State\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216877243\",\"tid\":\"30babe9c-f0fd-11ee-a250-3300880f5fd7\",\"timestamp\":\"2024-04-02T14:27:53Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/State\",\"revisions\":\"https://en.wikipedia.org/wiki/State?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:State\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/State\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/State\",\"edit\":\"https://en.m.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:State\"}},\"extract\":\"State most commonly refers to:State (polity), a centralized political organization that regulates law and society within a territory\\nSovereign state, a sovereign polity in international law, commonly referred to as a country\\nNation state, a state where the majority identify with a single nation \\nConstituent state, a political subdivision of a state\\nFederated state, constituent states part of a federation\\nState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eState\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eState (polity), a centralized political organization that regulates law and society within a territory\\n\u003cul\u003e\u003cli\u003eSovereign state, a sovereign polity in international law, commonly referred to as a country\u003c/li\u003e\\n\u003cli\u003eNation state, a state where the majority identify with a single nation \u003c/li\u003e\\n\u003cli\u003eConstituent state, a political subdivision of a state\u003c/li\u003e\\n\u003cli\u003eFederated state, constituent states part of a federation\u003c/li\u003e\u003c/ul\u003e\u003c/li\u003e\\n\u003cli\u003eState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"State\"},{\"pageid\":306880,\"ns\":0,\"index\":17,\"type\":\"disambiguation\",\"title\":\"Frame\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q294490\",\"titles\":{\"canonical\":\"Frame\",\"normalized\":\"Frame\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220799565\",\"tid\":\"51bfac39-0361-11ef-a4ec-fdcd7f4a5f97\",\"timestamp\":\"2024-04-26T00:09:59Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.wikipedia.org/wiki/Frame?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Frame\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Frame\",\"edit\":\"https://en.m.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Frame\"}},\"extract\":\"A frame is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eframe\u003c/b\u003e is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\u003c/p\u003e\",\"normalizedtitle\":\"Frame\"},{\"pageid\":466211,\"ns\":0,\"index\":4,\"type\":\"disambiguation\",\"title\":\"Flow\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5426556\",\"titles\":{\"canonical\":\"Flow\",\"normalized\":\"Flow\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222836864\",\"tid\":\"542af432-0d01-11ef-b3b3-5feec1ee5c5b\",\"timestamp\":\"2024-05-08T06:08:03Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.wikipedia.org/wiki/Flow?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Flow\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Flow\",\"edit\":\"https://en.m.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Flow\"}},\"extract\":\"Flow may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFlow\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Flow\"},{\"pageid\":497854,\"ns\":0,\"index\":10,\"type\":\"disambiguation\",\"title\":\"Triad\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2482068\",\"titles\":{\"canonical\":\"Triad\",\"normalized\":\"Triad\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221484812\",\"tid\":\"b78d96ed-06b9-11ef-9cc5-35df4b5c8ef8\",\"timestamp\":\"2024-04-30T06:20:19Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.wikipedia.org/wiki/Triad?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Triad\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Triad\",\"edit\":\"https://en.m.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Triad\"}},\"extract\":\"Triad or triade may refer to:a group of three\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTriad\u003c/b\u003e or \u003cb\u003etriade\u003c/b\u003e may refer to:\u003c/p\u003e\u003cul\u003e\u003cli\u003ea group of three\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Triad\"},{\"pageid\":528769,\"ns\":0,\"index\":5,\"type\":\"disambiguation\",\"title\":\"Locust_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q416372\",\"titles\":{\"canonical\":\"Locust_(disambiguation)\",\"normalized\":\"Locust (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184863699\",\"tid\":\"db722f41-81ce-11ee-b356-a8834ef0e4e5\",\"timestamp\":\"2023-11-13T02:46:34Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Locust_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"}},\"extract\":\"Locusts are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLocusts\u003c/b\u003e are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\u003c/p\u003e\",\"normalizedtitle\":\"Locust (disambiguation)\"},{\"pageid\":651807,\"ns\":0,\"index\":6,\"type\":\"disambiguation\",\"title\":\"Operator\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q228588\",\"titles\":{\"canonical\":\"Operator\",\"normalized\":\"Operator\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219370184\",\"tid\":\"9c787d9b-fca5-11ee-b070-ca416f63e422\",\"timestamp\":\"2024-04-17T10:31:12Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.wikipedia.org/wiki/Operator?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Operator\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Operator\",\"edit\":\"https://en.m.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Operator\"}},\"extract\":\"Operator may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOperator\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Operator\"},{\"pageid\":698312,\"ns\":0,\"index\":1,\"type\":\"disambiguation\",\"title\":\"Bass\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q227155\",\"titles\":{\"canonical\":\"Bass\",\"normalized\":\"Bass\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212658995\",\"tid\":\"5bd41b08-dda6-11ee-9915-c896cafa6952\",\"timestamp\":\"2024-03-08T23:48:27Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.wikipedia.org/wiki/Bass?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bass\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bass\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bass\"}},\"extract\":\"Bass or Basses may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBass\u003c/b\u003e or \u003cb\u003eBasses\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bass\"},{\"pageid\":1047948,\"ns\":0,\"index\":14,\"type\":\"disambiguation\",\"title\":\"Bean_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q356770\",\"titles\":{\"canonical\":\"Bean_(disambiguation)\",\"normalized\":\"Bean (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156385398\",\"tid\":\"85749416-f8b9-11ed-8a51-5d7eb7f0d61d\",\"timestamp\":\"2023-05-22T15:58:41Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bean_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"}},\"extract\":\"A bean is a large seed of several plants in the family Fabaceae.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebean\u003c/b\u003e is a large seed of several plants in the family \u003ci\u003eFabaceae\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Bean (disambiguation)\"},{\"pageid\":1102921,\"ns\":0,\"index\":7,\"type\":\"disambiguation\",\"title\":\"Bear_Creek\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q299502\",\"titles\":{\"canonical\":\"Bear_Creek\",\"normalized\":\"Bear Creek\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1186805589\",\"tid\":\"5b7499d1-8bae-11ee-bdab-354de44b9cb7\",\"timestamp\":\"2023-11-25T16:19:07Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bear_Creek\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bear_Creek\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bear_Creek\"}},\"extract\":\"Bear Creek or Bearcreek may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBear Creek\u003c/b\u003e or \u003cb\u003eBearcreek\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bear Creek\"},{\"pageid\":1928111,\"ns\":0,\"index\":3,\"type\":\"disambiguation\",\"title\":\"Cache\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1025020\",\"titles\":{\"canonical\":\"Cache\",\"normalized\":\"Cache\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661635\",\"tid\":\"3bc4a1e4-160a-11ef-b8bb-3cdd522a99bf\",\"timestamp\":\"2024-05-19T18:04:28Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.wikipedia.org/wiki/Cache?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cache\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cache\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cache\"}},\"extract\":\"Cache, caching, or caché may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCache\u003c/b\u003e, \u003cb\u003ecaching\u003c/b\u003e, or \u003cb\u003ecaché\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Cache\"},{\"pageid\":3281599,\"ns\":0,\"index\":16,\"type\":\"disambiguation\",\"title\":\"Genius_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q404618\",\"titles\":{\"canonical\":\"Genius_(disambiguation)\",\"normalized\":\"Genius (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1161111422\",\"tid\":\"6b9c9f6b-0f96-11ee-84fa-f9ac16ac26a1\",\"timestamp\":\"2023-06-20T18:15:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Genius_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"}},\"extract\":\"A genius is a person who has exceptional intellectual ability, creativity, or originality.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egenius\u003c/b\u003e is a person who has exceptional intellectual ability, creativity, or originality.\u003c/p\u003e\",\"normalizedtitle\":\"Genius (disambiguation)\"},{\"pageid\":4620140,\"ns\":0,\"index\":15,\"type\":\"disambiguation\",\"title\":\"Streamline\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1900895\",\"titles\":{\"canonical\":\"Streamline\",\"normalized\":\"Streamline\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1209904008\",\"tid\":\"434f1d0f-d2bc-11ee-b2c1-036e3ee9095a\",\"timestamp\":\"2024-02-24T02:27:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.wikipedia.org/wiki/Streamline?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Streamline\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Streamline\",\"edit\":\"https://en.m.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Streamline\"}},\"extract\":\"Streamline may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eStreamline\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Streamline\"},{\"pageid\":6771526,\"ns\":0,\"index\":19,\"type\":\"disambiguation\",\"title\":\"Linear_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1826396\",\"titles\":{\"canonical\":\"Linear_(disambiguation)\",\"normalized\":\"Linear (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216492975\",\"tid\":\"26ee5fd7-ef45-11ee-82bc-82313c7c5f5e\",\"timestamp\":\"2024-03-31T09:57:58Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Linear_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"}},\"extract\":\"Linear is used to describe linearity in mathematics.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLinear\u003c/b\u003e is used to describe linearity in mathematics.\u003c/p\u003e\",\"normalizedtitle\":\"Linear (disambiguation)\"},{\"pageid\":11040001,\"ns\":0,\"index\":13,\"type\":\"disambiguation\",\"title\":\"Fun_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q360552\",\"titles\":{\"canonical\":\"Fun_(disambiguation)\",\"normalized\":\"Fun (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156949285\",\"tid\":\"4fb9f00f-faf1-11ed-81d7-2fc57ef16069\",\"timestamp\":\"2023-05-25T11:43:05Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Fun_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"}},\"extract\":\"Fun generally refers to recreation or entertainment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFun\u003c/b\u003e generally refers to recreation or entertainment.\u003c/p\u003e\",\"normalizedtitle\":\"Fun (disambiguation)\"},{\"pageid\":50724448,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Glossary_of_computer_graphics\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25106492\",\"titles\":{\"canonical\":\"Glossary_of_computer_graphics\",\"normalized\":\"Glossary of computer graphics\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211169501\",\"tid\":\"6599dade-d78d-11ee-8bf4-2e6b9dc7dad8\",\"timestamp\":\"2024-03-01T05:34:39Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Glossary_of_computer_graphics\",\"edit\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"}},\"extract\":\"This is a glossary of terms relating to computer graphics.\",\"extract_html\":\"\u003cp\u003eThis is a glossary of terms relating to computer graphics.\u003c/p\u003e\",\"normalizedtitle\":\"Glossary of computer graphics\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c3bcc8c-ca85-4ee0-a848-ba43ca9a5158","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.51100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=t\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":323918,"end_time":324329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2298.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"7srrpm43ynlqnfiadnncd1yp9"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":25734,\"ns\":0,\"title\":\"Taiwan\",\"index\":12,\"description\":\"Country in East Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Flag_of_the_Republic_of_China.svg/320px-Flag_of_the_Republic_of_China.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":24,\"lon\":121,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T07:37:08Z\",\"lastrevid\":1224751002,\"length\":313804,\"displaytitle\":\"Taiwan\",\"varianttitles\":{\"en\":\"Taiwan\"}},{\"pageid\":29810,\"ns\":0,\"title\":\"Texas\",\"index\":16,\"description\":\"U.S. state\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Flag_of_Texas.svg/320px-Flag_of_Texas.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":31,\"lon\":-99,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T07:11:45Z\",\"lastrevid\":1224586226,\"length\":258627,\"displaytitle\":\"Texas\",\"varianttitles\":{\"en\":\"Texas\"}},{\"pageid\":29812,\"ns\":0,\"title\":\"The Beatles\",\"index\":14,\"description\":\"English rock band (1960–1970)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/The_Beatles_members_at_New_York_City_in_1964.jpg/320px-The_Beatles_members_at_New_York_City_in_1964.jpg\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224641394,\"length\":221036,\"displaytitle\":\"The Beatles\",\"varianttitles\":{\"en\":\"The Beatles\"}},{\"pageid\":30057,\"ns\":0,\"title\":\"Tokyo\",\"index\":18,\"description\":\"Capital and most populous city of Japan\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Skyscrapers_of_Shinjuku_2009_January.jpg/320px-Skyscrapers_of_Shinjuku_2009_January.jpg\",\"width\":320,\"height\":171},\"coordinates\":[{\"lat\":35.68972222,\"lon\":139.69222222,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:05:37Z\",\"lastrevid\":1224699089,\"length\":157548,\"displaytitle\":\"Tokyo\",\"varianttitles\":{\"en\":\"Tokyo\"}},{\"pageid\":30071,\"ns\":0,\"title\":\"T\",\"index\":1,\"description\":\"20th letter of the Latin alphabet\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T11:32:01Z\",\"lastrevid\":1223065110,\"length\":16234,\"displaytitle\":\"T\",\"varianttitles\":{\"en\":\"T\"}},{\"pageid\":30128,\"ns\":0,\"title\":\"Thailand\",\"index\":10,\"description\":\"Country in Southeast Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Flag_of_Thailand.svg/320px-Flag_of_Thailand.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":15,\"lon\":101,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224577988,\"length\":271956,\"displaytitle\":\"Thailand\",\"varianttitles\":{\"en\":\"Thailand\"}},{\"pageid\":30463,\"ns\":0,\"title\":\"Taxonomy (biology)\",\"index\":3,\"description\":\"Science of naming, defining and classifying organisms\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:43Z\",\"lastrevid\":1218991780,\"length\":70362,\"displaytitle\":\"Taxonomy (biology)\",\"varianttitles\":{\"en\":\"Taxonomy (biology)\"}},{\"pageid\":30680,\"ns\":0,\"title\":\"The New York Times\",\"index\":6,\"description\":\"American daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/The_New_York_Times%2C_January_13%2C_2024.png\",\"width\":234,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:12:00Z\",\"lastrevid\":1224686229,\"length\":227907,\"displaytitle\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\"}},{\"pageid\":30837,\"ns\":0,\"title\":\"Tampa Bay Buccaneers\",\"index\":9,\"description\":\"National Football League franchise in Tampa, Florida\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Tampabay_buccaneers_unif20.png/320px-Tampabay_buccaneers_unif20.png\",\"width\":320,\"height\":306},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:53:12Z\",\"lastrevid\":1224621779,\"length\":225993,\"displaytitle\":\"Tampa Bay Buccaneers\",\"varianttitles\":{\"en\":\"Tampa Bay Buccaneers\"}},{\"pageid\":30890,\"ns\":0,\"title\":\"Time zone\",\"index\":4,\"description\":\"Area that observes a uniform standard time\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224125392,\"length\":92267,\"displaytitle\":\"Time zone\",\"varianttitles\":{\"en\":\"Time zone\"}},{\"pageid\":31460,\"ns\":0,\"title\":\"Tom Cruise\",\"index\":20,\"description\":\"American actor (born 1962)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Tom_Cruise_by_Gage_Skidmore_2.jpg/320px-Tom_Cruise_by_Gage_Skidmore_2.jpg\",\"width\":320,\"height\":403},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224593587,\"length\":123370,\"displaytitle\":\"Tom Cruise\",\"varianttitles\":{\"en\":\"Tom Cruise\"}},{\"pageid\":52911,\"ns\":0,\"title\":\"Town\",\"index\":11,\"description\":\"Type of human settlement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/St_Mary%27s_Church%2C_Castle_Street_1.jpg/320px-St_Mary%27s_Church%2C_Castle_Street_1.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:58Z\",\"lastrevid\":1223398228,\"length\":97586,\"displaytitle\":\"Town\",\"varianttitles\":{\"en\":\"Town\"}},{\"pageid\":212390,\"ns\":0,\"title\":\"Tilde\",\"index\":2,\"description\":\"Punctuation and accent mark\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:48Z\",\"lastrevid\":1224034998,\"length\":62175,\"displaytitle\":\"Tilde\",\"varianttitles\":{\"en\":\"Tilde\"}},{\"pageid\":339841,\"ns\":0,\"title\":\"Tom Brady\",\"index\":19,\"description\":\"American football player (born 1977)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Tom_Brady_2021.png/320px-Tom_Brady_2021.png\",\"width\":320,\"height\":453},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:13:06Z\",\"lastrevid\":1224740104,\"length\":448204,\"displaytitle\":\"Tom Brady\",\"varianttitles\":{\"en\":\"Tom Brady\"}},{\"pageid\":5422144,\"ns\":0,\"title\":\"Taylor Swift\",\"index\":13,\"description\":\"American singer-songwriter (born 1989)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png/320px-Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png\",\"width\":320,\"height\":473},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:54:01Z\",\"lastrevid\":1224278219,\"length\":361501,\"displaytitle\":\"Taylor Swift\",\"varianttitles\":{\"en\":\"Taylor Swift\"}},{\"pageid\":9988187,\"ns\":0,\"title\":\"Twitter\",\"index\":8,\"description\":\"American social networking service\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Screen_of_X_%28Twitter%29.png/320px-Screen_of_X_%28Twitter%29.png\",\"width\":320,\"height\":179},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:32:30Z\",\"lastrevid\":1224741726,\"length\":325641,\"displaytitle\":\"Twitter\",\"varianttitles\":{\"en\":\"Twitter\"}},{\"pageid\":10396793,\"ns\":0,\"title\":\"The Holocaust\",\"index\":17,\"description\":\"Genocide of European Jews by Nazi Germany\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg/320px-Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg\",\"width\":320,\"height\":214},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:33:23Z\",\"lastrevid\":1223910128,\"length\":124931,\"displaytitle\":\"The Holocaust\",\"varianttitles\":{\"en\":\"The Holocaust\"}},{\"pageid\":11125639,\"ns\":0,\"title\":\"Turkey\",\"index\":5,\"description\":\"Country in West Asia and Southeast Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":39.91666667,\"lon\":32.85,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:26:16Z\",\"lastrevid\":1224741211,\"length\":318437,\"displaytitle\":\"Turkey\",\"varianttitles\":{\"en\":\"Turkey\"}},{\"pageid\":19344515,\"ns\":0,\"title\":\"The Guardian\",\"index\":15,\"description\":\"British national daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/67/The_Guardian_28_May_2021.jpg\",\"width\":283,\"height\":352},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:26Z\",\"lastrevid\":1222658458,\"length\":240656,\"displaytitle\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\"}},{\"pageid\":19508643,\"ns\":0,\"title\":\"Television show\",\"index\":7,\"description\":\"Segment of audiovisual content intended for broadcast on television\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/MDR_Kripo_live.jpg/320px-MDR_Kripo_live.jpg\",\"width\":320,\"height\":243},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:51:01Z\",\"lastrevid\":1224194639,\"length\":43203,\"displaytitle\":\"Television show\",\"varianttitles\":{\"en\":\"Television show\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"813d3248-e1fe-402a-9682-752b65613dd6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.60300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25126","content-disposition":"inline;filename*=UTF-8''World_Time_Zones_Map.svg.png","content-length":"68324","content-type":"image/png","date":"Mon, 20 May 2024 02:02:45 GMT","etag":"9b171584b050c3fd217dfd30574547f6","last-modified":"Sun, 31 Mar 2024 06:20:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ae68bb6-7433-47e3-b82a-204ccc8a02f7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":16718,"java_free_heap":5803,"total_pss":137314,"rss":242300,"native_total_heap":70656,"native_free_heap":10330,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b042f42-943f-4596-8ffc-acd853c4415d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.92400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":322477,"end_time":322743,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2299.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d881c8e-732d-4e6c-8751-a660ef65d778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.19900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dffbad7-3fd8-48f6-86ec-067dd1d76791","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.32100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":324084,"end_time":324140,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"481827","content-type":"multipart/form-data; boundary=7944559f-91a4-4d67-ba85-7db57ef8425f","host":"10.0.2.2:8080","msr-req-id":"39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90e438f0-c93b-4782-9375-89f06db70057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":327043,"end_time":327404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d8494d-f4c5-405f-b999-4cbc026f72c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92e56766-2b0f-4e5d-b514-cc09b7ca5afb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.27900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2.svg/80px-Wiktionary-logo-en-v2.svg.png","method":"get","status_code":200,"start_time":328052,"end_time":328098,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"68799","content-disposition":"inline;filename*=UTF-8''Wiktionary-logo-en-v2.svg.webp","content-length":"3238","content-type":"image/webp","date":"Sun, 19 May 2024 13:54:56 GMT","etag":"c57fb1ee1c3027a62a4112ca10924e9f","last-modified":"Sun, 31 Mar 2024 19:30:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/13195","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92f988ed-f9ac-4c6c-99cb-bcb9a4819264","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.82600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=t\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":324343,"end_time":324645,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95750852-f7dc-45f9-8011-1a06c8b42344","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22030,"java_free_heap":1922,"total_pss":91968,"rss":188260,"native_total_heap":55296,"native_free_heap":12770,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9776297b-4159-4f53-864b-e29bc6d2d2aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.28100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":200,"start_time":328043,"end_time":328100,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36457","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"24904","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20429","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c5dece2-a9d3-4f57-88e0-1120fb9b2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.25800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=trace\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":325633,"end_time":326077,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-zmxwq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"54z4tdhlrtwqvvy3vbuoazu30"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":42021,\"ns\":0,\"title\":\"Trace radioisotope\",\"index\":9,\"description\":\"Radioisotope that occurs naturally in trace amounts\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:00:52Z\",\"lastrevid\":1185490351,\"length\":3871,\"displaytitle\":\"Trace radioisotope\",\"varianttitles\":{\"en\":\"Trace radioisotope\"}},{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":3,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":174247,\"ns\":0,\"title\":\"Traceability\",\"index\":7,\"description\":\"Capability to trace something\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T03:01:35Z\",\"lastrevid\":1209209122,\"length\":22185,\"displaytitle\":\"Traceability\",\"varianttitles\":{\"en\":\"Traceability\"}},{\"pageid\":192266,\"ns\":0,\"title\":\"Trace class\",\"index\":18,\"description\":\"Compact operator for which a finite trace can be defined\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:24Z\",\"lastrevid\":1222901758,\"length\":18356,\"displaytitle\":\"Trace class\",\"varianttitles\":{\"en\":\"Trace class\"}},{\"pageid\":235175,\"ns\":0,\"title\":\"Trace element\",\"index\":6,\"description\":\"Element of low concentration\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:41Z\",\"lastrevid\":1221455717,\"length\":4788,\"displaytitle\":\"Trace element\",\"varianttitles\":{\"en\":\"Trace element\"}},{\"pageid\":344127,\"ns\":0,\"title\":\"Signal trace\",\"index\":14,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-07T07:48:19Z\",\"lastrevid\":1176213464,\"length\":1462,\"displaytitle\":\"Signal trace\",\"varianttitles\":{\"en\":\"Signal trace\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":647241,\"ns\":0,\"title\":\"Without a Trace\",\"index\":12,\"description\":\"American crime drama series that aired on CBS from 2002 to 2009\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/61/Without_a_trace_logo.jpg/320px-Without_a_trace_logo.jpg\",\"width\":320,\"height\":205},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:04:00Z\",\"lastrevid\":1220776236,\"length\":36173,\"displaytitle\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\"}},{\"pageid\":656411,\"ns\":0,\"title\":\"Stack trace\",\"index\":17,\"description\":\"Report of stack frames during program execution\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T11:14:33Z\",\"lastrevid\":1220214397,\"length\":9358,\"displaytitle\":\"Stack trace\",\"varianttitles\":{\"en\":\"Stack trace\"}},{\"pageid\":814148,\"ns\":0,\"title\":\"Partial trace\",\"index\":16,\"description\":\"Function over linear operators\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T19:42:11Z\",\"lastrevid\":1224497501,\"length\":11394,\"displaytitle\":\"Partial trace\",\"varianttitles\":{\"en\":\"Partial trace\"}},{\"pageid\":1411865,\"ns\":0,\"title\":\"TRACE\",\"index\":2,\"description\":\"NASA satellite of the Explorer program\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/TRACE_illustration_%28transparent_bg%29.png/320px-TRACE_illustration_%28transparent_bg%29.png\",\"width\":320,\"height\":358},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:27Z\",\"lastrevid\":1220777730,\"length\":10580,\"displaytitle\":\"TRACE\",\"varianttitles\":{\"en\":\"TRACE\"}},{\"pageid\":1473870,\"ns\":0,\"title\":\"Trace gas\",\"index\":20,\"description\":\"Gases apart from nitrogen, oxygen, and argon in Earth's atmosphere\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:47Z\",\"lastrevid\":1196165108,\"length\":12073,\"displaytitle\":\"Trace gas\",\"varianttitles\":{\"en\":\"Trace gas\"}},{\"pageid\":1775721,\"ns\":0,\"title\":\"Tracor\",\"index\":11,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:50Z\",\"lastrevid\":1187914941,\"length\":6816,\"displaytitle\":\"Tracor\",\"varianttitles\":{\"en\":\"Tracor\"}},{\"pageid\":5923016,\"ns\":0,\"title\":\"Traces\",\"index\":8,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1026786113,\"length\":1364,\"displaytitle\":\"Traces\",\"varianttitles\":{\"en\":\"Traces\"}},{\"pageid\":12977524,\"ns\":0,\"title\":\"Buffalo Trace\",\"index\":10,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-03T03:50:27Z\",\"lastrevid\":1155847083,\"length\":413,\"displaytitle\":\"Buffalo Trace\",\"varianttitles\":{\"en\":\"Buffalo Trace\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":4,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":23691192,\"ns\":0,\"title\":\"Trace Urban\",\"index\":15,\"description\":\"French music video television channel\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Traceurban2022.png\",\"width\":281,\"height\":234},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:02:19Z\",\"lastrevid\":1224430263,\"length\":5085,\"displaytitle\":\"Trace Urban\",\"varianttitles\":{\"en\":\"Trace Urban\"}},{\"pageid\":56336978,\"ns\":0,\"title\":\"Leave No Trace (film)\",\"index\":19,\"description\":\"2018 film directed by Debra Granik\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Leave_No_Trace.png\",\"width\":220,\"height\":326},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:30:52Z\",\"lastrevid\":1213940674,\"length\":31088,\"displaytitle\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\"}},{\"pageid\":67751245,\"ns\":0,\"title\":\"No Trace\",\"index\":13,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-04T12:45:31Z\",\"lastrevid\":1024877270,\"length\":297,\"displaytitle\":\"No Trace\",\"varianttitles\":{\"en\":\"No Trace\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a29a4210-71bb-4aed-926b-594ee1ba676e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a70af2ab-180b-452c-aba4-9814130dc00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.27000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","width":1080,"height":1731,"x":530.96924,"y":97.96875,"touch_down_time":329003,"touch_up_time":329087},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7ad62c3-7d8a-45db-bd7a-6d4f26154631","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.23300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":200,"start_time":327991,"end_time":328051,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45471","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"4852","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21393","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"af11ff8d-59b0-4d28-abc8-45fc301daa75","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3e1c8fb-90f4-4160-a501-8cd713bf716b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.90000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":322423,"end_time":322719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1054","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b480de16-bfef-460b-965d-9168e5fe8b5e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.24900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5389e9a-778b-433d-b086-93cbec315aad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7325882-b0f1-4527-b9b0-8348c61efe78","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":324976,"utime":166,"cutime":0,"cstime":0,"stime":130,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c04c7c3a-ff6c-4535-808b-b8c58d13afad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"caf7e17c-d815-4ea1-b729-235e03758e19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.58900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png","method":"get","status_code":200,"start_time":324364,"end_time":324408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64493","content-disposition":"inline;filename*=UTF-8''Latin_letter_T.svg.png","content-length":"1644","content-type":"image/png","date":"Sun, 19 May 2024 15:06:38 GMT","etag":"9dfb888dcc1370907d55e742f7bff81a","last-modified":"Wed, 13 Mar 2024 09:14:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/37","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc17d708-c713-4578-8cd6-d7f11dae7c02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.80400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=trace\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":325282,"end_time":325623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"3mwp74bhpcfgsz3sjuvmbyv59"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":4,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":53486,\"ns\":0,\"title\":\"Tracey Ullman\",\"index\":6,\"description\":\"British-American actress, comedian, singer, director, producer and writer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg\",\"width\":320,\"height\":421},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1224560456,\"length\":57284,\"displaytitle\":\"Tracey Ullman\",\"varianttitles\":{\"en\":\"Tracey Ullman\"}},{\"pageid\":70289,\"ns\":0,\"title\":\"Trachea\",\"index\":3,\"description\":\"Cartilaginous tube that connects the pharynx and larynx to the lungs\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png\",\"width\":320,\"height\":412},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:58Z\",\"lastrevid\":1221869674,\"length\":33683,\"displaytitle\":\"Trachea\",\"varianttitles\":{\"en\":\"Trachea\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":163837,\"ns\":0,\"title\":\"Tracey Emin\",\"index\":10,\"description\":\"English artist\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Tracey_Emin_1-cropped.jpg/320px-Tracey_Emin_1-cropped.jpg\",\"width\":320,\"height\":430},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1221169591,\"length\":137792,\"displaytitle\":\"Tracey Emin\",\"varianttitles\":{\"en\":\"Tracey Emin\"}},{\"pageid\":169833,\"ns\":0,\"title\":\"Tracy Chapman\",\"index\":8,\"description\":\"American singer-songwriter (born 1964)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1224488953,\"length\":42978,\"displaytitle\":\"Tracy Chapman\",\"varianttitles\":{\"en\":\"Tracy Chapman\"}},{\"pageid\":179179,\"ns\":0,\"title\":\"Traci Lords\",\"index\":2,\"description\":\"American actress (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg\",\"width\":320,\"height\":468},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:44Z\",\"lastrevid\":1223595908,\"length\":59968,\"displaytitle\":\"Traci Lords\",\"varianttitles\":{\"en\":\"Traci Lords\"}},{\"pageid\":305989,\"ns\":0,\"title\":\"Tracy Austin\",\"index\":13,\"description\":\"American tennis player\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Austin_2009_US_Open_02.jpg/320px-Austin_2009_US_Open_02.jpg\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:58:51Z\",\"lastrevid\":1221029612,\"length\":37982,\"displaytitle\":\"Tracy Austin\",\"varianttitles\":{\"en\":\"Tracy Austin\"}},{\"pageid\":367492,\"ns\":0,\"title\":\"Trace fossil\",\"index\":17,\"description\":\"Geological record of biological activity\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Cheirotherium_prints_possibly_Ticinosuchus.JPG/320px-Cheirotherium_prints_possibly_Ticinosuchus.JPG\",\"width\":320,\"height\":509},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:10:29Z\",\"lastrevid\":1222107766,\"length\":47210,\"displaytitle\":\"Trace fossil\",\"varianttitles\":{\"en\":\"Trace fossil\"}},{\"pageid\":481757,\"ns\":0,\"title\":\"Tracy Lawrence\",\"index\":11,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/CountrySingerTracyLawrence.jpg/320px-CountrySingerTracyLawrence.jpg\",\"width\":320,\"height\":311},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1213761574,\"length\":62239,\"displaytitle\":\"Tracy Lawrence\",\"varianttitles\":{\"en\":\"Tracy Lawrence\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":1014986,\"ns\":0,\"title\":\"Tracee Ellis Ross\",\"index\":7,\"description\":\"American actress\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg\",\"width\":320,\"height\":356},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:49:07Z\",\"lastrevid\":1223633352,\"length\":54995,\"displaytitle\":\"Tracee Ellis Ross\",\"varianttitles\":{\"en\":\"Tracee Ellis Ross\"}},{\"pageid\":1335475,\"ns\":0,\"title\":\"Tracy Morgan\",\"index\":9,\"description\":\"American actor and comedian (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Tracy_Morgan_3_Shankbone_2009_NYC.jpg/320px-Tracy_Morgan_3_Shankbone_2009_NYC.jpg\",\"width\":320,\"height\":382},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:14Z\",\"lastrevid\":1224054489,\"length\":45517,\"displaytitle\":\"Tracy Morgan\",\"varianttitles\":{\"en\":\"Tracy Morgan\"}},{\"pageid\":1619336,\"ns\":0,\"title\":\"Tracy-Ann Oberman\",\"index\":12,\"description\":\"English actress, playwright, writer and narrator (born 1966)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Tracy_Ann_Oberman_in_2015.jpg/320px-Tracy_Ann_Oberman_in_2015.jpg\",\"width\":320,\"height\":375},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:14Z\",\"lastrevid\":1224279525,\"length\":60059,\"displaytitle\":\"Tracy-Ann Oberman\",\"varianttitles\":{\"en\":\"Tracy-Ann Oberman\"}},{\"pageid\":1690983,\"ns\":0,\"title\":\"Tracy Smothers\",\"index\":15,\"description\":\"American professional wrestler (1962–2020)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/Tracy_Smothers.jpg/320px-Tracy_Smothers.jpg\",\"width\":320,\"height\":310},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:35Z\",\"lastrevid\":1223488378,\"length\":49799,\"displaytitle\":\"Tracy Smothers\",\"varianttitles\":{\"en\":\"Tracy Smothers\"}},{\"pageid\":1745354,\"ns\":0,\"title\":\"Tracy Byrd\",\"index\":19,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg/320px-Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg\",\"width\":320,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:44Z\",\"lastrevid\":1219259285,\"length\":16462,\"displaytitle\":\"Tracy Byrd\",\"varianttitles\":{\"en\":\"Tracy Byrd\"}},{\"pageid\":2279675,\"ns\":0,\"title\":\"Tracy Barlow\",\"index\":16,\"description\":\"Fictional character from Coronation Street\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/bb/Tracy_Barlow.jpg\",\"width\":305,\"height\":344},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T04:25:27Z\",\"lastrevid\":1222988164,\"length\":74550,\"displaytitle\":\"Tracy Barlow\",\"varianttitles\":{\"en\":\"Tracy Barlow\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":20,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":37853173,\"ns\":0,\"title\":\"Trace inequality\",\"index\":18,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T17:05:53Z\",\"lastrevid\":1219322257,\"length\":26247,\"displaytitle\":\"Trace inequality\",\"varianttitles\":{\"en\":\"Trace inequality\"}},{\"pageid\":51910669,\"ns\":0,\"title\":\"Trace McSorley\",\"index\":14,\"description\":\"American football player (born 1995)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg/320px-Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:09:27Z\",\"lastrevid\":1222646584,\"length\":44764,\"displaytitle\":\"Trace McSorley\",\"varianttitles\":{\"en\":\"Trace McSorley\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce071feb-2cee-406b-896b-1e8ea05be564","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.95100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","method":"get","status_code":200,"start_time":327397,"end_time":327770,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"468","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51c9a940-0fe6-11ef-9bdc-5a9dfe411725\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"disambiguation\",\"title\":\"Trace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296103\",\"titles\":{\"canonical\":\"Trace\",\"normalized\":\"Trace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\"},\"pageid\":155748,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1162625126\",\"tid\":\"d5940d5b-1717-11ee-845e-0f9a2664809f\",\"timestamp\":\"2023-06-30T07:29:23Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.wikipedia.org/wiki/Trace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Trace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Trace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Trace\"}},\"extract\":\"Trace may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTrace\u003c/b\u003e may refer to:\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce2d88f0-b357-42e8-8825-41151f2d3de1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":327976,"utime":233,"cutime":0,"cstime":0,"stime":174,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d0ed5ef1-c199-4946-8bc4-7d19540a0524","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.08400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2aa49fc-afd7-4e5c-b328-54cb588a0838","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.59400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324413,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"35084","content-disposition":"inline;filename*=UTF-8''Flag_of_Turkey.svg.png","content-length":"2498","content-type":"image/png","date":"Sun, 19 May 2024 23:16:47 GMT","etag":"0fa0bc210e5d2db4c8a5507ef34598e1","last-modified":"Mon, 29 Apr 2024 21:34:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/30","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ddc23c43-2cc2-44ea-a9fd-25dd0a38d38e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0c6441d-0499-4418-b6a7-5bab969e7c0c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_toolbar_button_search","width":670,"height":95,"x":483.96973,"y":144.96094,"touch_down_time":329748,"touch_up_time":329844},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ebb4446c-0a69-4532-8bd3-470ed6420d62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f567c552-15e0-4bcf-a47e-c01a1e9c3714","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.32400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/5/5f/Disambig_gray.svg/60px-Disambig_gray.svg.png","method":"get","status_code":200,"start_time":328100,"end_time":328143,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50716","content-disposition":"inline;filename*=UTF-8''Disambig_gray.svg.webp","content-length":"820","content-type":"image/webp","date":"Sun, 19 May 2024 18:56:18 GMT","etag":"e0e1b8db1a81204cebe4a1df26743a23","last-modified":"Thu, 06 May 2021 00:00:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3745","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"08b133ca-0aa4-43a5-88f7-58aa0de3cdbc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17813,"java_free_heap":4702,"total_pss":83729,"rss":180864,"native_total_heap":55296,"native_free_heap":13934,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a473be3-d72a-4c40-8fe2-48d3048a1b74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.48000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":200,"start_time":328250,"end_time":328299,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"25486","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"574","content-location":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/i18n/0.0.1\"","date":"Mon, 20 May 2024 01:56:49 GMT","etag":"W/\"-29437690499/a8435d10-1587-11ef-9ca2-eb8d6d601c75\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/6784","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1aa23b27-04c2-410b-bce7-0d79febcf712","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be891a0-a5c1-406e-85c5-ab1f983f0760","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bd7c24c-12dc-4e90-872f-67f6370e7867","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.14000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":237.96387,"y":390.9375,"touch_down_time":326873,"touch_up_time":326954},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bdca819-4669-445e-8106-8116f866b95b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2db5a959-dfe4-474b-8fe2-f972d4fdeb9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"309c2c86-0171-42dd-a81c-9353368a2363","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.11900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3a47f5c8-6a66-488a-8c09-ed25b4078758","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.87500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png","method":"get","status_code":200,"start_time":325640,"end_time":325694,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21113","content-disposition":"inline;filename*=UTF-8''Illu_conducting_passages.svg.png","content-length":"46000","content-type":"image/png","date":"Mon, 20 May 2024 03:09:39 GMT","etag":"16b2c870410f65c99f7ec65bb1c46d6d","last-modified":"Mon, 21 Mar 2022 10:14:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46631109-606e-412c-8d27-2653353abe6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.08000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":325639,"end_time":325899,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","content-length":"47989","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:33 GMT","etag":"d9b4d0f75089368a850fc4cde6a5afc7","last-modified":"Mon, 12 Jul 2021 20:26:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5009c99a-53e1-41b5-9800-c34d289c5010","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":200,"start_time":327991,"end_time":328048,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39475","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"14055","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21501","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"57e55e32-b032-43e0-9c2d-f286bb2cfa49","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.21200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5aa51a98-49a1-447e-9e52-d5c63f2a6464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","method":"get","status_code":200,"start_time":327396,"end_time":327972,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51cd2bb0-0fe6-11ef-bd1a-1d71cb25ee14\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2030","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ad624ae-1dca-4ec8-831c-eaa44203ceff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.25500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c011a3d-94fa-493a-be07-dab17ee61e96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71bdce5c-8804-438f-a355-d2e051f6b015","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":200,"start_time":327991,"end_time":328047,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38566","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"2529","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11193","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"723c72d8-76bc-4ca1-acc5-2661c3a13cf7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.09000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"79b2eb72-4c94-4c24-be6a-f504258eb93c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.21800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","method":"get","status_code":200,"start_time":328308,"end_time":329037,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"3ezppzh4qhqwuen8g21xvvnhm","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":51856,\"ns\":0,\"index\":20,\"type\":\"disambiguation\",\"title\":\"Acme\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296960\",\"titles\":{\"canonical\":\"Acme\",\"normalized\":\"Acme\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210027613\",\"tid\":\"a03bdbe5-d337-11ee-9881-cd92505f5158\",\"timestamp\":\"2024-02-24T17:10:36Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.wikipedia.org/wiki/Acme?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Acme\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Acme\",\"edit\":\"https://en.m.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Acme\"}},\"extract\":\"Acme is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAcme\u003c/b\u003e is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Acme\"},{\"pageid\":55044,\"ns\":0,\"index\":11,\"type\":\"disambiguation\",\"title\":\"Transition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q405416\",\"titles\":{\"canonical\":\"Transition\",\"normalized\":\"Transition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218110154\",\"tid\":\"dba53260-f6a9-11ee-97a9-1e10ac84822b\",\"timestamp\":\"2024-04-09T19:46:29Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.wikipedia.org/wiki/Transition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Transition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Transition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Transition\"}},\"extract\":\"Transition or transitional may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTransition\u003c/b\u003e or \u003cb\u003etransitional\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Transition\"},{\"pageid\":58717,\"ns\":0,\"index\":9,\"type\":\"disambiguation\",\"title\":\"Hume\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q224669\",\"titles\":{\"canonical\":\"Hume\",\"normalized\":\"Hume\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1193206643\",\"tid\":\"86ab898b-a98b-11ee-a7da-65aec92fe735\",\"timestamp\":\"2024-01-02T16:25:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.wikipedia.org/wiki/Hume?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hume\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hume\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hume\"}},\"extract\":\"Hume most commonly refers to:David Hume (1711–1776), Scottish philosopher\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHume\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eDavid Hume (1711–1776), Scottish philosopher\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Hume\"},{\"pageid\":148814,\"ns\":0,\"index\":12,\"type\":\"disambiguation\",\"title\":\"Max\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q225238\",\"titles\":{\"canonical\":\"Max\",\"normalized\":\"Max\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219425766\",\"tid\":\"6d34119c-fce2-11ee-8b11-75e3c19343cd\",\"timestamp\":\"2024-04-17T17:46:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.wikipedia.org/wiki/Max?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Max\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Max\",\"edit\":\"https://en.m.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Max\"}},\"extract\":\"Max or MAX may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMax\u003c/b\u003e or \u003cb\u003eMAX\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Max\"},{\"pageid\":279097,\"ns\":0,\"index\":2,\"type\":\"disambiguation\",\"title\":\"Star_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q176688\",\"titles\":{\"canonical\":\"Star_(disambiguation)\",\"normalized\":\"Star (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224134541\",\"tid\":\"85509e7f-1385-11ef-bd2f-84134f5c8a7b\",\"timestamp\":\"2024-05-16T13:09:26Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Star_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Star_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Star_(disambiguation)\"}},\"extract\":\"A star is a luminous astronomical object.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003estar\u003c/b\u003e is a luminous astronomical object.\u003c/p\u003e\",\"normalizedtitle\":\"Star (disambiguation)\"},{\"pageid\":290282,\"ns\":0,\"index\":8,\"type\":\"disambiguation\",\"title\":\"State\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q12251220\",\"titles\":{\"canonical\":\"State\",\"normalized\":\"State\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216877243\",\"tid\":\"30babe9c-f0fd-11ee-a250-3300880f5fd7\",\"timestamp\":\"2024-04-02T14:27:53Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/State\",\"revisions\":\"https://en.wikipedia.org/wiki/State?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:State\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/State\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/State\",\"edit\":\"https://en.m.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:State\"}},\"extract\":\"State most commonly refers to:State (polity), a centralized political organization that regulates law and society within a territory\\nSovereign state, a sovereign polity in international law, commonly referred to as a country\\nNation state, a state where the majority identify with a single nation \\nConstituent state, a political subdivision of a state\\nFederated state, constituent states part of a federation\\nState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eState\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eState (polity), a centralized political organization that regulates law and society within a territory\\n\u003cul\u003e\u003cli\u003eSovereign state, a sovereign polity in international law, commonly referred to as a country\u003c/li\u003e\\n\u003cli\u003eNation state, a state where the majority identify with a single nation \u003c/li\u003e\\n\u003cli\u003eConstituent state, a political subdivision of a state\u003c/li\u003e\\n\u003cli\u003eFederated state, constituent states part of a federation\u003c/li\u003e\u003c/ul\u003e\u003c/li\u003e\\n\u003cli\u003eState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"State\"},{\"pageid\":306880,\"ns\":0,\"index\":17,\"type\":\"disambiguation\",\"title\":\"Frame\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q294490\",\"titles\":{\"canonical\":\"Frame\",\"normalized\":\"Frame\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220799565\",\"tid\":\"51bfac39-0361-11ef-a4ec-fdcd7f4a5f97\",\"timestamp\":\"2024-04-26T00:09:59Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.wikipedia.org/wiki/Frame?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Frame\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Frame\",\"edit\":\"https://en.m.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Frame\"}},\"extract\":\"A frame is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eframe\u003c/b\u003e is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\u003c/p\u003e\",\"normalizedtitle\":\"Frame\"},{\"pageid\":466211,\"ns\":0,\"index\":4,\"type\":\"disambiguation\",\"title\":\"Flow\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5426556\",\"titles\":{\"canonical\":\"Flow\",\"normalized\":\"Flow\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222836864\",\"tid\":\"542af432-0d01-11ef-b3b3-5feec1ee5c5b\",\"timestamp\":\"2024-05-08T06:08:03Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.wikipedia.org/wiki/Flow?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Flow\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Flow\",\"edit\":\"https://en.m.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Flow\"}},\"extract\":\"Flow may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFlow\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Flow\"},{\"pageid\":497854,\"ns\":0,\"index\":10,\"type\":\"disambiguation\",\"title\":\"Triad\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2482068\",\"titles\":{\"canonical\":\"Triad\",\"normalized\":\"Triad\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221484812\",\"tid\":\"b78d96ed-06b9-11ef-9cc5-35df4b5c8ef8\",\"timestamp\":\"2024-04-30T06:20:19Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.wikipedia.org/wiki/Triad?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Triad\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Triad\",\"edit\":\"https://en.m.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Triad\"}},\"extract\":\"Triad or triade may refer to:a group of three\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTriad\u003c/b\u003e or \u003cb\u003etriade\u003c/b\u003e may refer to:\u003c/p\u003e\u003cul\u003e\u003cli\u003ea group of three\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Triad\"},{\"pageid\":528769,\"ns\":0,\"index\":5,\"type\":\"disambiguation\",\"title\":\"Locust_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q416372\",\"titles\":{\"canonical\":\"Locust_(disambiguation)\",\"normalized\":\"Locust (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184863699\",\"tid\":\"db722f41-81ce-11ee-b356-a8834ef0e4e5\",\"timestamp\":\"2023-11-13T02:46:34Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Locust_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"}},\"extract\":\"Locusts are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLocusts\u003c/b\u003e are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\u003c/p\u003e\",\"normalizedtitle\":\"Locust (disambiguation)\"},{\"pageid\":651807,\"ns\":0,\"index\":6,\"type\":\"disambiguation\",\"title\":\"Operator\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q228588\",\"titles\":{\"canonical\":\"Operator\",\"normalized\":\"Operator\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219370184\",\"tid\":\"9c787d9b-fca5-11ee-b070-ca416f63e422\",\"timestamp\":\"2024-04-17T10:31:12Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.wikipedia.org/wiki/Operator?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Operator\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Operator\",\"edit\":\"https://en.m.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Operator\"}},\"extract\":\"Operator may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOperator\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Operator\"},{\"pageid\":698312,\"ns\":0,\"index\":1,\"type\":\"disambiguation\",\"title\":\"Bass\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q227155\",\"titles\":{\"canonical\":\"Bass\",\"normalized\":\"Bass\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212658995\",\"tid\":\"5bd41b08-dda6-11ee-9915-c896cafa6952\",\"timestamp\":\"2024-03-08T23:48:27Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.wikipedia.org/wiki/Bass?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bass\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bass\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bass\"}},\"extract\":\"Bass or Basses may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBass\u003c/b\u003e or \u003cb\u003eBasses\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bass\"},{\"pageid\":1047948,\"ns\":0,\"index\":14,\"type\":\"disambiguation\",\"title\":\"Bean_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q356770\",\"titles\":{\"canonical\":\"Bean_(disambiguation)\",\"normalized\":\"Bean (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156385398\",\"tid\":\"85749416-f8b9-11ed-8a51-5d7eb7f0d61d\",\"timestamp\":\"2023-05-22T15:58:41Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bean_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"}},\"extract\":\"A bean is a large seed of several plants in the family Fabaceae.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebean\u003c/b\u003e is a large seed of several plants in the family \u003ci\u003eFabaceae\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Bean (disambiguation)\"},{\"pageid\":1102921,\"ns\":0,\"index\":7,\"type\":\"disambiguation\",\"title\":\"Bear_Creek\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q299502\",\"titles\":{\"canonical\":\"Bear_Creek\",\"normalized\":\"Bear Creek\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1186805589\",\"tid\":\"5b7499d1-8bae-11ee-bdab-354de44b9cb7\",\"timestamp\":\"2023-11-25T16:19:07Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bear_Creek\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bear_Creek\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bear_Creek\"}},\"extract\":\"Bear Creek or Bearcreek may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBear Creek\u003c/b\u003e or \u003cb\u003eBearcreek\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bear Creek\"},{\"pageid\":1928111,\"ns\":0,\"index\":3,\"type\":\"disambiguation\",\"title\":\"Cache\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1025020\",\"titles\":{\"canonical\":\"Cache\",\"normalized\":\"Cache\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661635\",\"tid\":\"3bc4a1e4-160a-11ef-b8bb-3cdd522a99bf\",\"timestamp\":\"2024-05-19T18:04:28Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.wikipedia.org/wiki/Cache?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cache\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cache\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cache\"}},\"extract\":\"Cache, caching, or caché may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCache\u003c/b\u003e, \u003cb\u003ecaching\u003c/b\u003e, or \u003cb\u003ecaché\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Cache\"},{\"pageid\":3281599,\"ns\":0,\"index\":16,\"type\":\"disambiguation\",\"title\":\"Genius_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q404618\",\"titles\":{\"canonical\":\"Genius_(disambiguation)\",\"normalized\":\"Genius (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1161111422\",\"tid\":\"6b9c9f6b-0f96-11ee-84fa-f9ac16ac26a1\",\"timestamp\":\"2023-06-20T18:15:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Genius_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"}},\"extract\":\"A genius is a person who has exceptional intellectual ability, creativity, or originality.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egenius\u003c/b\u003e is a person who has exceptional intellectual ability, creativity, or originality.\u003c/p\u003e\",\"normalizedtitle\":\"Genius (disambiguation)\"},{\"pageid\":4620140,\"ns\":0,\"index\":15,\"type\":\"disambiguation\",\"title\":\"Streamline\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1900895\",\"titles\":{\"canonical\":\"Streamline\",\"normalized\":\"Streamline\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1209904008\",\"tid\":\"434f1d0f-d2bc-11ee-b2c1-036e3ee9095a\",\"timestamp\":\"2024-02-24T02:27:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.wikipedia.org/wiki/Streamline?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Streamline\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Streamline\",\"edit\":\"https://en.m.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Streamline\"}},\"extract\":\"Streamline may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eStreamline\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Streamline\"},{\"pageid\":6771526,\"ns\":0,\"index\":19,\"type\":\"disambiguation\",\"title\":\"Linear_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1826396\",\"titles\":{\"canonical\":\"Linear_(disambiguation)\",\"normalized\":\"Linear (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216492975\",\"tid\":\"26ee5fd7-ef45-11ee-82bc-82313c7c5f5e\",\"timestamp\":\"2024-03-31T09:57:58Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Linear_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"}},\"extract\":\"Linear is used to describe linearity in mathematics.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLinear\u003c/b\u003e is used to describe linearity in mathematics.\u003c/p\u003e\",\"normalizedtitle\":\"Linear (disambiguation)\"},{\"pageid\":11040001,\"ns\":0,\"index\":13,\"type\":\"disambiguation\",\"title\":\"Fun_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q360552\",\"titles\":{\"canonical\":\"Fun_(disambiguation)\",\"normalized\":\"Fun (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156949285\",\"tid\":\"4fb9f00f-faf1-11ed-81d7-2fc57ef16069\",\"timestamp\":\"2023-05-25T11:43:05Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Fun_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"}},\"extract\":\"Fun generally refers to recreation or entertainment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFun\u003c/b\u003e generally refers to recreation or entertainment.\u003c/p\u003e\",\"normalizedtitle\":\"Fun (disambiguation)\"},{\"pageid\":50724448,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Glossary_of_computer_graphics\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25106492\",\"titles\":{\"canonical\":\"Glossary_of_computer_graphics\",\"normalized\":\"Glossary of computer graphics\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211169501\",\"tid\":\"6599dade-d78d-11ee-8bf4-2e6b9dc7dad8\",\"timestamp\":\"2024-03-01T05:34:39Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Glossary_of_computer_graphics\",\"edit\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"}},\"extract\":\"This is a glossary of terms relating to computer graphics.\",\"extract_html\":\"\u003cp\u003eThis is a glossary of terms relating to computer graphics.\u003c/p\u003e\",\"normalizedtitle\":\"Glossary of computer graphics\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c3bcc8c-ca85-4ee0-a848-ba43ca9a5158","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.51100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=t\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":323918,"end_time":324329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2298.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"7srrpm43ynlqnfiadnncd1yp9"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":25734,\"ns\":0,\"title\":\"Taiwan\",\"index\":12,\"description\":\"Country in East Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Flag_of_the_Republic_of_China.svg/320px-Flag_of_the_Republic_of_China.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":24,\"lon\":121,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T07:37:08Z\",\"lastrevid\":1224751002,\"length\":313804,\"displaytitle\":\"Taiwan\",\"varianttitles\":{\"en\":\"Taiwan\"}},{\"pageid\":29810,\"ns\":0,\"title\":\"Texas\",\"index\":16,\"description\":\"U.S. state\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Flag_of_Texas.svg/320px-Flag_of_Texas.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":31,\"lon\":-99,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T07:11:45Z\",\"lastrevid\":1224586226,\"length\":258627,\"displaytitle\":\"Texas\",\"varianttitles\":{\"en\":\"Texas\"}},{\"pageid\":29812,\"ns\":0,\"title\":\"The Beatles\",\"index\":14,\"description\":\"English rock band (1960–1970)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/The_Beatles_members_at_New_York_City_in_1964.jpg/320px-The_Beatles_members_at_New_York_City_in_1964.jpg\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224641394,\"length\":221036,\"displaytitle\":\"The Beatles\",\"varianttitles\":{\"en\":\"The Beatles\"}},{\"pageid\":30057,\"ns\":0,\"title\":\"Tokyo\",\"index\":18,\"description\":\"Capital and most populous city of Japan\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Skyscrapers_of_Shinjuku_2009_January.jpg/320px-Skyscrapers_of_Shinjuku_2009_January.jpg\",\"width\":320,\"height\":171},\"coordinates\":[{\"lat\":35.68972222,\"lon\":139.69222222,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:05:37Z\",\"lastrevid\":1224699089,\"length\":157548,\"displaytitle\":\"Tokyo\",\"varianttitles\":{\"en\":\"Tokyo\"}},{\"pageid\":30071,\"ns\":0,\"title\":\"T\",\"index\":1,\"description\":\"20th letter of the Latin alphabet\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T11:32:01Z\",\"lastrevid\":1223065110,\"length\":16234,\"displaytitle\":\"T\",\"varianttitles\":{\"en\":\"T\"}},{\"pageid\":30128,\"ns\":0,\"title\":\"Thailand\",\"index\":10,\"description\":\"Country in Southeast Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Flag_of_Thailand.svg/320px-Flag_of_Thailand.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":15,\"lon\":101,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224577988,\"length\":271956,\"displaytitle\":\"Thailand\",\"varianttitles\":{\"en\":\"Thailand\"}},{\"pageid\":30463,\"ns\":0,\"title\":\"Taxonomy (biology)\",\"index\":3,\"description\":\"Science of naming, defining and classifying organisms\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:43Z\",\"lastrevid\":1218991780,\"length\":70362,\"displaytitle\":\"Taxonomy (biology)\",\"varianttitles\":{\"en\":\"Taxonomy (biology)\"}},{\"pageid\":30680,\"ns\":0,\"title\":\"The New York Times\",\"index\":6,\"description\":\"American daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/The_New_York_Times%2C_January_13%2C_2024.png\",\"width\":234,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:12:00Z\",\"lastrevid\":1224686229,\"length\":227907,\"displaytitle\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\"}},{\"pageid\":30837,\"ns\":0,\"title\":\"Tampa Bay Buccaneers\",\"index\":9,\"description\":\"National Football League franchise in Tampa, Florida\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Tampabay_buccaneers_unif20.png/320px-Tampabay_buccaneers_unif20.png\",\"width\":320,\"height\":306},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:53:12Z\",\"lastrevid\":1224621779,\"length\":225993,\"displaytitle\":\"Tampa Bay Buccaneers\",\"varianttitles\":{\"en\":\"Tampa Bay Buccaneers\"}},{\"pageid\":30890,\"ns\":0,\"title\":\"Time zone\",\"index\":4,\"description\":\"Area that observes a uniform standard time\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224125392,\"length\":92267,\"displaytitle\":\"Time zone\",\"varianttitles\":{\"en\":\"Time zone\"}},{\"pageid\":31460,\"ns\":0,\"title\":\"Tom Cruise\",\"index\":20,\"description\":\"American actor (born 1962)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Tom_Cruise_by_Gage_Skidmore_2.jpg/320px-Tom_Cruise_by_Gage_Skidmore_2.jpg\",\"width\":320,\"height\":403},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224593587,\"length\":123370,\"displaytitle\":\"Tom Cruise\",\"varianttitles\":{\"en\":\"Tom Cruise\"}},{\"pageid\":52911,\"ns\":0,\"title\":\"Town\",\"index\":11,\"description\":\"Type of human settlement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/St_Mary%27s_Church%2C_Castle_Street_1.jpg/320px-St_Mary%27s_Church%2C_Castle_Street_1.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:58Z\",\"lastrevid\":1223398228,\"length\":97586,\"displaytitle\":\"Town\",\"varianttitles\":{\"en\":\"Town\"}},{\"pageid\":212390,\"ns\":0,\"title\":\"Tilde\",\"index\":2,\"description\":\"Punctuation and accent mark\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:48Z\",\"lastrevid\":1224034998,\"length\":62175,\"displaytitle\":\"Tilde\",\"varianttitles\":{\"en\":\"Tilde\"}},{\"pageid\":339841,\"ns\":0,\"title\":\"Tom Brady\",\"index\":19,\"description\":\"American football player (born 1977)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Tom_Brady_2021.png/320px-Tom_Brady_2021.png\",\"width\":320,\"height\":453},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:13:06Z\",\"lastrevid\":1224740104,\"length\":448204,\"displaytitle\":\"Tom Brady\",\"varianttitles\":{\"en\":\"Tom Brady\"}},{\"pageid\":5422144,\"ns\":0,\"title\":\"Taylor Swift\",\"index\":13,\"description\":\"American singer-songwriter (born 1989)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png/320px-Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png\",\"width\":320,\"height\":473},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:54:01Z\",\"lastrevid\":1224278219,\"length\":361501,\"displaytitle\":\"Taylor Swift\",\"varianttitles\":{\"en\":\"Taylor Swift\"}},{\"pageid\":9988187,\"ns\":0,\"title\":\"Twitter\",\"index\":8,\"description\":\"American social networking service\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Screen_of_X_%28Twitter%29.png/320px-Screen_of_X_%28Twitter%29.png\",\"width\":320,\"height\":179},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:32:30Z\",\"lastrevid\":1224741726,\"length\":325641,\"displaytitle\":\"Twitter\",\"varianttitles\":{\"en\":\"Twitter\"}},{\"pageid\":10396793,\"ns\":0,\"title\":\"The Holocaust\",\"index\":17,\"description\":\"Genocide of European Jews by Nazi Germany\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg/320px-Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg\",\"width\":320,\"height\":214},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:33:23Z\",\"lastrevid\":1223910128,\"length\":124931,\"displaytitle\":\"The Holocaust\",\"varianttitles\":{\"en\":\"The Holocaust\"}},{\"pageid\":11125639,\"ns\":0,\"title\":\"Turkey\",\"index\":5,\"description\":\"Country in West Asia and Southeast Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":39.91666667,\"lon\":32.85,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:26:16Z\",\"lastrevid\":1224741211,\"length\":318437,\"displaytitle\":\"Turkey\",\"varianttitles\":{\"en\":\"Turkey\"}},{\"pageid\":19344515,\"ns\":0,\"title\":\"The Guardian\",\"index\":15,\"description\":\"British national daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/67/The_Guardian_28_May_2021.jpg\",\"width\":283,\"height\":352},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:26Z\",\"lastrevid\":1222658458,\"length\":240656,\"displaytitle\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\"}},{\"pageid\":19508643,\"ns\":0,\"title\":\"Television show\",\"index\":7,\"description\":\"Segment of audiovisual content intended for broadcast on television\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/MDR_Kripo_live.jpg/320px-MDR_Kripo_live.jpg\",\"width\":320,\"height\":243},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:51:01Z\",\"lastrevid\":1224194639,\"length\":43203,\"displaytitle\":\"Television show\",\"varianttitles\":{\"en\":\"Television show\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"813d3248-e1fe-402a-9682-752b65613dd6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.60300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25126","content-disposition":"inline;filename*=UTF-8''World_Time_Zones_Map.svg.png","content-length":"68324","content-type":"image/png","date":"Mon, 20 May 2024 02:02:45 GMT","etag":"9b171584b050c3fd217dfd30574547f6","last-modified":"Sun, 31 Mar 2024 06:20:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ae68bb6-7433-47e3-b82a-204ccc8a02f7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":16718,"java_free_heap":5803,"total_pss":137314,"rss":242300,"native_total_heap":70656,"native_free_heap":10330,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b042f42-943f-4596-8ffc-acd853c4415d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.92400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":322477,"end_time":322743,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2299.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d881c8e-732d-4e6c-8751-a660ef65d778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.19900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dffbad7-3fd8-48f6-86ec-067dd1d76791","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.32100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":324084,"end_time":324140,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"481827","content-type":"multipart/form-data; boundary=7944559f-91a4-4d67-ba85-7db57ef8425f","host":"10.0.2.2:8080","msr-req-id":"39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90e438f0-c93b-4782-9375-89f06db70057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":327043,"end_time":327404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d8494d-f4c5-405f-b999-4cbc026f72c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92e56766-2b0f-4e5d-b514-cc09b7ca5afb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.27900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2.svg/80px-Wiktionary-logo-en-v2.svg.png","method":"get","status_code":200,"start_time":328052,"end_time":328098,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"68799","content-disposition":"inline;filename*=UTF-8''Wiktionary-logo-en-v2.svg.webp","content-length":"3238","content-type":"image/webp","date":"Sun, 19 May 2024 13:54:56 GMT","etag":"c57fb1ee1c3027a62a4112ca10924e9f","last-modified":"Sun, 31 Mar 2024 19:30:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/13195","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92f988ed-f9ac-4c6c-99cb-bcb9a4819264","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.82600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=t\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":324343,"end_time":324645,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95750852-f7dc-45f9-8011-1a06c8b42344","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22030,"java_free_heap":1922,"total_pss":91968,"rss":188260,"native_total_heap":55296,"native_free_heap":12770,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9776297b-4159-4f53-864b-e29bc6d2d2aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.28100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":200,"start_time":328043,"end_time":328100,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36457","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"24904","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20429","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c5dece2-a9d3-4f57-88e0-1120fb9b2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.25800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=trace\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":325633,"end_time":326077,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-zmxwq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"54z4tdhlrtwqvvy3vbuoazu30"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":42021,\"ns\":0,\"title\":\"Trace radioisotope\",\"index\":9,\"description\":\"Radioisotope that occurs naturally in trace amounts\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:00:52Z\",\"lastrevid\":1185490351,\"length\":3871,\"displaytitle\":\"Trace radioisotope\",\"varianttitles\":{\"en\":\"Trace radioisotope\"}},{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":3,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":174247,\"ns\":0,\"title\":\"Traceability\",\"index\":7,\"description\":\"Capability to trace something\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T03:01:35Z\",\"lastrevid\":1209209122,\"length\":22185,\"displaytitle\":\"Traceability\",\"varianttitles\":{\"en\":\"Traceability\"}},{\"pageid\":192266,\"ns\":0,\"title\":\"Trace class\",\"index\":18,\"description\":\"Compact operator for which a finite trace can be defined\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:24Z\",\"lastrevid\":1222901758,\"length\":18356,\"displaytitle\":\"Trace class\",\"varianttitles\":{\"en\":\"Trace class\"}},{\"pageid\":235175,\"ns\":0,\"title\":\"Trace element\",\"index\":6,\"description\":\"Element of low concentration\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:41Z\",\"lastrevid\":1221455717,\"length\":4788,\"displaytitle\":\"Trace element\",\"varianttitles\":{\"en\":\"Trace element\"}},{\"pageid\":344127,\"ns\":0,\"title\":\"Signal trace\",\"index\":14,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-07T07:48:19Z\",\"lastrevid\":1176213464,\"length\":1462,\"displaytitle\":\"Signal trace\",\"varianttitles\":{\"en\":\"Signal trace\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":647241,\"ns\":0,\"title\":\"Without a Trace\",\"index\":12,\"description\":\"American crime drama series that aired on CBS from 2002 to 2009\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/61/Without_a_trace_logo.jpg/320px-Without_a_trace_logo.jpg\",\"width\":320,\"height\":205},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:04:00Z\",\"lastrevid\":1220776236,\"length\":36173,\"displaytitle\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\"}},{\"pageid\":656411,\"ns\":0,\"title\":\"Stack trace\",\"index\":17,\"description\":\"Report of stack frames during program execution\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T11:14:33Z\",\"lastrevid\":1220214397,\"length\":9358,\"displaytitle\":\"Stack trace\",\"varianttitles\":{\"en\":\"Stack trace\"}},{\"pageid\":814148,\"ns\":0,\"title\":\"Partial trace\",\"index\":16,\"description\":\"Function over linear operators\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T19:42:11Z\",\"lastrevid\":1224497501,\"length\":11394,\"displaytitle\":\"Partial trace\",\"varianttitles\":{\"en\":\"Partial trace\"}},{\"pageid\":1411865,\"ns\":0,\"title\":\"TRACE\",\"index\":2,\"description\":\"NASA satellite of the Explorer program\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/TRACE_illustration_%28transparent_bg%29.png/320px-TRACE_illustration_%28transparent_bg%29.png\",\"width\":320,\"height\":358},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:27Z\",\"lastrevid\":1220777730,\"length\":10580,\"displaytitle\":\"TRACE\",\"varianttitles\":{\"en\":\"TRACE\"}},{\"pageid\":1473870,\"ns\":0,\"title\":\"Trace gas\",\"index\":20,\"description\":\"Gases apart from nitrogen, oxygen, and argon in Earth's atmosphere\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:47Z\",\"lastrevid\":1196165108,\"length\":12073,\"displaytitle\":\"Trace gas\",\"varianttitles\":{\"en\":\"Trace gas\"}},{\"pageid\":1775721,\"ns\":0,\"title\":\"Tracor\",\"index\":11,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:50Z\",\"lastrevid\":1187914941,\"length\":6816,\"displaytitle\":\"Tracor\",\"varianttitles\":{\"en\":\"Tracor\"}},{\"pageid\":5923016,\"ns\":0,\"title\":\"Traces\",\"index\":8,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1026786113,\"length\":1364,\"displaytitle\":\"Traces\",\"varianttitles\":{\"en\":\"Traces\"}},{\"pageid\":12977524,\"ns\":0,\"title\":\"Buffalo Trace\",\"index\":10,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-03T03:50:27Z\",\"lastrevid\":1155847083,\"length\":413,\"displaytitle\":\"Buffalo Trace\",\"varianttitles\":{\"en\":\"Buffalo Trace\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":4,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":23691192,\"ns\":0,\"title\":\"Trace Urban\",\"index\":15,\"description\":\"French music video television channel\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Traceurban2022.png\",\"width\":281,\"height\":234},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:02:19Z\",\"lastrevid\":1224430263,\"length\":5085,\"displaytitle\":\"Trace Urban\",\"varianttitles\":{\"en\":\"Trace Urban\"}},{\"pageid\":56336978,\"ns\":0,\"title\":\"Leave No Trace (film)\",\"index\":19,\"description\":\"2018 film directed by Debra Granik\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Leave_No_Trace.png\",\"width\":220,\"height\":326},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:30:52Z\",\"lastrevid\":1213940674,\"length\":31088,\"displaytitle\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\"}},{\"pageid\":67751245,\"ns\":0,\"title\":\"No Trace\",\"index\":13,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-04T12:45:31Z\",\"lastrevid\":1024877270,\"length\":297,\"displaytitle\":\"No Trace\",\"varianttitles\":{\"en\":\"No Trace\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a29a4210-71bb-4aed-926b-594ee1ba676e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a70af2ab-180b-452c-aba4-9814130dc00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.27000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","width":1080,"height":1731,"x":530.96924,"y":97.96875,"touch_down_time":329003,"touch_up_time":329087},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7ad62c3-7d8a-45db-bd7a-6d4f26154631","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.23300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":200,"start_time":327991,"end_time":328051,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45471","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"4852","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21393","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"af11ff8d-59b0-4d28-abc8-45fc301daa75","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3e1c8fb-90f4-4160-a501-8cd713bf716b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.90000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":322423,"end_time":322719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1054","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b480de16-bfef-460b-965d-9168e5fe8b5e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.24900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5389e9a-778b-433d-b086-93cbec315aad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7325882-b0f1-4527-b9b0-8348c61efe78","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":324976,"utime":166,"cutime":0,"cstime":0,"stime":130,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c04c7c3a-ff6c-4535-808b-b8c58d13afad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"caf7e17c-d815-4ea1-b729-235e03758e19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.58900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png","method":"get","status_code":200,"start_time":324364,"end_time":324408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64493","content-disposition":"inline;filename*=UTF-8''Latin_letter_T.svg.png","content-length":"1644","content-type":"image/png","date":"Sun, 19 May 2024 15:06:38 GMT","etag":"9dfb888dcc1370907d55e742f7bff81a","last-modified":"Wed, 13 Mar 2024 09:14:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/37","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc17d708-c713-4578-8cd6-d7f11dae7c02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.80400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=trace\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":325282,"end_time":325623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"3mwp74bhpcfgsz3sjuvmbyv59"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":4,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":53486,\"ns\":0,\"title\":\"Tracey Ullman\",\"index\":6,\"description\":\"British-American actress, comedian, singer, director, producer and writer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg\",\"width\":320,\"height\":421},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1224560456,\"length\":57284,\"displaytitle\":\"Tracey Ullman\",\"varianttitles\":{\"en\":\"Tracey Ullman\"}},{\"pageid\":70289,\"ns\":0,\"title\":\"Trachea\",\"index\":3,\"description\":\"Cartilaginous tube that connects the pharynx and larynx to the lungs\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png\",\"width\":320,\"height\":412},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:58Z\",\"lastrevid\":1221869674,\"length\":33683,\"displaytitle\":\"Trachea\",\"varianttitles\":{\"en\":\"Trachea\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":163837,\"ns\":0,\"title\":\"Tracey Emin\",\"index\":10,\"description\":\"English artist\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Tracey_Emin_1-cropped.jpg/320px-Tracey_Emin_1-cropped.jpg\",\"width\":320,\"height\":430},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1221169591,\"length\":137792,\"displaytitle\":\"Tracey Emin\",\"varianttitles\":{\"en\":\"Tracey Emin\"}},{\"pageid\":169833,\"ns\":0,\"title\":\"Tracy Chapman\",\"index\":8,\"description\":\"American singer-songwriter (born 1964)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1224488953,\"length\":42978,\"displaytitle\":\"Tracy Chapman\",\"varianttitles\":{\"en\":\"Tracy Chapman\"}},{\"pageid\":179179,\"ns\":0,\"title\":\"Traci Lords\",\"index\":2,\"description\":\"American actress (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg\",\"width\":320,\"height\":468},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:44Z\",\"lastrevid\":1223595908,\"length\":59968,\"displaytitle\":\"Traci Lords\",\"varianttitles\":{\"en\":\"Traci Lords\"}},{\"pageid\":305989,\"ns\":0,\"title\":\"Tracy Austin\",\"index\":13,\"description\":\"American tennis player\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Austin_2009_US_Open_02.jpg/320px-Austin_2009_US_Open_02.jpg\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:58:51Z\",\"lastrevid\":1221029612,\"length\":37982,\"displaytitle\":\"Tracy Austin\",\"varianttitles\":{\"en\":\"Tracy Austin\"}},{\"pageid\":367492,\"ns\":0,\"title\":\"Trace fossil\",\"index\":17,\"description\":\"Geological record of biological activity\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Cheirotherium_prints_possibly_Ticinosuchus.JPG/320px-Cheirotherium_prints_possibly_Ticinosuchus.JPG\",\"width\":320,\"height\":509},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:10:29Z\",\"lastrevid\":1222107766,\"length\":47210,\"displaytitle\":\"Trace fossil\",\"varianttitles\":{\"en\":\"Trace fossil\"}},{\"pageid\":481757,\"ns\":0,\"title\":\"Tracy Lawrence\",\"index\":11,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/CountrySingerTracyLawrence.jpg/320px-CountrySingerTracyLawrence.jpg\",\"width\":320,\"height\":311},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1213761574,\"length\":62239,\"displaytitle\":\"Tracy Lawrence\",\"varianttitles\":{\"en\":\"Tracy Lawrence\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":1014986,\"ns\":0,\"title\":\"Tracee Ellis Ross\",\"index\":7,\"description\":\"American actress\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg\",\"width\":320,\"height\":356},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:49:07Z\",\"lastrevid\":1223633352,\"length\":54995,\"displaytitle\":\"Tracee Ellis Ross\",\"varianttitles\":{\"en\":\"Tracee Ellis Ross\"}},{\"pageid\":1335475,\"ns\":0,\"title\":\"Tracy Morgan\",\"index\":9,\"description\":\"American actor and comedian (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Tracy_Morgan_3_Shankbone_2009_NYC.jpg/320px-Tracy_Morgan_3_Shankbone_2009_NYC.jpg\",\"width\":320,\"height\":382},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:14Z\",\"lastrevid\":1224054489,\"length\":45517,\"displaytitle\":\"Tracy Morgan\",\"varianttitles\":{\"en\":\"Tracy Morgan\"}},{\"pageid\":1619336,\"ns\":0,\"title\":\"Tracy-Ann Oberman\",\"index\":12,\"description\":\"English actress, playwright, writer and narrator (born 1966)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Tracy_Ann_Oberman_in_2015.jpg/320px-Tracy_Ann_Oberman_in_2015.jpg\",\"width\":320,\"height\":375},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:14Z\",\"lastrevid\":1224279525,\"length\":60059,\"displaytitle\":\"Tracy-Ann Oberman\",\"varianttitles\":{\"en\":\"Tracy-Ann Oberman\"}},{\"pageid\":1690983,\"ns\":0,\"title\":\"Tracy Smothers\",\"index\":15,\"description\":\"American professional wrestler (1962–2020)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/Tracy_Smothers.jpg/320px-Tracy_Smothers.jpg\",\"width\":320,\"height\":310},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:35Z\",\"lastrevid\":1223488378,\"length\":49799,\"displaytitle\":\"Tracy Smothers\",\"varianttitles\":{\"en\":\"Tracy Smothers\"}},{\"pageid\":1745354,\"ns\":0,\"title\":\"Tracy Byrd\",\"index\":19,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg/320px-Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg\",\"width\":320,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:44Z\",\"lastrevid\":1219259285,\"length\":16462,\"displaytitle\":\"Tracy Byrd\",\"varianttitles\":{\"en\":\"Tracy Byrd\"}},{\"pageid\":2279675,\"ns\":0,\"title\":\"Tracy Barlow\",\"index\":16,\"description\":\"Fictional character from Coronation Street\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/bb/Tracy_Barlow.jpg\",\"width\":305,\"height\":344},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T04:25:27Z\",\"lastrevid\":1222988164,\"length\":74550,\"displaytitle\":\"Tracy Barlow\",\"varianttitles\":{\"en\":\"Tracy Barlow\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":20,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":37853173,\"ns\":0,\"title\":\"Trace inequality\",\"index\":18,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T17:05:53Z\",\"lastrevid\":1219322257,\"length\":26247,\"displaytitle\":\"Trace inequality\",\"varianttitles\":{\"en\":\"Trace inequality\"}},{\"pageid\":51910669,\"ns\":0,\"title\":\"Trace McSorley\",\"index\":14,\"description\":\"American football player (born 1995)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg/320px-Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:09:27Z\",\"lastrevid\":1222646584,\"length\":44764,\"displaytitle\":\"Trace McSorley\",\"varianttitles\":{\"en\":\"Trace McSorley\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce071feb-2cee-406b-896b-1e8ea05be564","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.95100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","method":"get","status_code":200,"start_time":327397,"end_time":327770,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"468","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51c9a940-0fe6-11ef-9bdc-5a9dfe411725\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"disambiguation\",\"title\":\"Trace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296103\",\"titles\":{\"canonical\":\"Trace\",\"normalized\":\"Trace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\"},\"pageid\":155748,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1162625126\",\"tid\":\"d5940d5b-1717-11ee-845e-0f9a2664809f\",\"timestamp\":\"2023-06-30T07:29:23Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.wikipedia.org/wiki/Trace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Trace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Trace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Trace\"}},\"extract\":\"Trace may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTrace\u003c/b\u003e may refer to:\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce2d88f0-b357-42e8-8825-41151f2d3de1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":327976,"utime":233,"cutime":0,"cstime":0,"stime":174,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d0ed5ef1-c199-4946-8bc4-7d19540a0524","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.08400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2aa49fc-afd7-4e5c-b328-54cb588a0838","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.59400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324413,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"35084","content-disposition":"inline;filename*=UTF-8''Flag_of_Turkey.svg.png","content-length":"2498","content-type":"image/png","date":"Sun, 19 May 2024 23:16:47 GMT","etag":"0fa0bc210e5d2db4c8a5507ef34598e1","last-modified":"Mon, 29 Apr 2024 21:34:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/30","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ddc23c43-2cc2-44ea-a9fd-25dd0a38d38e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0c6441d-0499-4418-b6a7-5bab969e7c0c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_toolbar_button_search","width":670,"height":95,"x":483.96973,"y":144.96094,"touch_down_time":329748,"touch_up_time":329844},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ebb4446c-0a69-4532-8bd3-470ed6420d62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f567c552-15e0-4bcf-a47e-c01a1e9c3714","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.32400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/5/5f/Disambig_gray.svg/60px-Disambig_gray.svg.png","method":"get","status_code":200,"start_time":328100,"end_time":328143,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50716","content-disposition":"inline;filename*=UTF-8''Disambig_gray.svg.webp","content-length":"820","content-type":"image/webp","date":"Sun, 19 May 2024 18:56:18 GMT","etag":"e0e1b8db1a81204cebe4a1df26743a23","last-modified":"Thu, 06 May 2021 00:00:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3745","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json index 1cb88ab40..1de44d6f9 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json @@ -1 +1 @@ -[{"id":"03744f06-c024-432d-bb35-9f5585d65a94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.88400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":200,"start_time":403078,"end_time":403703,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-length":"74696","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/octet-stream","date":"Mon, 20 May 2024 09:02:50 GMT","etag":"W/\"123c8-18d7e9bad57\"","last-modified":"Tue, 06 Feb 2024 13:29:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0424c2b7-989a-4070-9daa-c787599da0fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.32400000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_places_container","width":1080,"height":126,"x":341.98242,"y":1459.9219,"touch_down_time":401000,"touch_up_time":401139},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"048acbdd-5cd9-4237-82d6-d5489250b2f3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"05eeef2c-06a7-4973-960e-d3f608d5fb4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0eff9259-2807-4579-97d6-a6cf4f260860","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be803ae-d96f-4bd7-8d6a-09c569d2aa31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"4045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2245e3af-e068-4134-8353-0cf02703ceb4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36a77f2d-2ae6-44b2-9dd6-f5d14c78e403","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.58400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":403491,"end_time":404403,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"959f-189fdc7a673\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"959f-189fdc70511\"","last-modified":"Wed, 16 Aug 2023 09:57:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"39e7a1fe-e78a-490d-b520-2f1d2cf9c7ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c6e4ca6-7470-4903-9934-ad35e332f49e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":985.968,"y":1705.8984,"touch_down_time":400060,"touch_up_time":400129},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4006267f-c890-4acf-94b3-4f26c6c37231","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.69300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":304,"start_time":403098,"end_time":403512,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/wikisprites%402x.png","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"31dcc-189fdc65691\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"31dcc-189fdc65691\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441010e5-8f84-43ad-956e-8246c91cedea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.27700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":200,"start_time":401342,"end_time":402096,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-length":"204236","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"image/png","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"31dcc-189fdc65691\"","last-modified":"Wed, 16 Aug 2023 09:56:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f166efa-9428-4f99-93ee-e1fd1a3dd81e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":364,"total_pss":122763,"rss":192132,"native_total_heap":87552,"native_free_heap":20076,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f84aeb6-3658-4d95-aa6e-5b047f9c832c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"50ffd9ea-f268-441e-8633-0bfda207d959","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20879,"java_free_heap":3203,"total_pss":164312,"rss":234732,"native_total_heap":109056,"native_free_heap":13494,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"63c891b0-c074-49cd-911f-655acdb685f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66a7c259-5daf-41d9-b763-ca7ff1a1702d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":5643,"total_pss":116220,"rss":185572,"native_total_heap":87552,"native_free_heap":22866,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"676954f3-30e7-44e2-b4dd-de37fddb22af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"67e9bb3c-e179-4e54-ad4f-f5b85f465884","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c62ffe2-f999-43fa-910b-6558515b3818","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.06700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"listViewButton","width":144,"height":116,"x":644.97437,"y":276.97266,"touch_down_time":403827,"touch_up_time":403884},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"711b6044-bba0-4403-a55f-8298c631df97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.81200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401368,"end_time":401631,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71740570-1a16-4da5-b887-1954c323e22e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a4c972-8101-4e77-910f-a73ca922dac4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.83500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401369,"end_time":401654,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"375","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76b432ab-fc9a-481f-9e76-828440a13216","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78d7fe7c-f1f9-4306-b591-4f9725e01c12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.22200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"action_mode_close_button","width":147,"height":126,"x":66.97266,"y":134.9414,"touch_down_time":398930,"touch_up_time":399039},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7a819c3b-6c6b-4f09-b9e0-d06d3cb5f108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.96500000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/0/0/0.pbf","method":"get","status_code":200,"start_time":401734,"end_time":401784,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"66777","content-encoding":"gzip","content-length":"149462","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Sun, 19 May 2024 14:29:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/22","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7d32d789-7272-45ee-b8cc-4807fe677ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":404347,"utime":969,"cutime":0,"cstime":0,"stime":895,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ea0bc1c-3505-47e3-8c88-e5c41c2ac5fd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.45000000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403269,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27228","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"825a62b0-aa94-41d2-9f16-e2771167b831","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.32100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b4312a5-6d2e-493d-8ce9-ed36ca153100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.88200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/info.json","method":"get","status_code":200,"start_time":401339,"end_time":401701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"5215","content-length":"526","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 07:35:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/4","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tilejson\":\"2.1.0\",\"name\":\"osm-pbf\",\"maxzoom\":15,\"vector_layers\":[{\"id\":\"landuse\"},{\"id\":\"waterway\"},{\"id\":\"water\"},{\"id\":\"aeroway\"},{\"id\":\"building\"},{\"id\":\"road\"},{\"id\":\"admin\"},{\"id\":\"country_label\"},{\"id\":\"place_label\"},{\"id\":\"poi_label\"},{\"id\":\"road_label\"}],\"attribution\":\"\u003ca href=\\\"https://wikimediafoundation.org/wiki/Maps_Terms_of_Use\\\"\u003eWikimedia maps\u003c/a\u003e | Map data \u0026copy; \u003ca href=\\\"http://openstreetmap.org/copyright\\\"\u003eOpenStreetMap contributors\u003c/a\u003e\",\"tiles\":[\"https://maps.wikimedia.org/osm-pbf/{z}/{x}/{y}.pbf\"]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cdc63de-7496-4c72-b6d6-e00c667de7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d8865-3b2e-4edf-9621-ee33f90cfd9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":2995,"total_pss":134823,"rss":204924,"native_total_heap":93696,"native_free_heap":16449,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dc7d410-4e57-433b-a3ff-c6836c166432","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f75c484-fb6f-4b4b-a8db-326a575d836f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":401347,"utime":910,"cutime":0,"cstime":0,"stime":840,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"955a66ee-1e27-4250-b399-182924dd78ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98a2e9de-abd2-4024-947b-3229683fcccd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86000000Z","type":"gesture_click","gesture_click":{"target":"androidx.constraintlayout.widget.ConstraintLayout","target_id":null,"width":1080,"height":260,"x":592.9651,"y":863.96484,"touch_down_time":404510,"touch_up_time":404678},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c7dd32d-a3bc-468e-9f67-064ce8f0b578","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/160px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53270","content-length":"4886","content-type":"image/jpeg","date":"Sun, 19 May 2024 18:15:00 GMT","etag":"19bfeb9e31a1f301321b2c6461525007","last-modified":"Sat, 27 Feb 2016 04:11:56 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"egokliw6l2724ob9giuu9jd9qycxq4s"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a1b63f0e-a961-4287-9a1e-197e98ed3faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7d18e82-7916-46b6-81c6-524a686b5d52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:45.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":398348,"utime":893,"cutime":0,"cstime":0,"stime":813,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1192878-05bc-4e87-9988-39a9862885db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.89200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/11/329/794.pbf","method":"get","status_code":200,"start_time":402761,"end_time":403711,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"160877","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b67c4ad1-f93c-4d83-9976-bfbafaada55d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.24700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403066,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"13916","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8af255b-8904-4721-bb8f-162fd055b3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.46300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403282,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27925","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c09aaf45-ac5e-4b26-84a0-60ccc0129cf8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d4080193-86c3-4a41-a663-17eb749117a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.66900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":401342,"end_time":402487,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"959f-189fdc7a673\"","last-modified":"Wed, 16 Aug 2023 09:57:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8d8c89e-438b-4e0f-ac08-e6c86458fcdb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.78600000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403605,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","content-encoding":"gzip","content-length":"11194","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db1e7456-d1f4-4cfe-9d2d-80580ba286f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.33900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e396ed70-f06b-4a2a-845d-321c7c5b95dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/160px-Google_Campus%2C_Mountain_View%2C_CA.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33218","content-disposition":"inline;filename*=UTF-8''Google_Campus%2C_Mountain_View%2C_CA.jpg","content-length":"9706","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:49:11 GMT","etag":"887b247ad8c775d54c5d2b56defad17e","last-modified":"Fri, 14 Jan 2022 08:01:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/51","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7c9f8d7-aacd-4591-8888-53bc4cb95237","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.76100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.view.menu.ActionMenuItemView","target_id":"menu_search_lists","width":127,"height":126,"x":900.9668,"y":158.96484,"touch_down_time":397481,"touch_up_time":397577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eef5bfd9-3059-4092-a7f1-d48080d786e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f29e08c8-af3b-4239-9f60-85d29bfcd15d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.34400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026generator=geosearch\u0026prop=coordinates|description|pageimages|info\u0026inprop=varianttitles|displaytitle\u0026ggscoord=37.42199833333335|-122.08400000000002\u0026ggsradius=692\u0026ggslimit=75\u0026colimit=75","method":"get","status_code":200,"start_time":402757,"end_time":403162,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-brxf8","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"66nawcqf1btuypocho5jeyb5s"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"pages\":[{\"pageid\":773423,\"ns\":0,\"title\":\"Googleplex\",\"index\":-1,\"coordinates\":[{\"lat\":37.422,\"lon\":-122.084,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Corporate headquarters complex of Google\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/50px-Google_Campus%2C_Mountain_View%2C_CA.jpg\",\"width\":50,\"height\":28},\"pageimage\":\"Google_Campus,_Mountain_View,_CA.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:03:09Z\",\"lastrevid\":1223120704,\"length\":23050,\"displaytitle\":\"Googleplex\",\"varianttitles\":{\"en\":\"Googleplex\"}},{\"pageid\":2169786,\"ns\":0,\"title\":\"Bridge School Benefit\",\"index\":0,\"coordinates\":[{\"lat\":37.42666667,\"lon\":-122.08083333,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Charity concerts in California\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:18:58Z\",\"lastrevid\":1211634642,\"length\":16228,\"displaytitle\":\"Bridge School Benefit\",\"varianttitles\":{\"en\":\"Bridge School Benefit\"}},{\"pageid\":2550861,\"ns\":0,\"title\":\"Shoreline Amphitheatre\",\"index\":1,\"coordinates\":[{\"lat\":37.426778,\"lon\":-122.080733,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Concert venue in Mountain View, California, United States\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T19:28:11Z\",\"lastrevid\":1217346602,\"length\":6461,\"displaytitle\":\"Shoreline Amphitheatre\",\"varianttitles\":{\"en\":\"Shoreline Amphitheatre\"}},{\"pageid\":3603126,\"ns\":0,\"title\":\"Genetic Information Research Institute\",\"index\":2,\"coordinates\":[{\"lat\":37.4193,\"lon\":-122.088,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:24:21Z\",\"lastrevid\":1062612358,\"length\":2659,\"displaytitle\":\"Genetic Information Research Institute\",\"varianttitles\":{\"en\":\"Genetic Information Research Institute\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"03744f06-c024-432d-bb35-9f5585d65a94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.88400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":200,"start_time":403078,"end_time":403703,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-length":"74696","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/octet-stream","date":"Mon, 20 May 2024 09:02:50 GMT","etag":"W/\"123c8-18d7e9bad57\"","last-modified":"Tue, 06 Feb 2024 13:29:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0424c2b7-989a-4070-9daa-c787599da0fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.32400000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_places_container","width":1080,"height":126,"x":341.98242,"y":1459.9219,"touch_down_time":401000,"touch_up_time":401139},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"048acbdd-5cd9-4237-82d6-d5489250b2f3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"05eeef2c-06a7-4973-960e-d3f608d5fb4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0eff9259-2807-4579-97d6-a6cf4f260860","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be803ae-d96f-4bd7-8d6a-09c569d2aa31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"4045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2245e3af-e068-4134-8353-0cf02703ceb4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36a77f2d-2ae6-44b2-9dd6-f5d14c78e403","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.58400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":403491,"end_time":404403,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"959f-189fdc7a673\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"959f-189fdc70511\"","last-modified":"Wed, 16 Aug 2023 09:57:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"39e7a1fe-e78a-490d-b520-2f1d2cf9c7ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c6e4ca6-7470-4903-9934-ad35e332f49e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":985.968,"y":1705.8984,"touch_down_time":400060,"touch_up_time":400129},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4006267f-c890-4acf-94b3-4f26c6c37231","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.69300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":304,"start_time":403098,"end_time":403512,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/wikisprites%402x.png","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"31dcc-189fdc65691\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"31dcc-189fdc65691\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441010e5-8f84-43ad-956e-8246c91cedea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.27700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":200,"start_time":401342,"end_time":402096,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-length":"204236","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"image/png","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"31dcc-189fdc65691\"","last-modified":"Wed, 16 Aug 2023 09:56:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f166efa-9428-4f99-93ee-e1fd1a3dd81e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":364,"total_pss":122763,"rss":192132,"native_total_heap":87552,"native_free_heap":20076,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f84aeb6-3658-4d95-aa6e-5b047f9c832c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"50ffd9ea-f268-441e-8633-0bfda207d959","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20879,"java_free_heap":3203,"total_pss":164312,"rss":234732,"native_total_heap":109056,"native_free_heap":13494,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"63c891b0-c074-49cd-911f-655acdb685f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66a7c259-5daf-41d9-b763-ca7ff1a1702d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":5643,"total_pss":116220,"rss":185572,"native_total_heap":87552,"native_free_heap":22866,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"676954f3-30e7-44e2-b4dd-de37fddb22af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"67e9bb3c-e179-4e54-ad4f-f5b85f465884","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c62ffe2-f999-43fa-910b-6558515b3818","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.06700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"listViewButton","width":144,"height":116,"x":644.97437,"y":276.97266,"touch_down_time":403827,"touch_up_time":403884},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"711b6044-bba0-4403-a55f-8298c631df97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.81200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401368,"end_time":401631,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71740570-1a16-4da5-b887-1954c323e22e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a4c972-8101-4e77-910f-a73ca922dac4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.83500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401369,"end_time":401654,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"375","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76b432ab-fc9a-481f-9e76-828440a13216","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78d7fe7c-f1f9-4306-b591-4f9725e01c12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.22200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"action_mode_close_button","width":147,"height":126,"x":66.97266,"y":134.9414,"touch_down_time":398930,"touch_up_time":399039},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7a819c3b-6c6b-4f09-b9e0-d06d3cb5f108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.96500000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/0/0/0.pbf","method":"get","status_code":200,"start_time":401734,"end_time":401784,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"66777","content-encoding":"gzip","content-length":"149462","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Sun, 19 May 2024 14:29:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/22","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7d32d789-7272-45ee-b8cc-4807fe677ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":404347,"utime":969,"cutime":0,"cstime":0,"stime":895,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ea0bc1c-3505-47e3-8c88-e5c41c2ac5fd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.45000000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403269,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27228","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"825a62b0-aa94-41d2-9f16-e2771167b831","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.32100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b4312a5-6d2e-493d-8ce9-ed36ca153100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.88200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/info.json","method":"get","status_code":200,"start_time":401339,"end_time":401701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"5215","content-length":"526","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 07:35:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/4","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tilejson\":\"2.1.0\",\"name\":\"osm-pbf\",\"maxzoom\":15,\"vector_layers\":[{\"id\":\"landuse\"},{\"id\":\"waterway\"},{\"id\":\"water\"},{\"id\":\"aeroway\"},{\"id\":\"building\"},{\"id\":\"road\"},{\"id\":\"admin\"},{\"id\":\"country_label\"},{\"id\":\"place_label\"},{\"id\":\"poi_label\"},{\"id\":\"road_label\"}],\"attribution\":\"\u003ca href=\\\"https://wikimediafoundation.org/wiki/Maps_Terms_of_Use\\\"\u003eWikimedia maps\u003c/a\u003e | Map data \u0026copy; \u003ca href=\\\"http://openstreetmap.org/copyright\\\"\u003eOpenStreetMap contributors\u003c/a\u003e\",\"tiles\":[\"https://maps.wikimedia.org/osm-pbf/{z}/{x}/{y}.pbf\"]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cdc63de-7496-4c72-b6d6-e00c667de7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d8865-3b2e-4edf-9621-ee33f90cfd9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":2995,"total_pss":134823,"rss":204924,"native_total_heap":93696,"native_free_heap":16449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dc7d410-4e57-433b-a3ff-c6836c166432","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f75c484-fb6f-4b4b-a8db-326a575d836f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":401347,"utime":910,"cutime":0,"cstime":0,"stime":840,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"955a66ee-1e27-4250-b399-182924dd78ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98a2e9de-abd2-4024-947b-3229683fcccd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86000000Z","type":"gesture_click","gesture_click":{"target":"androidx.constraintlayout.widget.ConstraintLayout","target_id":null,"width":1080,"height":260,"x":592.9651,"y":863.96484,"touch_down_time":404510,"touch_up_time":404678},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c7dd32d-a3bc-468e-9f67-064ce8f0b578","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/160px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53270","content-length":"4886","content-type":"image/jpeg","date":"Sun, 19 May 2024 18:15:00 GMT","etag":"19bfeb9e31a1f301321b2c6461525007","last-modified":"Sat, 27 Feb 2016 04:11:56 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"egokliw6l2724ob9giuu9jd9qycxq4s"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a1b63f0e-a961-4287-9a1e-197e98ed3faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7d18e82-7916-46b6-81c6-524a686b5d52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:45.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":398348,"utime":893,"cutime":0,"cstime":0,"stime":813,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1192878-05bc-4e87-9988-39a9862885db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.89200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/11/329/794.pbf","method":"get","status_code":200,"start_time":402761,"end_time":403711,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"160877","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b67c4ad1-f93c-4d83-9976-bfbafaada55d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.24700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403066,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"13916","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8af255b-8904-4721-bb8f-162fd055b3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.46300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403282,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27925","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c09aaf45-ac5e-4b26-84a0-60ccc0129cf8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d4080193-86c3-4a41-a663-17eb749117a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.66900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":401342,"end_time":402487,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"959f-189fdc7a673\"","last-modified":"Wed, 16 Aug 2023 09:57:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8d8c89e-438b-4e0f-ac08-e6c86458fcdb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.78600000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403605,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","content-encoding":"gzip","content-length":"11194","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db1e7456-d1f4-4cfe-9d2d-80580ba286f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.33900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e396ed70-f06b-4a2a-845d-321c7c5b95dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/160px-Google_Campus%2C_Mountain_View%2C_CA.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33218","content-disposition":"inline;filename*=UTF-8''Google_Campus%2C_Mountain_View%2C_CA.jpg","content-length":"9706","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:49:11 GMT","etag":"887b247ad8c775d54c5d2b56defad17e","last-modified":"Fri, 14 Jan 2022 08:01:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/51","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7c9f8d7-aacd-4591-8888-53bc4cb95237","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.76100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.view.menu.ActionMenuItemView","target_id":"menu_search_lists","width":127,"height":126,"x":900.9668,"y":158.96484,"touch_down_time":397481,"touch_up_time":397577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eef5bfd9-3059-4092-a7f1-d48080d786e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f29e08c8-af3b-4239-9f60-85d29bfcd15d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.34400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026generator=geosearch\u0026prop=coordinates|description|pageimages|info\u0026inprop=varianttitles|displaytitle\u0026ggscoord=37.42199833333335|-122.08400000000002\u0026ggsradius=692\u0026ggslimit=75\u0026colimit=75","method":"get","status_code":200,"start_time":402757,"end_time":403162,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-brxf8","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"66nawcqf1btuypocho5jeyb5s"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"pages\":[{\"pageid\":773423,\"ns\":0,\"title\":\"Googleplex\",\"index\":-1,\"coordinates\":[{\"lat\":37.422,\"lon\":-122.084,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Corporate headquarters complex of Google\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/50px-Google_Campus%2C_Mountain_View%2C_CA.jpg\",\"width\":50,\"height\":28},\"pageimage\":\"Google_Campus,_Mountain_View,_CA.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:03:09Z\",\"lastrevid\":1223120704,\"length\":23050,\"displaytitle\":\"Googleplex\",\"varianttitles\":{\"en\":\"Googleplex\"}},{\"pageid\":2169786,\"ns\":0,\"title\":\"Bridge School Benefit\",\"index\":0,\"coordinates\":[{\"lat\":37.42666667,\"lon\":-122.08083333,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Charity concerts in California\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:18:58Z\",\"lastrevid\":1211634642,\"length\":16228,\"displaytitle\":\"Bridge School Benefit\",\"varianttitles\":{\"en\":\"Bridge School Benefit\"}},{\"pageid\":2550861,\"ns\":0,\"title\":\"Shoreline Amphitheatre\",\"index\":1,\"coordinates\":[{\"lat\":37.426778,\"lon\":-122.080733,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Concert venue in Mountain View, California, United States\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T19:28:11Z\",\"lastrevid\":1217346602,\"length\":6461,\"displaytitle\":\"Shoreline Amphitheatre\",\"varianttitles\":{\"en\":\"Shoreline Amphitheatre\"}},{\"pageid\":3603126,\"ns\":0,\"title\":\"Genetic Information Research Institute\",\"index\":2,\"coordinates\":[{\"lat\":37.4193,\"lon\":-122.088,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:24:21Z\",\"lastrevid\":1062612358,\"length\":2659,\"displaytitle\":\"Genetic Information Research Institute\",\"varianttitles\":{\"en\":\"Genetic Information Research Institute\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json index d3c1e5583..3454136c9 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json @@ -1 +1 @@ -[{"id":"084be746-258a-4cc3-901d-65fcdc3704f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.62800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"view_announcement_action_negative","width":186,"height":126,"x":483.96973,"y":1269.9609,"touch_down_time":342372,"touch_up_time":342443},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"11c91321-dd60-47cb-9e63-5f28d8933493","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.68300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343451,"end_time":343502,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32500","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/837","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14b1adc3-21ca-4cc8-bc0f-cbe0d0d44c22","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3478,"total_pss":143117,"rss":220400,"native_total_heap":72704,"native_free_heap":7157,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"23d10fbd-021d-4004-b177-249f2fbfd752","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":339977,"utime":367,"cutime":0,"cstime":0,"stime":297,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"263c8a09-8359-4b79-80c3-2c9635397815","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.84400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343662,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"18515","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a152c5d-7e55-461d-aa30-492519829cd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"312f0bbb-147b-41bd-9473-b57d7956a075","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.68100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":200,"start_time":358238,"end_time":358500,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4694","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-length":"24379","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3dbdb963-9029-46b2-ba43-9defeb21f4ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.41500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":200,"start_time":358183,"end_time":358234,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9356","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"734","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e0a60f5-5d2c-4152-889a-d4f1e4395413","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:54.43600000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":289.97314,"y":1752.8906,"touch_down_time":346326,"touch_up_time":347251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ea82988-201e-40df-8ba6-6c11edb0ab50","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.44700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":338969,"end_time":339266,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"729","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4794147a-d4f2-4be4-b282-1c8b0abda56f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4814,"total_pss":140875,"rss":216788,"native_total_heap":72704,"native_free_heap":8888,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"47b4c8a8-8259-4272-9946-92f5888b6fb3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.65000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":421.97388,"y":1303.9453,"end_x":421.97388,"end_y":1137.9492,"direction":"up","touch_down_time":343340,"touch_up_time":343469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58a339d9-0c44-49ba-8ec8-5fc11106628a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.67600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":200,"start_time":358237,"end_time":358494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-length":"426","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a0ead45-ef62-41d8-990b-1693a568fa16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d19b739-3b38-49c8-93fe-56466b128a4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.90000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":358673,"end_time":358719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39505","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21523","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7218053b-194e-4724-95c5-782ed4939d19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.17100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":341538,"end_time":341990,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"14142","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"773","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Research_vessel","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 05:06:07 GMT","etag":"W/\"1189178093/cbf09930-14ba-11ef-81f5-220829a64a4e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Research vessel\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q391022\",\"titles\":{\"canonical\":\"Research_vessel\",\"normalized\":\"Research vessel\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\"},\"pageid\":1540172,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Deployment_of_oceanographic_research_vessels.png/320px-Deployment_of_oceanographic_research_vessels.png\",\"width\":320,\"height\":187},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4b/Deployment_of_oceanographic_research_vessels.png\",\"width\":899,\"height\":525},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1189178093\",\"tid\":\"6dfcef8b-9723-11ee-812a-a685357c50a7\",\"timestamp\":\"2023-12-10T06:14:52Z\",\"description\":\"Ship or boat designed, modified, or equipped to carry out research at sea\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.wikipedia.org/wiki/Research_vessel?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Research_vessel\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Research_vessel\",\"edit\":\"https://en.m.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Research_vessel\"}},\"extract\":\"A research vessel is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eresearch vessel\u003c/b\u003e is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"757d1543-8f81-49e2-a4bd-0d31829bf8a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:01.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4402,"total_pss":141242,"rss":217936,"native_total_heap":72704,"native_free_heap":8220,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c68f321-7f0a-43bb-be1b-e19f19c5419e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37026","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/721","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f9fea1c-a612-481b-960b-b75d9861c3e5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5679,"total_pss":138877,"rss":214816,"native_total_heap":70656,"native_free_heap":8114,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83ed430d-f1df-408a-8fbd-10ab59cd9de3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3978,"total_pss":142277,"rss":219320,"native_total_heap":72704,"native_free_heap":7566,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"892555ec-1b37-4178-a1fa-235fcb0a1109","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:52.16500000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":980.95825,"y":834.96094,"touch_down_time":344902,"touch_up_time":344982},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8abfd012-e748-4309-8a6a-e4a84a3e2225","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":354977,"utime":455,"cutime":0,"cstime":0,"stime":473,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d36a73e-c4ad-42ac-9618-d27d8d83cfc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":345976,"utime":418,"cutime":0,"cstime":0,"stime":358,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9376c72b-ae9a-4b48-bd17-c1b761368d9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":340383,"end_time":340387,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98c3d0ae-573e-43f9-bca3-58b5900c6d96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5201,"total_pss":140018,"rss":216100,"native_total_heap":72704,"native_free_heap":9082,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17d448-2a94-42e2-981b-0ee0c25c7d08","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":682.9761,"y":1501.9336,"end_x":644.97437,"end_y":990.9375,"direction":"up","touch_down_time":349206,"touch_up_time":350657},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9e81a07d-556f-4a9b-8291-bde9d4194d2a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":5430,"total_pss":138667,"rss":215216,"native_total_heap":68608,"native_free_heap":9205,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0167e03-6f1d-4855-8a1e-73b0e3199944","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a30bd7ed-3904-4d1b-a433-480982db7f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6408cf4-abde-4cbd-bb20-064546663e4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.25700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":344063,"end_time":344076,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"66225","content-type":"multipart/form-data; boundary=aad05064-f24f-4701-b88a-a51585f43545","host":"10.0.2.2:8080","msr-req-id":"bc40a0ca-34a1-461f-b59f-21b3b3c30297","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a90f0799-4055-4221-8136-0940e6503d71","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":1656,"total_pss":128635,"rss":219932,"native_total_heap":64512,"native_free_heap":7040,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae2fddd1-a103-4a83-8514-f862cc0c003b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":357978,"utime":462,"cutime":0,"cstime":0,"stime":493,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3635ae1-46be-4293-ba59-bb8f7cc889e7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.21500000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":340,"x":383.97217,"y":1463.9062,"touch_down_time":354290,"touch_up_time":355032},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b721223b-93d7-43dd-b635-dffb1468c0da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":1654,"total_pss":147521,"rss":223432,"native_total_heap":70656,"native_free_heap":6427,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8deda50-ca4f-4799-ac31-679003f8d2b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.85200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":358625,"end_time":358671,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38597","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11205","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8fcd61c-46b2-42f5-b021-571cfb2faa91","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:00.52600000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":294,"x":535.979,"y":1123.9453,"touch_down_time":352543,"touch_up_time":353342},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b9fab93e-23be-40c3-a99f-42540fce42e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f45354-cdc0-43aa-81c2-a71a3a11b8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5563,"total_pss":139519,"rss":215708,"native_total_heap":70656,"native_free_heap":8111,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c83ebb94-2d85-444f-bb9a-ca339b929fce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.93200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":340692,"end_time":340751,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"173","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/93","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c9623240-bc40-42fa-a416-11e5f98306a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"14942","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/638","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf13c1e-c2df-4148-a5bc-70b5048e4def","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":342977,"utime":396,"cutime":0,"cstime":0,"stime":324,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cd67e312-f02e-4885-8f76-bfd14d501a2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.80400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":358575,"end_time":358623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45501","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5133b6d-771a-44d1-8c65-2f6a0aad5c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.32700000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Xander_Schauffele","method":"get","status_code":200,"start_time":355856,"end_time":356146,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"733","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-ll4ns","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Xander_Schauffele\",\"to\":\"Xander Schauffele\"}],\"pages\":[{\"pageid\":51911552,\"ns\":0,\"title\":\"Xander Schauffele\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:01:12Z\",\"lastrevid\":1224744235,\"length\":43330,\"displaytitle\":\"Xander Schauffele\",\"varianttitles\":{\"en\":\"Xander Schauffele\"},\"description\":\"American professional golfer (born 1993)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"pageimage\":\"Xander_Schauffele_-_2021.jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db46c757-dad6-48ff-b59f-d8cc6227d409","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":351977,"utime":442,"cutime":0,"cstime":0,"stime":432,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dda6e026-7511-4cd7-8a94-92122a859502","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.66700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":540.9558,"y":1671.9141,"touch_down_time":347717,"touch_up_time":348484},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0b97e8-5aa4-44bf-ac21-fea86f1f5b1e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.51800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":113.97217,"y":1742.9297,"touch_down_time":340264,"touch_up_time":340335},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f246fa06-e01f-4f71-81a9-1f6648e59c00","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.17400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"snackbar_action","width":254,"height":126,"x":966.9507,"y":1487.9297,"touch_down_time":357910,"touch_up_time":357990},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f3b83929-8cfe-49f8-8337-1ab07365af4e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:56.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":348976,"utime":428,"cutime":0,"cstime":0,"stime":380,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5c44324-498e-4713-9384-12672b3d1a8c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343681,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9558","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/321","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7b1f31d-e00d-40df-9578-144aa9cb719a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.18600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"084be746-258a-4cc3-901d-65fcdc3704f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.62800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"view_announcement_action_negative","width":186,"height":126,"x":483.96973,"y":1269.9609,"touch_down_time":342372,"touch_up_time":342443},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"11c91321-dd60-47cb-9e63-5f28d8933493","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.68300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343451,"end_time":343502,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32500","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/837","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14b1adc3-21ca-4cc8-bc0f-cbe0d0d44c22","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3478,"total_pss":143117,"rss":220400,"native_total_heap":72704,"native_free_heap":7157,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"23d10fbd-021d-4004-b177-249f2fbfd752","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":339977,"utime":367,"cutime":0,"cstime":0,"stime":297,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"263c8a09-8359-4b79-80c3-2c9635397815","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.84400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343662,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"18515","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a152c5d-7e55-461d-aa30-492519829cd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"312f0bbb-147b-41bd-9473-b57d7956a075","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.68100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":200,"start_time":358238,"end_time":358500,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4694","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-length":"24379","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3dbdb963-9029-46b2-ba43-9defeb21f4ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.41500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":200,"start_time":358183,"end_time":358234,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9356","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"734","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e0a60f5-5d2c-4152-889a-d4f1e4395413","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:54.43600000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":289.97314,"y":1752.8906,"touch_down_time":346326,"touch_up_time":347251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ea82988-201e-40df-8ba6-6c11edb0ab50","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.44700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":338969,"end_time":339266,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"729","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4794147a-d4f2-4be4-b282-1c8b0abda56f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4814,"total_pss":140875,"rss":216788,"native_total_heap":72704,"native_free_heap":8888,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"47b4c8a8-8259-4272-9946-92f5888b6fb3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.65000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":421.97388,"y":1303.9453,"end_x":421.97388,"end_y":1137.9492,"direction":"up","touch_down_time":343340,"touch_up_time":343469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58a339d9-0c44-49ba-8ec8-5fc11106628a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.67600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":200,"start_time":358237,"end_time":358494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-length":"426","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a0ead45-ef62-41d8-990b-1693a568fa16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d19b739-3b38-49c8-93fe-56466b128a4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.90000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":358673,"end_time":358719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39505","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21523","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7218053b-194e-4724-95c5-782ed4939d19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.17100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":341538,"end_time":341990,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"14142","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"773","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Research_vessel","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 05:06:07 GMT","etag":"W/\"1189178093/cbf09930-14ba-11ef-81f5-220829a64a4e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Research vessel\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q391022\",\"titles\":{\"canonical\":\"Research_vessel\",\"normalized\":\"Research vessel\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\"},\"pageid\":1540172,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Deployment_of_oceanographic_research_vessels.png/320px-Deployment_of_oceanographic_research_vessels.png\",\"width\":320,\"height\":187},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4b/Deployment_of_oceanographic_research_vessels.png\",\"width\":899,\"height\":525},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1189178093\",\"tid\":\"6dfcef8b-9723-11ee-812a-a685357c50a7\",\"timestamp\":\"2023-12-10T06:14:52Z\",\"description\":\"Ship or boat designed, modified, or equipped to carry out research at sea\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.wikipedia.org/wiki/Research_vessel?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Research_vessel\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Research_vessel\",\"edit\":\"https://en.m.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Research_vessel\"}},\"extract\":\"A research vessel is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eresearch vessel\u003c/b\u003e is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"757d1543-8f81-49e2-a4bd-0d31829bf8a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:01.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4402,"total_pss":141242,"rss":217936,"native_total_heap":72704,"native_free_heap":8220,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c68f321-7f0a-43bb-be1b-e19f19c5419e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37026","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/721","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f9fea1c-a612-481b-960b-b75d9861c3e5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5679,"total_pss":138877,"rss":214816,"native_total_heap":70656,"native_free_heap":8114,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83ed430d-f1df-408a-8fbd-10ab59cd9de3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3978,"total_pss":142277,"rss":219320,"native_total_heap":72704,"native_free_heap":7566,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"892555ec-1b37-4178-a1fa-235fcb0a1109","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:52.16500000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":980.95825,"y":834.96094,"touch_down_time":344902,"touch_up_time":344982},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8abfd012-e748-4309-8a6a-e4a84a3e2225","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":354977,"utime":455,"cutime":0,"cstime":0,"stime":473,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d36a73e-c4ad-42ac-9618-d27d8d83cfc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":345976,"utime":418,"cutime":0,"cstime":0,"stime":358,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9376c72b-ae9a-4b48-bd17-c1b761368d9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":340383,"end_time":340387,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98c3d0ae-573e-43f9-bca3-58b5900c6d96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5201,"total_pss":140018,"rss":216100,"native_total_heap":72704,"native_free_heap":9082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17d448-2a94-42e2-981b-0ee0c25c7d08","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":682.9761,"y":1501.9336,"end_x":644.97437,"end_y":990.9375,"direction":"up","touch_down_time":349206,"touch_up_time":350657},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9e81a07d-556f-4a9b-8291-bde9d4194d2a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":5430,"total_pss":138667,"rss":215216,"native_total_heap":68608,"native_free_heap":9205,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0167e03-6f1d-4855-8a1e-73b0e3199944","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a30bd7ed-3904-4d1b-a433-480982db7f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6408cf4-abde-4cbd-bb20-064546663e4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.25700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":344063,"end_time":344076,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"66225","content-type":"multipart/form-data; boundary=aad05064-f24f-4701-b88a-a51585f43545","host":"10.0.2.2:8080","msr-req-id":"bc40a0ca-34a1-461f-b59f-21b3b3c30297","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a90f0799-4055-4221-8136-0940e6503d71","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":1656,"total_pss":128635,"rss":219932,"native_total_heap":64512,"native_free_heap":7040,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae2fddd1-a103-4a83-8514-f862cc0c003b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":357978,"utime":462,"cutime":0,"cstime":0,"stime":493,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3635ae1-46be-4293-ba59-bb8f7cc889e7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.21500000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":340,"x":383.97217,"y":1463.9062,"touch_down_time":354290,"touch_up_time":355032},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b721223b-93d7-43dd-b635-dffb1468c0da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":1654,"total_pss":147521,"rss":223432,"native_total_heap":70656,"native_free_heap":6427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8deda50-ca4f-4799-ac31-679003f8d2b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.85200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":358625,"end_time":358671,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38597","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11205","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8fcd61c-46b2-42f5-b021-571cfb2faa91","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:00.52600000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":294,"x":535.979,"y":1123.9453,"touch_down_time":352543,"touch_up_time":353342},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b9fab93e-23be-40c3-a99f-42540fce42e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f45354-cdc0-43aa-81c2-a71a3a11b8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5563,"total_pss":139519,"rss":215708,"native_total_heap":70656,"native_free_heap":8111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c83ebb94-2d85-444f-bb9a-ca339b929fce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.93200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":340692,"end_time":340751,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"173","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/93","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c9623240-bc40-42fa-a416-11e5f98306a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"14942","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/638","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf13c1e-c2df-4148-a5bc-70b5048e4def","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":342977,"utime":396,"cutime":0,"cstime":0,"stime":324,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cd67e312-f02e-4885-8f76-bfd14d501a2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.80400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":358575,"end_time":358623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45501","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5133b6d-771a-44d1-8c65-2f6a0aad5c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.32700000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Xander_Schauffele","method":"get","status_code":200,"start_time":355856,"end_time":356146,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"733","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-ll4ns","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Xander_Schauffele\",\"to\":\"Xander Schauffele\"}],\"pages\":[{\"pageid\":51911552,\"ns\":0,\"title\":\"Xander Schauffele\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:01:12Z\",\"lastrevid\":1224744235,\"length\":43330,\"displaytitle\":\"Xander Schauffele\",\"varianttitles\":{\"en\":\"Xander Schauffele\"},\"description\":\"American professional golfer (born 1993)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"pageimage\":\"Xander_Schauffele_-_2021.jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db46c757-dad6-48ff-b59f-d8cc6227d409","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":351977,"utime":442,"cutime":0,"cstime":0,"stime":432,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dda6e026-7511-4cd7-8a94-92122a859502","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.66700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":540.9558,"y":1671.9141,"touch_down_time":347717,"touch_up_time":348484},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0b97e8-5aa4-44bf-ac21-fea86f1f5b1e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.51800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":113.97217,"y":1742.9297,"touch_down_time":340264,"touch_up_time":340335},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f246fa06-e01f-4f71-81a9-1f6648e59c00","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.17400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"snackbar_action","width":254,"height":126,"x":966.9507,"y":1487.9297,"touch_down_time":357910,"touch_up_time":357990},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f3b83929-8cfe-49f8-8337-1ab07365af4e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:56.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":348976,"utime":428,"cutime":0,"cstime":0,"stime":380,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5c44324-498e-4713-9384-12672b3d1a8c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343681,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9558","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/321","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7b1f31d-e00d-40df-9578-144aa9cb719a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.18600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json index 66211de22..8016fe777 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json @@ -1 +1 @@ -[{"id":"01f3d0a1-3733-40c3-9702-e7728d2ec108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"022b39f7-4ca8-494b-a3d2-a74c5033e162","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"08b5d288-6a60-4aa6-922e-03b1082b4d23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:26.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":318976,"utime":113,"cutime":0,"cstime":0,"stime":85,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a07040a-ccee-49e6-a4c1-6874e1356ee7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318390,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1156eacb-771d-4488-9ba2-131706953094","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"126b8893-0ce3-4f31-8328-b169d9772d2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12d11188-838b-4ab5-96df-3f71eea908bc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320163,"end_time":320512,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"130ee14c-154a-405b-a653-8561fd1a2899","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"175104fe-df31-4a8f-ac22-a3752f317acc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19473260-748d-4ed6-8e9b-60fa056a59ba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.59900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2457f30e-a681-456e-9f33-bcbec3c6b19f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.18300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":791.97144,"y":1723.9453,"touch_down_time":315923,"touch_up_time":316000},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b6ba475-25f6-42ac-92a2-87fa1af8f212","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c24d396-c76f-4bdd-8e51-0696be14c3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3445b811-c434-4d51-903c-656aee8a1f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3659bf1f-2366-4029-89be-aeae0e33eade","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e6f903a-162d-44ee-93fa-90100a99edfc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.57000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441b8927-2869-43f9-9c00-417c5c19dc7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"450baa03-631d-4014-9d38-1d973cc35a0f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320164,"end_time":320513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"332","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"495261c8-74f7-46ce-801e-fdc9ee2487ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":1388,"total_pss":98316,"rss":188496,"native_total_heap":53248,"native_free_heap":5868,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cb9e4ee-bb9a-4a8a-b108-3285923b4a84","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"566c15a4-e778-48ab-b44e-6cd9a81c4bf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bf8a3e5-1b2c-4d20-91c0-7bdce18bf772","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":497.9773,"y":1662.9492,"touch_down_time":321434,"touch_up_time":321499},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62c03670-7588-41dc-9bfa-348a51994f64","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":315977,"utime":90,"cutime":0,"cstime":0,"stime":70,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"644a20fa-cbc0-4834-b702-277342136570","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.56900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":980.95825,"y":1723.9453,"touch_down_time":316308,"touch_up_time":316386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a386c6b-b2fe-409d-9b30-0784d1e2ab4d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3646","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71169241-fb55-49d4-8aef-1670b99e218b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7cc60b12-56e4-4350-befe-551bc346d986","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e33bfc7-4477-46d8-9adf-5adf97725f6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":555,"total_pss":99269,"rss":189900,"native_total_heap":53248,"native_free_heap":5766,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"831ef2ce-8578-4eff-a374-eec61f92d209","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"93efb02c-29a1-441d-96e9-96aade5660e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.16100000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":4669,"total_pss":87852,"rss":177924,"native_total_heap":47104,"native_free_heap":6323,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97ebe940-d5cd-4ae3-a044-4ce2163c0b39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99b00166-6f24-4abe-9180-a840ab6bdbcf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c3aa326-16ed-462e-a95a-22a80c2df53a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9fd63897-80b4-44e5-ba01-82778cbf290c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.19700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_account_container","width":1080,"height":126,"x":298.97095,"y":1355.918,"touch_down_time":317949,"touch_up_time":318015},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a5619256-4308-45ed-9def-273566e66fdd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.22100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aa1a3218-ee99-40b2-ab95-9b47752788a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdb395a-c03d-40bc-accf-cfa790fd87d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.24700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7b7dd59-81f2-422a-883d-d11308b8145b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b91fe6fb-c1ce-40ba-b62f-48d45d1e26c5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.22600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3ceb86-bcbf-4e0f-abd3-bbe6537209bf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c03a9b5b-039e-4ce0-9fc7-bb1d99602bc1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.57100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_card","width":996,"height":126,"x":369.9646,"y":267.94922,"touch_down_time":322309,"touch_up_time":322386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d074cb9f-70c7-4983-87e6-378a18da58ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":321977,"utime":123,"cutime":0,"cstime":0,"stime":102,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d08dd13a-ff5e-4ba5-b3fc-f8ee8583b560","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":5939,"total_pss":85407,"rss":175252,"native_total_heap":45056,"native_free_heap":7029,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d944df88-6507-4ec3-918e-b3ce9bb98ef7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dfb7f017-b611-4d75-bc57-d9ef595acb6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.27900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0dbf40e-5bc1-4faa-9523-2f540bc62205","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11f2c1d-abd8-4600-b549-65c48d637ce1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318070,"end_time":318404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"338","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1fa6cd3-a3ea-492e-b53e-1f53b345647c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":158.96484,"touch_down_time":319990,"touch_up_time":320158},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f54f62c2-a3e6-4e9a-8a26-09fcbed73bbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7aa1703-434c-4011-aa46-721e86cefa72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"01f3d0a1-3733-40c3-9702-e7728d2ec108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"022b39f7-4ca8-494b-a3d2-a74c5033e162","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"08b5d288-6a60-4aa6-922e-03b1082b4d23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:26.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":318976,"utime":113,"cutime":0,"cstime":0,"stime":85,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a07040a-ccee-49e6-a4c1-6874e1356ee7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318390,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1156eacb-771d-4488-9ba2-131706953094","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"126b8893-0ce3-4f31-8328-b169d9772d2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12d11188-838b-4ab5-96df-3f71eea908bc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320163,"end_time":320512,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"130ee14c-154a-405b-a653-8561fd1a2899","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"175104fe-df31-4a8f-ac22-a3752f317acc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19473260-748d-4ed6-8e9b-60fa056a59ba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.59900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2457f30e-a681-456e-9f33-bcbec3c6b19f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.18300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":791.97144,"y":1723.9453,"touch_down_time":315923,"touch_up_time":316000},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b6ba475-25f6-42ac-92a2-87fa1af8f212","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c24d396-c76f-4bdd-8e51-0696be14c3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3445b811-c434-4d51-903c-656aee8a1f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3659bf1f-2366-4029-89be-aeae0e33eade","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e6f903a-162d-44ee-93fa-90100a99edfc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.57000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441b8927-2869-43f9-9c00-417c5c19dc7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"450baa03-631d-4014-9d38-1d973cc35a0f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320164,"end_time":320513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"332","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"495261c8-74f7-46ce-801e-fdc9ee2487ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":1388,"total_pss":98316,"rss":188496,"native_total_heap":53248,"native_free_heap":5868,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cb9e4ee-bb9a-4a8a-b108-3285923b4a84","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"566c15a4-e778-48ab-b44e-6cd9a81c4bf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bf8a3e5-1b2c-4d20-91c0-7bdce18bf772","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":497.9773,"y":1662.9492,"touch_down_time":321434,"touch_up_time":321499},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62c03670-7588-41dc-9bfa-348a51994f64","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":315977,"utime":90,"cutime":0,"cstime":0,"stime":70,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"644a20fa-cbc0-4834-b702-277342136570","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.56900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":980.95825,"y":1723.9453,"touch_down_time":316308,"touch_up_time":316386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a386c6b-b2fe-409d-9b30-0784d1e2ab4d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3646","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71169241-fb55-49d4-8aef-1670b99e218b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7cc60b12-56e4-4350-befe-551bc346d986","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e33bfc7-4477-46d8-9adf-5adf97725f6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":555,"total_pss":99269,"rss":189900,"native_total_heap":53248,"native_free_heap":5766,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"831ef2ce-8578-4eff-a374-eec61f92d209","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"93efb02c-29a1-441d-96e9-96aade5660e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.16100000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":4669,"total_pss":87852,"rss":177924,"native_total_heap":47104,"native_free_heap":6323,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97ebe940-d5cd-4ae3-a044-4ce2163c0b39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99b00166-6f24-4abe-9180-a840ab6bdbcf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c3aa326-16ed-462e-a95a-22a80c2df53a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9fd63897-80b4-44e5-ba01-82778cbf290c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.19700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_account_container","width":1080,"height":126,"x":298.97095,"y":1355.918,"touch_down_time":317949,"touch_up_time":318015},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a5619256-4308-45ed-9def-273566e66fdd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.22100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aa1a3218-ee99-40b2-ab95-9b47752788a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdb395a-c03d-40bc-accf-cfa790fd87d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.24700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7b7dd59-81f2-422a-883d-d11308b8145b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b91fe6fb-c1ce-40ba-b62f-48d45d1e26c5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.22600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3ceb86-bcbf-4e0f-abd3-bbe6537209bf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c03a9b5b-039e-4ce0-9fc7-bb1d99602bc1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.57100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_card","width":996,"height":126,"x":369.9646,"y":267.94922,"touch_down_time":322309,"touch_up_time":322386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d074cb9f-70c7-4983-87e6-378a18da58ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":321977,"utime":123,"cutime":0,"cstime":0,"stime":102,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d08dd13a-ff5e-4ba5-b3fc-f8ee8583b560","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":5939,"total_pss":85407,"rss":175252,"native_total_heap":45056,"native_free_heap":7029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d944df88-6507-4ec3-918e-b3ce9bb98ef7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dfb7f017-b611-4d75-bc57-d9ef595acb6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.27900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0dbf40e-5bc1-4faa-9523-2f540bc62205","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11f2c1d-abd8-4600-b549-65c48d637ce1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318070,"end_time":318404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"338","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1fa6cd3-a3ea-492e-b53e-1f53b345647c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":158.96484,"touch_down_time":319990,"touch_up_time":320158},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f54f62c2-a3e6-4e9a-8a26-09fcbed73bbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7aa1703-434c-4011-aa46-721e86cefa72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json index 6c372e90c..1c9819647 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json @@ -1 +1 @@ -[{"id":"08089591-26d3-460d-9b43-dc6cc16a837b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30792,"java_free_heap":934,"total_pss":106776,"rss":170832,"native_total_heap":50179,"native_free_heap":16380,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0ea7077f-db31-4286-bf7c-eaa483105bc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.26100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":144730,"end_time":144746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"23767","content-type":"multipart/form-data; boundary=79cc944f-9b6c-4752-b6ee-5ba96026539b","host":"10.0.2.2:8080","msr-req-id":"fcc3dc9c-d2a8-466e-bb07-977fcc5149d7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18c51063-26c5-492c-abcb-6aad0e56e24d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.48400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"208d9064-1182-46ef-a421-e3dabb712028","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2561541b-8988-4caf-a5a8-7a6efd9a5e73","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.96700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":146723,"end_time":147452,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lyle_Mays_(album)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:26 GMT","etag":"W/\"1208383055/4e9d9e30-0d97-11ef-a217-1363fc1489c7\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lyle Mays (album)\",\"displaytitle\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19864431\",\"titles\":{\"canonical\":\"Lyle_Mays_(album)\",\"normalized\":\"Lyle Mays (album)\",\"display\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\"},\"pageid\":44437419,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1208383055\",\"tid\":\"418dbdf9-cd6d-11ee-a7ec-97fc0569d1ed\",\"timestamp\":\"2024-02-17T08:19:23Z\",\"description\":\"1986 studio album by Lyle Mays\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lyle_Mays_(album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"}},\"extract\":\"Lyle Mays is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eLyle Mays\u003c/b\u003e\u003c/i\u003e is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"27798f58-31f1-408e-ab31-73b86888b8c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3304","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30cf2504-a3ba-46e0-840e-c021fad6e5c5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":3361,"total_pss":108948,"rss":172572,"native_total_heap":49062,"native_free_heap":17497,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"33ce23c7-de1f-478b-ae83-1b7ec9979e22","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"344d6e55-34e9-42b7-9fdc-9638b3bd9813","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"35b1ab2f-2f6d-43c8-a5b5-79b2605dc076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":146605,"utime":111,"cutime":0,"cstime":0,"stime":54,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36e67e51-0c88-49d3-8d8a-6539606183d6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.94100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.recyclerview.widget.RecyclerView","target_id":"recycler_view","x":396.958,"y":1197.9492,"end_x":416.9641,"end_y":326.9165,"direction":"up","touch_down_time":151290,"touch_up_time":151425},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3a8b0101-32e0-4046-b3da-e811a7540e1d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.32300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg","method":"get","status_code":200,"start_time":145755,"end_time":145807,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19310","content-disposition":"inline;filename*=UTF-8''Sonnets1609titlepage.jpg","content-length":"44367","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:49:35 GMT","etag":"976d014077e958ac26f62083a88f499f","last-modified":"Sun, 03 Apr 2022 16:47:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4037b2ec-6647-472e-865e-08739384566f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45084830-f27d-422b-b5ce-b6390c437ae0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45e983e2-a6a9-42c3-a63a-604207c0d792","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.12500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":651.9617,"y":2184.8877,"touch_down_time":147516,"touch_up_time":147609},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"48e0d0e6-7f1e-4fdd-8c85-ad0806ae811e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.47800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":411.9873,"y":1954.9072,"end_x":666.958,"end_y":927.9053,"direction":"up","touch_down_time":145815,"touch_up_time":145961},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c702995-5065-444d-8db1-227202d40d6f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"57cef3ac-173b-4436-86ae-3fa6dd264ae2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.79200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":145224,"end_time":145277,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37599","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/739","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"76f343b1-1190-48e9-a20c-028722efe05e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.82400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":145225,"end_time":145308,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15515","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/670","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a66cc1d-688e-4da6-9ab1-de5304209cdd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"86d34600-9ce1-4d01-911a-3481677d4ae7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.66700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145098,"end_time":145151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33074","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/851","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89035565-fd14-4c4f-849f-099911a11032","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":2262,"total_pss":109600,"rss":173272,"native_total_heap":49446,"native_free_heap":18137,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89eb4c72-cdea-4909-b6f0-23d3cd68899d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.78800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145223,"end_time":145272,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19088","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/423","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8ad5d654-4e8d-4f98-8e02-ed2d571e3c1a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e41e629-06eb-4e43-b85b-0db97492baa9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8fcb6f54-314b-4d51-8a47-e3c689e20c4b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29634,"java_free_heap":3831,"total_pss":100645,"rss":164756,"native_total_heap":48800,"native_free_heap":16735,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"976bf151-8f67-454f-aa69-acf056792efb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.73200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":576.98,"y":2184.8877,"touch_down_time":147156,"touch_up_time":147216},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9afcd26c-937a-4d99-8b92-b920ca8fcacd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.55000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_settings_container","width":1080,"height":126,"x":255.95947,"y":2089.8926,"touch_down_time":148944,"touch_up_time":149031},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9e0f517b-0d6a-4255-9c31-b8ac3881c633","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a27cffff-e98d-40ca-9acb-d48714b8dce2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a6bca552-0e1e-4f63-9dbd-4719fa41fdaf","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a86096ea-4928-4dd4-b103-cd2b3a87ac68","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145110,"end_time":145160,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10131","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/338","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b382b009-437b-4431-af2b-793e88c61722","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4b9e3a3-0e26-4906-89ab-904ab0a0e231","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9260114-51c5-4c4a-835f-b62390779c35","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.10000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145536,"end_time":145584,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10159","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bae9eff0-95ac-4751-b53a-8c5a49ecff88","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.46900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":917.9407,"y":2184.8877,"touch_down_time":147818,"touch_up_time":147953},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb788b59-466a-4d6d-8071-915ae626d593","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.36400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c4010762-0d16-48d3-822c-8da25c68e4ae","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.47000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6a14eff-eb60-4f5c-8826-c7c7eef2de6e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cfd48352-67b1-417a-b908-1eccf33ae235","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149077,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e0786b5c-f430-4b3b-8344-c8558eebb671","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":152605,"utime":153,"cutime":0,"cstime":0,"stime":71,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1904600-31cf-4d05-bee3-85b0c0a8a071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e41c197d-4570-4500-a0bc-385a507802fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ecc7c6c4-705c-4735-a31b-488acb54d1f6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.16300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg","method":"get","status_code":200,"start_time":145987,"end_time":146647,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"62513","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:11:25 GMT","etag":"cd200b92cead13e3b8eff4687092b93d","last-modified":"Mon, 15 Feb 2016 04:10:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"2ux6imbes33e8twkh1v8mfaysuopgec"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f052a880-650f-470e-b02b-17bc16ce652a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.76000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f26d8986-c7a1-4ecb-b7c3-56ef978fb076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.61700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/19","method":"get","status_code":200,"start_time":146002,"end_time":146101,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"212","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"42307","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:07:56 GMT","etag":"W/7282e900-1688-11ef-897c-b7d5bc29e1be","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"Gento_(song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q120489529\",\"titles\":{\"canonical\":\"Gento_(song)\",\"normalized\":\"Gento (song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\"},\"pageid\":74134806,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224732915\",\"tid\":\"815eac62-165d-11ef-a75d-29f8ae19ee89\",\"timestamp\":\"2024-05-20T04:00:33Z\",\"description\":\"2023 single by SB19\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gento_(song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gento_(song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gento_(song)\"}},\"extract\":\"\\\"Gento\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), Pagtatag! (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eGento\u003c/b\u003e\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), \u003ci\u003ePagtatag!\u003c/i\u003e (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\u003c/p\u003e\",\"normalizedtitle\":\"Gento (song)\"},\"mostread\":{\"date\":\"2024-05-18Z\",\"articles\":[{\"views\":313188,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":30689},{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":309787,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":28032},{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":258188,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2084},{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":206582,\"rank\":7,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1072},{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":206318,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12766},{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":180281,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11410},{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":175097,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29959},{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":173476,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":121423},{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":140047,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":7721},{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":124786,\"rank\":14,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":132251},{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":102885,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":16404},{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":101987,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29319},{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":97373,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":124089},{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":97212,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2414},{\"date\":\"2024-05-15Z\",\"views\":2088},{\"date\":\"2024-05-16Z\",\"views\":1868},{\"date\":\"2024-05-17Z\",\"views\":46339},{\"date\":\"2024-05-18Z\",\"views\":97212}],\"type\":\"standard\",\"title\":\"Kim_Porter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q58772926\",\"titles\":{\"canonical\":\"Kim_Porter\",\"normalized\":\"Kim Porter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\"},\"pageid\":7599520,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224717534\",\"tid\":\"50c028ea-1648-11ef-9b2a-38fddda86f7b\",\"timestamp\":\"2024-05-20T01:28:52Z\",\"description\":\"American actress and model (1970–2018)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kim_Porter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kim_Porter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kim_Porter\"}},\"extract\":\"Kimberly Antwinette Porter was an American model, singer, actress, and entrepreneur.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKimberly Antwinette Porter\u003c/b\u003e was an American model, singer, actress, and entrepreneur.\u003c/p\u003e\",\"normalizedtitle\":\"Kim Porter\"},{\"views\":95942,\"rank\":21,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":156592},{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":95170,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2683},{\"date\":\"2024-05-15Z\",\"views\":2351},{\"date\":\"2024-05-16Z\",\"views\":3917},{\"date\":\"2024-05-17Z\",\"views\":6145},{\"date\":\"2024-05-18Z\",\"views\":95170}],\"type\":\"standard\",\"title\":\"Jai_Opetaia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2029085\",\"titles\":{\"canonical\":\"Jai_Opetaia\",\"normalized\":\"Jai Opetaia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\"},\"pageid\":35230292,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544449\",\"tid\":\"3880db33-1578-11ef-b2ce-78e240a7bbda\",\"timestamp\":\"2024-05-19T00:39:16Z\",\"description\":\"Australian boxer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jai_Opetaia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jai_Opetaia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jai_Opetaia\"}},\"extract\":\"Jai Opetaia is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the Ring magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by The Ring magazine, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJai Opetaia\u003c/b\u003e is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the \u003ci\u003eRing\u003c/i\u003e magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\u003c/p\u003e\",\"normalizedtitle\":\"Jai Opetaia\"},{\"views\":93552,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":74287},{\"date\":\"2024-05-15Z\",\"views\":26797},{\"date\":\"2024-05-16Z\",\"views\":21715},{\"date\":\"2024-05-17Z\",\"views\":24982},{\"date\":\"2024-05-18Z\",\"views\":93552}],\"type\":\"standard\",\"title\":\"King_and_Queen_of_the_Ring_(2024)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125387335\",\"titles\":{\"canonical\":\"King_and_Queen_of_the_Ring_(2024)\",\"normalized\":\"King and Queen of the Ring (2024)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\"},\"pageid\":76555552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598234\",\"tid\":\"92a5abe6-15c0-11ef-8ca3-c14dd86f7ea7\",\"timestamp\":\"2024-05-19T09:17:11Z\",\"description\":\"WWE pay-per-view and livestreaming event\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/King_and_Queen_of_the_Ring_(2024)\",\"edit\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"}},\"extract\":\"The 2024 King and Queen of the Ring is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\",\"extract_html\":\"\u003cp\u003eThe 2024 \u003cb\u003eKing and Queen of the Ring\u003c/b\u003e is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\u003c/p\u003e\",\"normalizedtitle\":\"King and Queen of the Ring (2024)\"},{\"views\":91009,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":8277},{\"date\":\"2024-05-15Z\",\"views\":7345},{\"date\":\"2024-05-16Z\",\"views\":17391},{\"date\":\"2024-05-17Z\",\"views\":166840},{\"date\":\"2024-05-18Z\",\"views\":91009}],\"type\":\"standard\",\"title\":\"Scottie_Scheffler\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30161386\",\"titles\":{\"canonical\":\"Scottie_Scheffler\",\"normalized\":\"Scottie Scheffler\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\"},\"pageid\":54256563,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Scottie_Scheffler_2023_01.jpg\",\"width\":2160,\"height\":2810},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708630\",\"tid\":\"bc04f967-163e-11ef-8873-eb723fdd694e\",\"timestamp\":\"2024-05-20T00:20:17Z\",\"description\":\"American professional golfer (born 1996)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Scottie_Scheffler\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Scottie_Scheffler\",\"edit\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Scottie_Scheffler\"}},\"extract\":\"Scott Alexander Scheffler is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eScott Alexander Scheffler\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Scottie Scheffler\"},{\"views\":90587,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":115179},{\"date\":\"2024-05-15Z\",\"views\":69342},{\"date\":\"2024-05-16Z\",\"views\":69593},{\"date\":\"2024-05-17Z\",\"views\":147233},{\"date\":\"2024-05-18Z\",\"views\":90587}],\"type\":\"standard\",\"title\":\"Megalopolis_(film)\",\"displaytitle\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115175910\",\"titles\":{\"canonical\":\"Megalopolis_(film)\",\"normalized\":\"Megalopolis (film)\",\"display\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\"},\"pageid\":68613611,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740437\",\"tid\":\"2b432f30-1668-11ef-a77e-261586f5d22c\",\"timestamp\":\"2024-05-20T05:16:53Z\",\"description\":\"2024 American film by Francis Ford Coppola\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Megalopolis_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Megalopolis_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Megalopolis_(film)\"}},\"extract\":\"Megalopolis is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMegalopolis\u003c/b\u003e\u003c/i\u003e is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\u003c/p\u003e\",\"normalizedtitle\":\"Megalopolis (film)\"},{\"views\":90539,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35952},{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":88106,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13},{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":83151,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":44092},{\"date\":\"2024-05-15Z\",\"views\":157285},{\"date\":\"2024-05-16Z\",\"views\":211035},{\"date\":\"2024-05-17Z\",\"views\":156773},{\"date\":\"2024-05-18Z\",\"views\":83151}],\"type\":\"standard\",\"title\":\"Harrison_Butker\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29618209\",\"titles\":{\"canonical\":\"Harrison_Butker\",\"normalized\":\"Harrison Butker\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\"},\"pageid\":53917703,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg/320px-Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":900,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224679064\",\"tid\":\"a717789b-161c-11ef-8882-898100b30e1e\",\"timestamp\":\"2024-05-19T20:16:19Z\",\"description\":\"American football player (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Harrison_Butker\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Harrison_Butker\",\"edit\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Harrison_Butker\"}},\"extract\":\"Harrison Butker Jr. is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHarrison Butker Jr.\u003c/b\u003e is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\u003c/p\u003e\",\"normalizedtitle\":\"Harrison Butker\"},{\"views\":80753,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":471},{\"date\":\"2024-05-15Z\",\"views\":780},{\"date\":\"2024-05-16Z\",\"views\":3830},{\"date\":\"2024-05-17Z\",\"views\":15501},{\"date\":\"2024-05-18Z\",\"views\":80753}],\"type\":\"standard\",\"title\":\"Sahith_Theegala\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q96198068\",\"titles\":{\"canonical\":\"Sahith_Theegala\",\"normalized\":\"Sahith Theegala\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\"},\"pageid\":64237652,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Sahith-25th.jpg/320px-Sahith-25th.jpg\",\"width\":320,\"height\":347},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Sahith-25th.jpg\",\"width\":2616,\"height\":2840},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224719451\",\"tid\":\"e2c93c81-164a-11ef-a910-3958271375b5\",\"timestamp\":\"2024-05-20T01:47:16Z\",\"description\":\"American professional golfer (born 1997)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sahith_Theegala\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sahith_Theegala\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sahith_Theegala\"}},\"extract\":\"Sahith Reddy Theegala is an American professional golfer who plays on the PGA Tour.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSahith Reddy Theegala\u003c/b\u003e is an American professional golfer who plays on the PGA Tour.\u003c/p\u003e\",\"normalizedtitle\":\"Sahith Theegala\"},{\"views\":80204,\"rank\":30,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":10365},{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":76764,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":73293},{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":75258,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":66948},{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":74546,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":94182},{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":72976,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":82266},{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":72570,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":178},{\"date\":\"2024-05-15Z\",\"views\":651},{\"date\":\"2024-05-16Z\",\"views\":209},{\"date\":\"2024-05-17Z\",\"views\":194},{\"date\":\"2024-05-18Z\",\"views\":72570}],\"type\":\"standard\",\"title\":\"Josh_Murphy\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15063227\",\"titles\":{\"canonical\":\"Josh_Murphy\",\"normalized\":\"Josh Murphy\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\"},\"pageid\":40621885,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Josh_Murphy_%28cropped%29.jpg/320px-Josh_Murphy_%28cropped%29.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1b/Josh_Murphy_%28cropped%29.jpg\",\"width\":1052,\"height\":870},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224621995\",\"tid\":\"803b473e-15e0-11ef-930b-e2333d6c009d\",\"timestamp\":\"2024-05-19T13:05:44Z\",\"description\":\"English footballer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Josh_Murphy\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Josh_Murphy\",\"edit\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Josh_Murphy\"}},\"extract\":\"Joshua Murphy is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJoshua Murphy\u003c/b\u003e is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\u003c/p\u003e\",\"normalizedtitle\":\"Josh Murphy\"},{\"views\":71013,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11624},{\"date\":\"2024-05-15Z\",\"views\":10961},{\"date\":\"2024-05-16Z\",\"views\":46576},{\"date\":\"2024-05-17Z\",\"views\":76033},{\"date\":\"2024-05-18Z\",\"views\":71013}],\"type\":\"standard\",\"title\":\"List_of_Bridgerton_characters\",\"displaytitle\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114397633\",\"titles\":{\"canonical\":\"List_of_Bridgerton_characters\",\"normalized\":\"List of Bridgerton characters\",\"display\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\"},\"pageid\":70283542,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224201881\",\"tid\":\"5230eb7a-13cb-11ef-a944-139eed651948\",\"timestamp\":\"2024-05-16T21:29:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Bridgerton_characters\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"}},\"extract\":\"\\n\\nBridgerton is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's ton during the season, when debutantes are presented at court.\",\"extract_html\":\"\u003cp\u003e\\n\\n\u003ci\u003eBridgerton\u003c/i\u003e is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's \u003ci\u003eton\u003c/i\u003e during the season, when debutantes are presented at court.\u003c/p\u003e\",\"normalizedtitle\":\"List of Bridgerton characters\"},{\"views\":70938,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":27402},{\"date\":\"2024-05-15Z\",\"views\":30905},{\"date\":\"2024-05-16Z\",\"views\":41972},{\"date\":\"2024-05-17Z\",\"views\":104626},{\"date\":\"2024-05-18Z\",\"views\":70938}],\"type\":\"standard\",\"title\":\"Swati_Maliwal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57163890\",\"titles\":{\"canonical\":\"Swati_Maliwal\",\"normalized\":\"Swati Maliwal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\"},\"pageid\":57188078,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Maliwal.png/320px-Maliwal.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/Maliwal.png\",\"width\":513,\"height\":511},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224599172\",\"tid\":\"f7adc488-15c1-11ef-93f2-7e66d49246dd\",\"timestamp\":\"2024-05-19T09:27:10Z\",\"description\":\"Indian social activist and politician (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Swati_Maliwal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Swati_Maliwal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Swati_Maliwal\"}},\"extract\":\"Swati Maliwal is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSwati Maliwal\u003c/b\u003e is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Swati Maliwal\"},{\"views\":69610,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":750},{\"date\":\"2024-05-15Z\",\"views\":981},{\"date\":\"2024-05-16Z\",\"views\":2261},{\"date\":\"2024-05-17Z\",\"views\":84090},{\"date\":\"2024-05-18Z\",\"views\":69610}],\"type\":\"standard\",\"title\":\"Jasmine_Crockett\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q101428652\",\"titles\":{\"canonical\":\"Jasmine_Crockett\",\"normalized\":\"Jasmine Crockett\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\"},\"pageid\":65802177,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg/320px-Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":2348,\"height\":3116},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725353\",\"tid\":\"0abca4dd-1653-11ef-ad67-d2e1cd85f371\",\"timestamp\":\"2024-05-20T02:45:39Z\",\"description\":\"American attorney and politician (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jasmine_Crockett\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jasmine_Crockett\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jasmine_Crockett\"}},\"extract\":\"Jasmine Felicia Crockett is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJasmine Felicia Crockett\u003c/b\u003e is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\u003c/p\u003e\",\"normalizedtitle\":\"Jasmine Crockett\"},{\"views\":69177,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35045},{\"date\":\"2024-05-15Z\",\"views\":30855},{\"date\":\"2024-05-16Z\",\"views\":27516},{\"date\":\"2024-05-17Z\",\"views\":46573},{\"date\":\"2024-05-18Z\",\"views\":69177}],\"type\":\"standard\",\"title\":\"Jake_Paul_vs._Mike_Tyson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125101707\",\"titles\":{\"canonical\":\"Jake_Paul_vs._Mike_Tyson\",\"normalized\":\"Jake Paul vs. Mike Tyson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\"},\"pageid\":76285553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224498961\",\"tid\":\"f6dc3af7-154f-11ef-a055-84eba5f1aaf7\",\"timestamp\":\"2024-05-18T19:51:06Z\",\"description\":\"Upcoming professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jake_Paul_vs._Mike_Tyson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"}},\"extract\":\"Jake Paul vs. Mike Tyson is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJake Paul vs. Mike Tyson\u003c/b\u003e is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026amp;T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\u003c/p\u003e\",\"normalizedtitle\":\"Jake Paul vs. Mike Tyson\"},{\"views\":68671,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12810},{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":66992,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":619},{\"date\":\"2024-05-15Z\",\"views\":665},{\"date\":\"2024-05-16Z\",\"views\":949},{\"date\":\"2024-05-17Z\",\"views\":2300},{\"date\":\"2024-05-18Z\",\"views\":66992}],\"type\":\"standard\",\"title\":\"Anthony_Cacace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83947153\",\"titles\":{\"canonical\":\"Anthony_Cacace\",\"normalized\":\"Anthony Cacace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\"},\"pageid\":62929955,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224701322\",\"tid\":\"1a2ddd29-1637-11ef-b994-c3e82e574101\",\"timestamp\":\"2024-05-19T23:25:39Z\",\"description\":\"British boxer (born 1989)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anthony_Cacace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anthony_Cacace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anthony_Cacace\"}},\"extract\":\"Anthony Cacace is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAnthony Cacace\u003c/b\u003e is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\u003c/p\u003e\",\"normalizedtitle\":\"Anthony Cacace\"},{\"views\":64602,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":49394},{\"date\":\"2024-05-15Z\",\"views\":42503},{\"date\":\"2024-05-16Z\",\"views\":58547},{\"date\":\"2024-05-17Z\",\"views\":113941},{\"date\":\"2024-05-18Z\",\"views\":64602}],\"type\":\"standard\",\"title\":\"Young_Sheldon\",\"displaytitle\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30014613\",\"titles\":{\"canonical\":\"Young_Sheldon\",\"normalized\":\"Young Sheldon\",\"display\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\"},\"pageid\":53475669,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618691\",\"tid\":\"4cf6d779-15dc-11ef-be3a-58d7a57d8366\",\"timestamp\":\"2024-05-19T12:35:40Z\",\"description\":\"American television sitcom (2017–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Young_Sheldon\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Young_Sheldon\",\"edit\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Young_Sheldon\"}},\"extract\":\"Young Sheldon is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to The Big Bang Theory that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on The Big Bang Theory, narrates the series and is also an executive producer.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eYoung Sheldon\u003c/b\u003e\u003c/i\u003e is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to \u003ci\u003eThe Big Bang Theory\u003c/i\u003e that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on \u003ci\u003eThe Big Bang Theory\u003c/i\u003e, narrates the series and is also an executive producer.\u003c/p\u003e\",\"normalizedtitle\":\"Young Sheldon\"},{\"views\":64141,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11567},{\"date\":\"2024-05-15Z\",\"views\":14244},{\"date\":\"2024-05-16Z\",\"views\":23714},{\"date\":\"2024-05-17Z\",\"views\":86421},{\"date\":\"2024-05-18Z\",\"views\":64141}],\"type\":\"standard\",\"title\":\"Billie_Eilish\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29564107\",\"titles\":{\"canonical\":\"Billie_Eilish\",\"normalized\":\"Billie Eilish\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\"},\"pageid\":53785363,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Billie_Eilish_Vogue_2023.jpg/320px-Billie_Eilish_Vogue_2023.jpg\",\"width\":320,\"height\":470},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/42/Billie_Eilish_Vogue_2023.jpg\",\"width\":461,\"height\":677},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598409\",\"tid\":\"cf718210-15c0-11ef-8cc1-d49e286fa600\",\"timestamp\":\"2024-05-19T09:18:53Z\",\"description\":\"American singer-songwriter (born 2001)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Billie_Eilish\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Billie_Eilish\",\"edit\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Billie_Eilish\"}},\"extract\":\"Billie Eilish Pirate Baird O'Connell is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), Don't Smile at Me. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBillie Eilish Pirate Baird O'Connell\u003c/b\u003e is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), \u003ci\u003eDon't Smile at Me\u003c/i\u003e. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\u003c/p\u003e\",\"normalizedtitle\":\"Billie Eilish\"},{\"views\":62463,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":787},{\"date\":\"2024-05-15Z\",\"views\":668},{\"date\":\"2024-05-16Z\",\"views\":15035},{\"date\":\"2024-05-17Z\",\"views\":51039},{\"date\":\"2024-05-18Z\",\"views\":62463}],\"type\":\"standard\",\"title\":\"Ty_Olsson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q552972\",\"titles\":{\"canonical\":\"Ty_Olsson\",\"normalized\":\"Ty Olsson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\"},\"pageid\":5512162,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Ty_Olsson.jpg/320px-Ty_Olsson.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Ty_Olsson.jpg\",\"width\":2135,\"height\":3203},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760969\",\"tid\":\"44f355b5-1686-11ef-8358-870a76034846\",\"timestamp\":\"2024-05-20T08:52:21Z\",\"description\":\"Canadian actor (born 1974)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ty_Olsson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ty_Olsson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ty_Olsson\"}},\"extract\":\"Ty Victor Olsson is a Canadian actor. He is known for playing Benny Lafitte in Supernatural, real-life 9/11 victim Mark Bingham in the A\u0026E television film Flight 93, and Ord in the PBS Kids animated children's series Dragon Tales.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTy Victor Olsson\u003c/b\u003e is a Canadian actor. He is known for playing Benny Lafitte in \u003ci\u003eSupernatural\u003c/i\u003e, real-life 9/11 victim Mark Bingham in the A\u0026amp;E television film \u003ci\u003eFlight 93\u003c/i\u003e, and Ord in the PBS Kids animated children's series \u003ci\u003eDragon Tales\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Ty Olsson\"},{\"views\":61352,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":99711},{\"date\":\"2024-05-15Z\",\"views\":81344},{\"date\":\"2024-05-16Z\",\"views\":69417},{\"date\":\"2024-05-17Z\",\"views\":59465},{\"date\":\"2024-05-18Z\",\"views\":61352}],\"type\":\"standard\",\"title\":\"Richard_Gadd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q28136502\",\"titles\":{\"canonical\":\"Richard_Gadd\",\"normalized\":\"Richard Gadd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\"},\"pageid\":52517837,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696950\",\"tid\":\"6d04a182-1631-11ef-801f-cfcaf3aa595e\",\"timestamp\":\"2024-05-19T22:45:01Z\",\"description\":\"Scottish writer, actor and comedian (born 1989/1990)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Richard_Gadd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Richard_Gadd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Richard_Gadd\"}},\"extract\":\"Richard Craig Steven Gadd is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series Baby Reindeer, based on his one-man show and his real-life experience.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRichard Craig Steven Gadd\u003c/b\u003e is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series \u003ci\u003eBaby Reindeer\u003c/i\u003e, based on his one-man show and his real-life experience.\u003c/p\u003e\",\"normalizedtitle\":\"Richard Gadd\"},{\"views\":61211,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1659},{\"date\":\"2024-05-15Z\",\"views\":1781},{\"date\":\"2024-05-16Z\",\"views\":2622},{\"date\":\"2024-05-17Z\",\"views\":4405},{\"date\":\"2024-05-18Z\",\"views\":61211}],\"type\":\"standard\",\"title\":\"Mairis_Briedis\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1101673\",\"titles\":{\"canonical\":\"Mairis_Briedis\",\"normalized\":\"Mairis Briedis\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\"},\"pageid\":41168292,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Mairis_Briedis_2018.jpg/320px-Mairis_Briedis_2018.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/da/Mairis_Briedis_2018.jpg\",\"width\":5616,\"height\":3744},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224707864\",\"tid\":\"ed310361-163d-11ef-bd6a-5c31927d892d\",\"timestamp\":\"2024-05-20T00:14:30Z\",\"description\":\"Latvian boxer (born 1985)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mairis_Briedis\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mairis_Briedis\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mairis_Briedis\"}},\"extract\":\"Mairis Briedis is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and Ring titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by The Ring magazine, BoxRec, and second by the Transnational Boxing Rankings Board.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMairis Briedis \u003c/b\u003e is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and \u003cspan\u003e\u003ci\u003eRing\u003c/i\u003e\u003c/span\u003e titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, BoxRec, and second by the Transnational Boxing Rankings Board.\u003c/p\u003e\",\"normalizedtitle\":\"Mairis Briedis\"},{\"views\":61183,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13055},{\"date\":\"2024-05-15Z\",\"views\":16220},{\"date\":\"2024-05-16Z\",\"views\":26544},{\"date\":\"2024-05-17Z\",\"views\":54308},{\"date\":\"2024-05-18Z\",\"views\":61183}],\"type\":\"standard\",\"title\":\"The_Strangers:_Chapter_1\",\"displaytitle\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114073140\",\"titles\":{\"canonical\":\"The_Strangers:_Chapter_1\",\"normalized\":\"The Strangers: Chapter 1\",\"display\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\"},\"pageid\":71757646,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761371\",\"tid\":\"e084dfc2-1686-11ef-8a79-5b1f5e041bac\",\"timestamp\":\"2024-05-20T08:56:42Z\",\"description\":\"2024 film by Renny Harlin\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Strangers%3A_Chapter_1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"}},\"extract\":\"The Strangers: Chapter 1 is a 2024 American horror film that is the third film in The Strangers film series and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eThe Strangers: Chapter 1\u003c/b\u003e\u003c/i\u003e is a 2024 American horror film that is the third film in \u003cspan\u003e\u003ci\u003eThe Strangers\u003c/i\u003e film series\u003c/span\u003e and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\u003c/p\u003e\",\"normalizedtitle\":\"The Strangers: Chapter 1\"},{\"views\":60145,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":72},{\"date\":\"2024-05-15Z\",\"views\":85},{\"date\":\"2024-05-16Z\",\"views\":78},{\"date\":\"2024-05-17Z\",\"views\":517},{\"date\":\"2024-05-18Z\",\"views\":60145}],\"type\":\"standard\",\"title\":\"George_Rose_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1480761\",\"titles\":{\"canonical\":\"George_Rose_(actor)\",\"normalized\":\"George Rose (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\"},\"pageid\":5517058,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224589537\",\"tid\":\"1c029181-15b4-11ef-860f-60a111009a67\",\"timestamp\":\"2024-05-19T07:47:58Z\",\"description\":\"English actor and singer (1920–1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:George_Rose_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/George_Rose_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:George_Rose_(actor)\"}},\"extract\":\"George Walter Rose was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in My Fair Lady and The Mystery of Edwin Drood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGeorge Walter Rose\u003c/b\u003e was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in \u003ci\u003eMy Fair Lady\u003c/i\u003e and \u003ci\u003eThe Mystery of Edwin Drood\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"George Rose (actor)\"}]},\"image\":{\"title\":\"File:Palacio Belvedere, Viena, Austria, 2020-02-01, DD 93-95 HDR.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg/640px-Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":640,\"height\":282},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":7785,\"height\":3428},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Palacio_Belvedere,_Viena,_Austria,_2020-02-01,_DD_93-95_HDR.jpg\",\"artist\":{\"html\":\"\u003cbdi\u003e\u003ca href=\\\"https://www.wikidata.org/wiki/Q28147777\\\" class=\\\"extiw\\\" title=\\\"d:Q28147777\\\"\u003e\u003cspan title=\\\"Spanish photographer (1974-)\\\"\u003eDiego Delso\u003c/span\u003e\u003c/a\u003e\\n\u003c/bdi\u003e\",\"text\":\"Diego Delso\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"View of the Upper \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Belvedere,%20Vienna\\\" title=\\\"en:Belvedere, Vienna\\\" class=\\\"extiw\\\"\u003eBelvedere Palace\u003c/a\u003e during the blue hour, \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Vienna\\\" title=\\\"en:Vienna\\\" class=\\\"extiw\\\"\u003eVienna\u003c/a\u003e, Austria.\",\"text\":\"View of the Upper Belvedere Palace during the blue hour, Vienna, Austria.\",\"lang\":\"en\"},\"wb_entity_id\":\"M93730887\",\"structured\":{\"captions\":{\"en\":\"Belvedere Palace, Vienna, Austria\"}}},\"onthisday\":[{\"text\":\"The wedding of Prince Harry and Meghan Markle (both pictured) took place at St George's Chapel in Windsor Castle, England.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q43890449\",\"titles\":{\"canonical\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"normalized\":\"Wedding of Prince Harry and Meghan Markle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\"},\"pageid\":55772605,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg/320px-Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":829,\"height\":830},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543782\",\"tid\":\"b1cbf944-1577-11ef-9c44-c050daffd9b5\",\"timestamp\":\"2024-05-19T00:35:30Z\",\"description\":\"2018 British royal wedding\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"}},\"extract\":\"The wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\",\"extract_html\":\"\u003cp\u003eThe wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\u003c/p\u003e\",\"normalizedtitle\":\"Wedding of Prince Harry and Meghan Markle\"},{\"type\":\"standard\",\"title\":\"Prince_Harry,_Duke_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q152316\",\"titles\":{\"canonical\":\"Prince_Harry,_Duke_of_Sussex\",\"normalized\":\"Prince Harry, Duke of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\"},\"pageid\":14457,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg/320px-Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":320,\"height\":476},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":766,\"height\":1139},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700127\",\"tid\":\"b0f9baa6-1635-11ef-a588-ac19c543074d\",\"timestamp\":\"2024-05-19T23:15:33Z\",\"description\":\"Member of the British royal family (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prince_Harry%2C_Duke_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"}},\"extract\":\"Prince Harry, Duke of Sussex, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrince Harry, Duke of Sussex\u003c/b\u003e, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\u003c/p\u003e\",\"normalizedtitle\":\"Prince Harry, Duke of Sussex\"},{\"type\":\"standard\",\"title\":\"Meghan,_Duchess_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3304418\",\"titles\":{\"canonical\":\"Meghan,_Duchess_of_Sussex\",\"normalized\":\"Meghan, Duchess of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\"},\"pageid\":11214029,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg/320px-SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":320,\"height\":414},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":1125,\"height\":1455},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700330\",\"tid\":\"f74f0064-1635-11ef-888b-c34b778b4454\",\"timestamp\":\"2024-05-19T23:17:31Z\",\"description\":\"Member of the British royal family and former actress (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Meghan%2C_Duchess_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"}},\"extract\":\"Meghan, Duchess of Sussex is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMeghan, Duchess of Sussex\u003c/b\u003e is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\u003c/p\u003e\",\"normalizedtitle\":\"Meghan, Duchess of Sussex\"},{\"type\":\"standard\",\"title\":\"St_George's_Chapel,_Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2449634\",\"titles\":{\"canonical\":\"St_George's_Chapel,_Windsor_Castle\",\"normalized\":\"St George's Chapel, Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\"},\"pageid\":23910568,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg/320px-St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":320,\"height\":207},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":5473,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544013\",\"tid\":\"df18a7f7-1577-11ef-8b2d-d8013abaa55a\",\"timestamp\":\"2024-05-19T00:36:46Z\",\"description\":\"Royal chapel in Windsor Castle, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48361111,\"lon\":-0.60694444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/St_George's_Chapel%2C_Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"}},\"extract\":\"St George's Chapel at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSt George's Chapel\u003c/b\u003e at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\u003c/p\u003e\",\"normalizedtitle\":\"St George's Chapel, Windsor Castle\"},{\"type\":\"standard\",\"title\":\"Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q42646\",\"titles\":{\"canonical\":\"Windsor_Castle\",\"normalized\":\"Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\"},\"pageid\":4689517,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg/320px-Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":3990,\"height\":2659},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222667833\",\"tid\":\"e8814e48-0c40-11ef-b6d5-e858c3d22445\",\"timestamp\":\"2024-05-07T07:10:39Z\",\"description\":\"Official country residence of British monarch\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48333333,\"lon\":-0.60416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Windsor_Castle\"}},\"extract\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWindsor Castle\u003c/b\u003e is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\u003c/p\u003e\",\"normalizedtitle\":\"Windsor Castle\"}],\"year\":2018},{\"text\":\"A corroded pipeline near Refugio State Beach, California, spilled 142,800 gallons (3,400 barrels) of crude oil onto the Gaviota Coast.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Refugio_State_Beach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7307687\",\"titles\":{\"canonical\":\"Refugio_State_Beach\",\"normalized\":\"Refugio State Beach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\"},\"pageid\":8943321,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Refugio_state_beach_2.jpg/320px-Refugio_state_beach_2.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Refugio_state_beach_2.jpg\",\"width\":4928,\"height\":3264},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155652963\",\"tid\":\"8080cffd-f5f7-11ed-b634-76bd314dbd84\",\"timestamp\":\"2023-05-19T03:44:48Z\",\"description\":\"State beach in Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.46222222,\"lon\":-120.0725},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_State_Beach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_State_Beach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_State_Beach\"}},\"extract\":\"\\n\\nRefugio State Beach is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\n\u003cb\u003eRefugio State Beach\u003c/b\u003e is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio State Beach\"},{\"type\":\"standard\",\"title\":\"Refugio_oil_spill\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19949553\",\"titles\":{\"canonical\":\"Refugio_oil_spill\",\"normalized\":\"Refugio oil spill\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\"},\"pageid\":46752557,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg/320px-Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":640,\"height\":427},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223808546\",\"tid\":\"ab4a239c-11fb-11ef-b78b-23bfbccf1884\",\"timestamp\":\"2024-05-14T14:10:08Z\",\"description\":\"2015 pipeline leak on the coast of California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.4625,\"lon\":-120.08638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_oil_spill\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_oil_spill\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_oil_spill\"}},\"extract\":\"The Refugio oil spill on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRefugio oil spill\u003c/b\u003e on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio oil spill\"},{\"type\":\"standard\",\"title\":\"Gaviota_Coast\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104856587\",\"titles\":{\"canonical\":\"Gaviota_Coast\",\"normalized\":\"Gaviota Coast\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\"},\"pageid\":65303237,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223891497\",\"tid\":\"2c3310c7-1250-11ef-8a7b-6949b0e83b8b\",\"timestamp\":\"2024-05-15T00:15:02Z\",\"description\":\"Rural area of Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.47083333,\"lon\":-120.22472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gaviota_Coast\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gaviota_Coast\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gaviota_Coast\"}},\"extract\":\"The Gaviota Coast in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eGaviota Coast\u003c/b\u003e in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\u003c/p\u003e\",\"normalizedtitle\":\"Gaviota Coast\"}],\"year\":2015},{\"text\":\"In Bangkok, the Thai military (pictured) concluded a week-long crackdown on widespread protests by forcing the surrender of opposition leaders.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Royal_Thai_Armed_Forces\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q947702\",\"titles\":{\"canonical\":\"Royal_Thai_Armed_Forces\",\"normalized\":\"Royal Thai Armed Forces\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\"},\"pageid\":30136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/320px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":320,\"height\":221},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/435px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":435,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222282804\",\"tid\":\"f50a8985-0a7f-11ef-af5b-b44a4e859d86\",\"timestamp\":\"2024-05-05T01:36:56Z\",\"description\":\"National military of Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Royal_Thai_Armed_Forces\",\"edit\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"}},\"extract\":\"The Royal Thai Armed Forces (RTARF) are the armed forces of the Kingdom of Thailand.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRoyal Thai Armed Forces\u003c/b\u003e (RTARF) are the armed forces of the Kingdom of Thailand.\u003c/p\u003e\",\"normalizedtitle\":\"Royal Thai Armed Forces\"},{\"type\":\"standard\",\"title\":\"2010_Thai_military_crackdown\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3428188\",\"titles\":{\"canonical\":\"2010_Thai_military_crackdown\",\"normalized\":\"2010 Thai military crackdown\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\"},\"pageid\":27408756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/2010_Bangkok_unrest_aftermath.jpg/320px-2010_Bangkok_unrest_aftermath.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a3/2010_Bangkok_unrest_aftermath.jpg\",\"width\":1069,\"height\":1600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222537505\",\"tid\":\"343ae1cf-0bb6-11ef-b1fa-515e9d08b245\",\"timestamp\":\"2024-05-06T14:37:46Z\",\"description\":\"Violent state suppression of pro-democracy protests in Bangkok, Thailand (April–May 2010)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_military_crackdown\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"}},\"extract\":\"On 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\",\"extract_html\":\"\u003cp\u003eOn 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai military crackdown\"},{\"type\":\"standard\",\"title\":\"2010_Thai_political_protests\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1059090\",\"titles\":{\"canonical\":\"2010_Thai_political_protests\",\"normalized\":\"2010 Thai political protests\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\"},\"pageid\":26906468,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg/320px-UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":500,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222389315\",\"tid\":\"25e6c6be-0b11-11ef-a047-52962ca39323\",\"timestamp\":\"2024-05-05T18:56:15Z\",\"description\":\"2010 pro-democracy protests in Thailand violently suppressed by the military\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_political_protests\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"}},\"extract\":\"The 2010 Thai political protests were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2010 Thai political protests\u003c/b\u003e were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai political protests\"},{\"type\":\"standard\",\"title\":\"United_Front_for_Democracy_Against_Dictatorship\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1322759\",\"titles\":{\"canonical\":\"United_Front_for_Democracy_Against_Dictatorship\",\"normalized\":\"United Front for Democracy Against Dictatorship\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\"},\"pageid\":19107241,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192004794\",\"tid\":\"01426aa8-a460-11ee-8e5d-22b37635c7ff\",\"timestamp\":\"2023-12-27T02:31:14Z\",\"description\":\"Pro-democracy political pressure group in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_Front_for_Democracy_Against_Dictatorship\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"}},\"extract\":\"The United Front for Democracy Against Dictatorship (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited Front for Democracy Against Dictatorship\u003c/b\u003e (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\u003c/p\u003e\",\"normalizedtitle\":\"United Front for Democracy Against Dictatorship\"}],\"year\":2010},{\"text\":\"The Sierra Gorda Biosphere, which encompasses the most ecologically diverse region in Mexico, was established as a result of grassroots efforts.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Sierra_Gorda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3292893\",\"titles\":{\"canonical\":\"Sierra_Gorda\",\"normalized\":\"Sierra Gorda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\"},\"pageid\":4336092,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/85/SierraGordaWaterfall.JPG/320px-SierraGordaWaterfall.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/85/SierraGordaWaterfall.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1188237276\",\"tid\":\"122fec7d-9257-11ee-a201-8adbf99575c9\",\"timestamp\":\"2023-12-04T03:41:56Z\",\"description\":\"Ecoregion in the Mexican states of Querétaro, Guanajuato, Hidalgo, and San Luis Potosí\",\"description_source\":\"local\",\"coordinates\":{\"lat\":21.31083333,\"lon\":-99.66805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sierra_Gorda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sierra_Gorda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sierra_Gorda\"}},\"extract\":\"The Sierra Gorda is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km2 of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSierra Gorda\u003c/b\u003e is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km\u003csup\u003e2\u003c/sup\u003e of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\u003c/p\u003e\",\"normalizedtitle\":\"Sierra Gorda\"},{\"type\":\"standard\",\"title\":\"Ecosystem_diversity\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q842388\",\"titles\":{\"canonical\":\"Ecosystem_diversity\",\"normalized\":\"Ecosystem diversity\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\"},\"pageid\":524396,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/BlueMarble-2001-2002.jpg/320px-BlueMarble-2001-2002.jpg\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/BlueMarble-2001-2002.jpg\",\"width\":4096,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215311327\",\"tid\":\"0f552812-e9c9-11ee-84bc-8f2eca1e47cb\",\"timestamp\":\"2024-03-24T10:27:05Z\",\"description\":\"Diversity and variations in ecosystems\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ecosystem_diversity\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ecosystem_diversity\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ecosystem_diversity\"}},\"extract\":\"Ecosystem diversity deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEcosystem diversity\u003c/b\u003e deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\u003c/p\u003e\",\"normalizedtitle\":\"Ecosystem diversity\"},{\"type\":\"standard\",\"title\":\"Grassroots\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929651\",\"titles\":{\"canonical\":\"Grassroots\",\"normalized\":\"Grassroots\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\"},\"pageid\":451914,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222480667\",\"tid\":\"029c3ce0-0b6a-11ef-b302-3e10943cc4cf\",\"timestamp\":\"2024-05-06T05:32:21Z\",\"description\":\"Movement based on local communities\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.wikipedia.org/wiki/Grassroots?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Grassroots\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Grassroots\",\"edit\":\"https://en.m.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Grassroots\"}},\"extract\":\"A grassroots movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egrassroots\u003c/b\u003e movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\u003c/p\u003e\",\"normalizedtitle\":\"Grassroots\"}],\"year\":1997},{\"text\":\"Breakup of Yugoslavia: With the local Serb population boycotting the referendum, Croatians voted in favour of independence from Yugoslavia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Breakup_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4390259\",\"titles\":{\"canonical\":\"Breakup_of_Yugoslavia\",\"normalized\":\"Breakup of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\"},\"pageid\":2060900,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Breakup_of_Yugoslavia.gif/320px-Breakup_of_Yugoslavia.gif\",\"width\":320,\"height\":257},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Breakup_of_Yugoslavia.gif\",\"width\":1545,\"height\":1242},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387764\",\"tid\":\"39a2fcc6-14c1-11ef-b1f8-1bcb892b5cfa\",\"timestamp\":\"2024-05-18T02:49:20Z\",\"description\":\"1991–92 Balkan political conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Breakup_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"}},\"extract\":\"After a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\",\"extract_html\":\"\u003cp\u003eAfter a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\u003c/p\u003e\",\"normalizedtitle\":\"Breakup of Yugoslavia\"},{\"type\":\"standard\",\"title\":\"Serbs_of_Croatia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1280677\",\"titles\":{\"canonical\":\"Serbs_of_Croatia\",\"normalized\":\"Serbs of Croatia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\"},\"pageid\":3690204,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/320px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/1200px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":1200,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388423\",\"tid\":\"d82f60ff-14c1-11ef-b39c-0dcebd917f73\",\"timestamp\":\"2024-05-18T02:53:46Z\",\"description\":\"National minority in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Serbs_of_Croatia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"}},\"extract\":\"The Serbs of Croatia or Croatian Serbs constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSerbs of Croatia\u003c/b\u003e or \u003cb\u003eCroatian Serbs\u003c/b\u003e constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\u003c/p\u003e\",\"normalizedtitle\":\"Serbs of Croatia\"},{\"type\":\"standard\",\"title\":\"1991_Croatian_independence_referendum\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3085493\",\"titles\":{\"canonical\":\"1991_Croatian_independence_referendum\",\"normalized\":\"1991 Croatian independence referendum\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\"},\"pageid\":11781428,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223346108\",\"tid\":\"befa4b5a-0fa1-11ef-a572-15b6c106e2e6\",\"timestamp\":\"2024-05-11T14:21:24Z\",\"description\":\"1991 vote in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/1991_Croatian_independence_referendum\",\"edit\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"}},\"extract\":\"Croatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\",\"extract_html\":\"\u003cp\u003eCroatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\u003c/p\u003e\",\"normalizedtitle\":\"1991 Croatian independence referendum\"},{\"type\":\"standard\",\"title\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83286\",\"titles\":{\"canonical\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"normalized\":\"Socialist Federal Republic of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\"},\"pageid\":297809,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/320px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/1000px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":1000,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224486458\",\"tid\":\"4c12579a-1544-11ef-ade1-e44966f423b1\",\"timestamp\":\"2024-05-18T18:27:35Z\",\"description\":\"European socialist state (1945–1992)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.82,\"lon\":20.4275},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Socialist_Federal_Republic_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"}},\"extract\":\"The Socialist Federal Republic of Yugoslavia (SFRY), commonly referred to as SFR Yugoslavia or Socialist Yugoslavia or simply as Yugoslavia, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSocialist Federal Republic of Yugoslavia\u003c/b\u003e (\u003cb\u003eSFRY\u003c/b\u003e), commonly referred to as \u003cb\u003eSFR Yugoslavia\u003c/b\u003e or \u003cb\u003eSocialist Yugoslavia\u003c/b\u003e or simply as \u003cb\u003eYugoslavia\u003c/b\u003e, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\u003c/p\u003e\",\"normalizedtitle\":\"Socialist Federal Republic of Yugoslavia\"}],\"year\":1991},{\"text\":\"First World War: Australian and New Zealand troops repelled the third attack on Anzac Cove, inflicting heavy casualties on the attacking Ottoman forces.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q361\",\"titles\":{\"canonical\":\"World_War_I\",\"normalized\":\"World War I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\"},\"pageid\":4764461,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Bataille_de_Verdun_1916.jpg/320px-Bataille_de_Verdun_1916.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Bataille_de_Verdun_1916.jpg\",\"width\":1875,\"height\":1402},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224566277\",\"tid\":\"f532626a-158f-11ef-9e62-50b2f0e3b3e6\",\"timestamp\":\"2024-05-19T03:29:11Z\",\"description\":\"1914–1918 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_I\"}},\"extract\":\"World War I or the First World War was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War I\u003c/b\u003e or the \u003cb\u003eFirst World War\u003c/b\u003e was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\u003c/p\u003e\",\"normalizedtitle\":\"World War I\"},{\"type\":\"standard\",\"title\":\"Third_attack_on_Anzac_Cove\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16901576\",\"titles\":{\"canonical\":\"Third_attack_on_Anzac_Cove\",\"normalized\":\"Third attack on Anzac Cove\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\"},\"pageid\":38768440,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Assault_of_Ottoman_soldiers.jpg/320px-Assault_of_Ottoman_soldiers.jpg\",\"width\":320,\"height\":215},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Assault_of_Ottoman_soldiers.jpg\",\"width\":902,\"height\":606},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661294\",\"tid\":\"f6a084d5-1609-11ef-81b3-d50e38e865bd\",\"timestamp\":\"2024-05-19T18:02:32Z\",\"description\":\"Battle in 1915 during the First World War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":40.24,\"lon\":26.2925},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Third_attack_on_Anzac_Cove\",\"edit\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"}},\"extract\":\"The third attack on Anzac Cove was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ethird attack on Anzac Cove\u003c/b\u003e was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\u003c/p\u003e\",\"normalizedtitle\":\"Third attack on Anzac Cove\"}],\"year\":1915},{\"text\":\"Parks Canada, the world's first national park service, was established as the Dominion Parks Branch under the Department of the Interior.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Parks_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q349487\",\"titles\":{\"canonical\":\"Parks_Canada\",\"normalized\":\"Parks Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\"},\"pageid\":507952,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/320px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/365px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":365,\"height\":274},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216238762\",\"tid\":\"8ac738e9-ee18-11ee-927b-73fd7cbd402d\",\"timestamp\":\"2024-03-29T22:06:07Z\",\"description\":\"Government agency\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Parks_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Parks_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Parks_Canada\"}},\"extract\":\"Parks Canada, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eParks Canada\u003c/b\u003e, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Parks Canada\"},{\"type\":\"standard\",\"title\":\"National_park\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q46169\",\"titles\":{\"canonical\":\"National_park\",\"normalized\":\"National park\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\"},\"pageid\":21818,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg/320px-Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":3088,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224275986\",\"tid\":\"a4a8f48d-1439-11ef-943e-24b47b125f5c\",\"timestamp\":\"2024-05-17T10:38:48Z\",\"description\":\"Park for conservation of nature and usually also for visitors\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.wikipedia.org/wiki/National_park?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_park\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_park\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_park\"}},\"extract\":\"A national park is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003enational park\u003c/b\u003e is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\u003c/p\u003e\",\"normalizedtitle\":\"National park\"},{\"type\":\"standard\",\"title\":\"Environment_and_Climate_Change_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348789\",\"titles\":{\"canonical\":\"Environment_and_Climate_Change_Canada\",\"normalized\":\"Environment and Climate Change Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\"},\"pageid\":272329,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1213022671\",\"tid\":\"c274572d-df0e-11ee-a19d-dad574c6fe55\",\"timestamp\":\"2024-03-10T18:48:18Z\",\"description\":\"Canadian federal government department\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Environment_and_Climate_Change_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"}},\"extract\":\"Environment and Climate Change Canada is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, Environment Canada.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEnvironment and Climate Change Canada\u003c/b\u003e is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, \u003cb\u003eEnvironment Canada\u003c/b\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Environment and Climate Change Canada\"}],\"year\":1911},{\"text\":\"Captain John Franklin (pictured) departed Greenhithe, England, on an expedition to the Canadian Arctic in search of the Northwest Passage; all 129 men were later lost when their ships became icebound in Victoria Strait.\",\"pages\":[{\"type\":\"standard\",\"title\":\"John_Franklin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2655\",\"titles\":{\"canonical\":\"John_Franklin\",\"normalized\":\"John Franklin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\"},\"pageid\":330305,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg/320px-Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":320,\"height\":382},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":2400,\"height\":2863},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221759362\",\"tid\":\"4b1ac3b9-07fb-11ef-936f-56ddbcd74120\",\"timestamp\":\"2024-05-01T20:42:15Z\",\"description\":\"British naval officer and explorer (1786–1847)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.wikipedia.org/wiki/John_Franklin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:John_Franklin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/John_Franklin\",\"edit\":\"https://en.m.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:John_Franklin\"}},\"extract\":\"Sir John Franklin was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSir John Franklin\u003c/b\u003e \u003csmall\u003e\u003c/small\u003e was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\u003c/p\u003e\",\"normalizedtitle\":\"John Franklin\"},{\"type\":\"standard\",\"title\":\"Greenhithe,_Kent\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3028239\",\"titles\":{\"canonical\":\"Greenhithe,_Kent\",\"normalized\":\"Greenhithe, Kent\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\"},\"pageid\":1057585,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/GreenhitheIngressPark5342.JPG/320px-GreenhitheIngressPark5342.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/GreenhitheIngressPark5342.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1190989678\",\"tid\":\"e0758296-9f8f-11ee-b240-395c3531fe37\",\"timestamp\":\"2023-12-20T23:31:19Z\",\"description\":\"Village in the Borough of Dartford, Kent, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.4504,\"lon\":0.2823},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greenhithe%2C_Kent\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"}},\"extract\":\"Greenhithe is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGreenhithe\u003c/b\u003e is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\u003c/p\u003e\",\"normalizedtitle\":\"Greenhithe, Kent\"},{\"type\":\"standard\",\"title\":\"Franklin's_lost_expedition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2305\",\"titles\":{\"canonical\":\"Franklin's_lost_expedition\",\"normalized\":\"Franklin's lost expedition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\"},\"pageid\":15746136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Franklin%27s-Lost-Expedition.png/320px-Franklin%27s-Lost-Expedition.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Franklin%27s-Lost-Expedition.png\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387825\",\"tid\":\"46bfef98-14c1-11ef-b36c-b14d135d5e7d\",\"timestamp\":\"2024-05-18T02:49:42Z\",\"description\":\"British expedition of Arctic exploration\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Franklin's_lost_expedition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"}},\"extract\":\"Franklin's lost expedition was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, HMS Erebus and HMS Terror, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year Erebus and Terror were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and Erebus's captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFranklin's lost expedition\u003c/b\u003e was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, \u003cspan\u003eHMS \u003ci\u003eErebus\u003c/i\u003e\u003c/span\u003e and \u003cspan\u003eHMS \u003ci\u003eTerror\u003c/i\u003e\u003c/span\u003e, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year \u003ci\u003eErebus\u003c/i\u003e and \u003ci\u003eTerror\u003c/i\u003e were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and \u003ci\u003eErebus\u003c/i\u003e\u003cspan class=\\\"nowrap\\\"\u003e'\u003c/span\u003es captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\u003c/p\u003e\",\"normalizedtitle\":\"Franklin's lost expedition\"},{\"type\":\"standard\",\"title\":\"Northern_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q764146\",\"titles\":{\"canonical\":\"Northern_Canada\",\"normalized\":\"Northern Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\"},\"pageid\":79987,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Whitehorse_Yukon.JPG/320px-Whitehorse_Yukon.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5e/Whitehorse_Yukon.JPG\",\"width\":640,\"height\":480},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221583793\",\"tid\":\"9fee06a3-0729-11ef-b35c-25ac1f2c2135\",\"timestamp\":\"2024-04-30T19:41:23Z\",\"description\":\"Region of Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":65.82,\"lon\":-107.08},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northern_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northern_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northern_Canada\"}},\"extract\":\"Northern Canada, colloquially the North or the Territories, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthern Canada\u003c/b\u003e, colloquially \u003cb\u003ethe North\u003c/b\u003e or \u003cb\u003ethe Territories\u003c/b\u003e, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\u003c/p\u003e\",\"normalizedtitle\":\"Northern Canada\"},{\"type\":\"standard\",\"title\":\"Northwest_Passage\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q81136\",\"titles\":{\"canonical\":\"Northwest_Passage\",\"normalized\":\"Northwest Passage\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\"},\"pageid\":21215,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg/320px-2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":2700,\"height\":2700},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224392011\",\"tid\":\"5130bb64-14c6-11ef-b2de-9a464bc509a6\",\"timestamp\":\"2024-05-18T03:25:47Z\",\"description\":\"Sea route north of North America\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northwest_Passage\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northwest_Passage\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northwest_Passage\"}},\"extract\":\"The Northwest Passage (NWP) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the Northwest Passages, Northwestern Passages or the Canadian Internal Waters.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNorthwest Passage\u003c/b\u003e (\u003cb\u003eNWP\u003c/b\u003e) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the \u003cb\u003eNorthwest Passages\u003c/b\u003e, \u003cb\u003eNorthwestern Passages\u003c/b\u003e or the Canadian Internal Waters.\u003c/p\u003e\",\"normalizedtitle\":\"Northwest Passage\"},{\"type\":\"standard\",\"title\":\"Victoria_Strait\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q601548\",\"titles\":{\"canonical\":\"Victoria_Strait\",\"normalized\":\"Victoria Strait\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\"},\"pageid\":7746699,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Wfm_victoria_island.jpg/320px-Wfm_victoria_island.jpg\",\"width\":320,\"height\":237},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Wfm_victoria_island.jpg\",\"width\":1280,\"height\":948},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155669815\",\"tid\":\"43bdcc9b-f609-11ed-b5a1-2cc997448104\",\"timestamp\":\"2023-05-19T05:51:57Z\",\"description\":\"Strait in Nunavut, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":69.5,\"lon\":-100.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Victoria_Strait\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Victoria_Strait\",\"edit\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Victoria_Strait\"}},\"extract\":\"Victoria Strait is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVictoria Strait\u003c/b\u003e is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\u003c/p\u003e\",\"normalizedtitle\":\"Victoria Strait\"}],\"year\":1845},{\"text\":\"The United States Congress passed the largest tariff in the nation's history, which resulted in severe economic hardship in the American South.\",\"pages\":[{\"type\":\"standard\",\"title\":\"United_States_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11268\",\"titles\":{\"canonical\":\"United_States_Congress\",\"normalized\":\"United States Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\"},\"pageid\":31756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/320px-Seal_of_the_United_States_Congress.svg.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/1055px-Seal_of_the_United_States_Congress.svg.png\",\"width\":1055,\"height\":1052},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543713\",\"tid\":\"9e20913a-1577-11ef-bd9f-d8c767cc668f\",\"timestamp\":\"2024-05-19T00:34:57Z\",\"description\":\"Legislative branch of U.S. government\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.88972222,\"lon\":-77.00888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_States_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_States_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_States_Congress\"}},\"extract\":\"The United States Congress is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited States Congress\u003c/b\u003e is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\u003c/p\u003e\",\"normalizedtitle\":\"United States Congress\"},{\"type\":\"standard\",\"title\":\"Tariff_of_Abominations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7686034\",\"titles\":{\"canonical\":\"Tariff_of_Abominations\",\"normalized\":\"Tariff of Abominations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\"},\"pageid\":55572,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224675540\",\"tid\":\"d4fab5e8-1618-11ef-80c1-09f2e774fd42\",\"timestamp\":\"2024-05-19T19:48:58Z\",\"description\":\"1828 United States tariff\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tariff_of_Abominations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"}},\"extract\":\"The Tariff of 1828 was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \\\"Tariff of Abominations\\\" by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eTariff of 1828\u003c/b\u003e was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \u003cb\u003e\\\"Tariff of Abominations\\\"\u003c/b\u003e by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\u003c/p\u003e\",\"normalizedtitle\":\"Tariff of Abominations\"}],\"year\":1828},{\"text\":\"A combination of thick smoke, fog, and heavy cloud cover caused darkness to fall on parts of Canada and the New England area of the United States by noon.\",\"pages\":[{\"type\":\"standard\",\"title\":\"New_England's_Dark_Day\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q588300\",\"titles\":{\"canonical\":\"New_England's_Dark_Day\",\"normalized\":\"New England's Dark Day\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\"},\"pageid\":666041,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg/320px-1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":320,\"height\":227},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":2500,\"height\":1772},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698529\",\"tid\":\"7db62050-1633-11ef-9a45-a19eb4bbc11f\",\"timestamp\":\"2024-05-19T22:59:48Z\",\"description\":\"1780 darkness in New England and Canada\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England's_Dark_Day\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"}},\"extract\":\"New England's Dark Day occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England's Dark Day\u003c/b\u003e occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\u003c/p\u003e\",\"normalizedtitle\":\"New England's Dark Day\"},{\"type\":\"standard\",\"title\":\"New_England\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q18389\",\"titles\":{\"canonical\":\"New_England\",\"normalized\":\"New England\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\"},\"pageid\":21531764,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Portland_HeadLight_%28cropped%29.jpg/320px-Portland_HeadLight_%28cropped%29.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Portland_HeadLight_%28cropped%29.jpg\",\"width\":3703,\"height\":2779},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219182468\",\"tid\":\"2b5c7a30-fbbb-11ee-95fd-523e3ef2e8e0\",\"timestamp\":\"2024-04-16T06:33:00Z\",\"description\":\"Region in the Northeastern United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44,\"lon\":-71},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England\"}},\"extract\":\"New England is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England\u003c/b\u003e is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\u003c/p\u003e\",\"normalizedtitle\":\"New England\"}],\"year\":1780},{\"text\":\"American Revolutionary War: A Continental Army garrison west of Montreal surrendered to British troops at the Battle of the Cedars.\",\"pages\":[{\"type\":\"standard\",\"title\":\"American_Revolutionary_War\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q40949\",\"titles\":{\"canonical\":\"American_Revolutionary_War\",\"normalized\":\"American Revolutionary War\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\"},\"pageid\":771,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/AmericanRevolutionaryWarMon.jpg/320px-AmericanRevolutionaryWarMon.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2b/AmericanRevolutionaryWarMon.jpg\",\"width\":406,\"height\":601},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224395755\",\"tid\":\"ad4a1b93-14cb-11ef-91e2-dcff43c01b8c\",\"timestamp\":\"2024-05-18T04:04:09Z\",\"description\":\"1775–1783 American war of independence\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:American_Revolutionary_War\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/American_Revolutionary_War\",\"edit\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:American_Revolutionary_War\"}},\"extract\":\"The American Revolutionary War, also known as the Revolutionary War or American War of Independence, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAmerican Revolutionary War\u003c/b\u003e, also known as the \u003cb\u003eRevolutionary War\u003c/b\u003e or \u003cb\u003eAmerican War of Independence\u003c/b\u003e, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\u003c/p\u003e\",\"normalizedtitle\":\"American Revolutionary War\"},{\"type\":\"standard\",\"title\":\"Continental_Army\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q54122\",\"titles\":{\"canonical\":\"Continental_Army\",\"normalized\":\"Continental Army\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\"},\"pageid\":168210,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/320px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/719px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":719,\"height\":719},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218341994\",\"tid\":\"0d0d1f71-f7ba-11ee-92e0-84d6ec6ea0b7\",\"timestamp\":\"2024-04-11T04:14:55Z\",\"description\":\"Colonial army during the American Revolutionary War\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.wikipedia.org/wiki/Continental_Army?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Continental_Army\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Continental_Army\",\"edit\":\"https://en.m.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Continental_Army\"}},\"extract\":\"The Continental Army was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eContinental Army\u003c/b\u003e was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\u003c/p\u003e\",\"normalizedtitle\":\"Continental Army\"},{\"type\":\"standard\",\"title\":\"Montreal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q340\",\"titles\":{\"canonical\":\"Montreal\",\"normalized\":\"Montreal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\"},\"pageid\":7954681,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/320px-Flag_of_Montreal.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/435px-Flag_of_Montreal.svg.png\",\"width\":435,\"height\":217},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388393\",\"tid\":\"ccdc30a9-14c1-11ef-a502-1d98a1856bc8\",\"timestamp\":\"2024-05-18T02:53:27Z\",\"description\":\"Largest city in Quebec, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.50888889,\"lon\":-73.55416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.wikipedia.org/wiki/Montreal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Montreal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Montreal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Montreal\"}},\"extract\":\"Montreal is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as Ville-Marie, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMontreal\u003c/b\u003e is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as \u003ci\u003eVille-Marie\u003c/i\u003e, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\u003c/p\u003e\",\"normalizedtitle\":\"Montreal\"},{\"type\":\"standard\",\"title\":\"Battle_of_the_Cedars\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1779439\",\"titles\":{\"canonical\":\"Battle_of_the_Cedars\",\"normalized\":\"Battle of the Cedars\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\"},\"pageid\":1255562,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Montreal1764CedarsDetail.png/320px-Montreal1764CedarsDetail.png\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Montreal1764CedarsDetail.png\",\"width\":1067,\"height\":697},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1185353813\",\"tid\":\"b2a39b1f-843d-11ee-be8c-93f4c27e711b\",\"timestamp\":\"2023-11-16T05:05:02Z\",\"description\":\"1776 skirmishes of the American Revolutionary War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.3099,\"lon\":-74.0353},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_the_Cedars\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"}},\"extract\":\"The Battle of the Cedars was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of the Cedars\u003c/b\u003e was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of the Cedars\"}],\"year\":1776},{\"text\":\"French physicist Jean-Pierre Christin published the design of a mercury thermometer using the centigrade scale, with 0 representing the melting point of water and 100 its boiling point.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Jean-Pierre_Christin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3169136\",\"titles\":{\"canonical\":\"Jean-Pierre_Christin\",\"normalized\":\"Jean-Pierre Christin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\"},\"pageid\":36320014,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg/320px-Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":320,\"height\":203},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":1536,\"height\":972},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224640125\",\"tid\":\"4f1942be-15f5-11ef-8b89-17cafdec9809\",\"timestamp\":\"2024-05-19T15:34:41Z\",\"description\":\"French scientist (1683–1755)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jean-Pierre_Christin\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"}},\"extract\":\"Jean-Pierre Christin was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJean-Pierre Christin\u003c/b\u003e was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\u003c/p\u003e\",\"normalizedtitle\":\"Jean-Pierre Christin\"},{\"type\":\"standard\",\"title\":\"Mercury-in-glass_thermometer\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1428655\",\"titles\":{\"canonical\":\"Mercury-in-glass_thermometer\",\"normalized\":\"Mercury-in-glass thermometer\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\"},\"pageid\":150245,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Mercury_Thermometer.jpg/320px-Mercury_Thermometer.jpg\",\"width\":320,\"height\":691},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Mercury_Thermometer.jpg\",\"width\":922,\"height\":1990},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224519270\",\"tid\":\"50e509a8-1560-11ef-b870-8d644d1d526c\",\"timestamp\":\"2024-05-18T21:48:09Z\",\"description\":\"Type of thermometer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mercury-in-glass_thermometer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"}},\"extract\":\"The mercury-in-glass or mercury thermometer is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emercury-in-glass\u003c/b\u003e or \u003cb\u003emercury thermometer\u003c/b\u003e is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\u003c/p\u003e\",\"normalizedtitle\":\"Mercury-in-glass thermometer\"},{\"type\":\"standard\",\"title\":\"Celsius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25267\",\"titles\":{\"canonical\":\"Celsius\",\"normalized\":\"Celsius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\"},\"pageid\":19593040,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/320px-Countries_that_use_Celsius.svg.png\",\"width\":320,\"height\":164},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/2560px-Countries_that_use_Celsius.svg.png\",\"width\":2560,\"height\":1314},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223598016\",\"tid\":\"64b7de3b-10e8-11ef-ba9a-9e8a2c8f3ef4\",\"timestamp\":\"2024-05-13T05:19:38Z\",\"description\":\"Scale and unit of measurement for temperature\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.wikipedia.org/wiki/Celsius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Celsius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Celsius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Celsius\"}},\"extract\":\"The degree Celsius is the unit of temperature on the Celsius temperature scale, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called centigrade in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003edegree Celsius\u003c/b\u003e is the unit of temperature on the \u003cb\u003eCelsius temperature scale\u003c/b\u003e, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called \u003ci\u003ecentigrade\u003c/i\u003e in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\u003c/p\u003e\",\"normalizedtitle\":\"Celsius\"},{\"type\":\"standard\",\"title\":\"Melting_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15318\",\"titles\":{\"canonical\":\"Melting_point\",\"normalized\":\"Melting point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\"},\"pageid\":40283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Melting_ice_thermometer.jpg/320px-Melting_ice_thermometer.jpg\",\"width\":320,\"height\":278},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/64/Melting_ice_thermometer.jpg\",\"width\":2536,\"height\":2204},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224699892\",\"tid\":\"6a0bbc8d-1635-11ef-b512-0e0f8f18e985\",\"timestamp\":\"2024-05-19T23:13:34Z\",\"description\":\"Temperature at which a solid turns liquid\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Melting_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Melting_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Melting_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Melting_point\"}},\"extract\":\"The melting point of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emelting point\u003c/b\u003e of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\u003c/p\u003e\",\"normalizedtitle\":\"Melting point\"},{\"type\":\"standard\",\"title\":\"Boiling_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1003183\",\"titles\":{\"canonical\":\"Boiling_point\",\"normalized\":\"Boiling point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\"},\"pageid\":4115,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Boilingkettle.jpg/320px-Boilingkettle.jpg\",\"width\":320,\"height\":411},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/92/Boilingkettle.jpg\",\"width\":2837,\"height\":3645},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214870211\",\"tid\":\"7eefc9c5-e7af-11ee-b16e-8b4e7de40642\",\"timestamp\":\"2024-03-21T18:19:03Z\",\"description\":\"Temperature at which a substance changes from liquid into vapor\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Boiling_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Boiling_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Boiling_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Boiling_point\"}},\"extract\":\" The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\",\"extract_html\":\"\u003cp\u003e The \u003cb\u003eboiling point\u003c/b\u003e of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\u003c/p\u003e\",\"normalizedtitle\":\"Boiling point\"}],\"year\":1743},{\"text\":\"Anglo-Spanish War: England invaded Spanish Jamaica, capturing it a week later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Spanish_War_(1654–1660)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q369291\",\"titles\":{\"canonical\":\"Anglo-Spanish_War_(1654–1660)\",\"normalized\":\"Anglo-Spanish War (1654–1660)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\"},\"pageid\":853356,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg/320px-Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":320,\"height\":242},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":4085,\"height\":3087},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224685406\",\"tid\":\"8ef728cd-1623-11ef-94c8-16a4f6553eaf\",\"timestamp\":\"2024-05-19T21:05:45Z\",\"description\":\"War between the English Protectorate, under Oliver Cromwell, and Spain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Spanish_War_(1654%E2%80%931660)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"}},\"extract\":\"The Anglo-Spanish War was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAnglo-Spanish War\u003c/b\u003e was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Spanish War (1654–1660)\"},{\"type\":\"standard\",\"title\":\"Invasion_of_Jamaica\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6059673\",\"titles\":{\"canonical\":\"Invasion_of_Jamaica\",\"normalized\":\"Invasion of Jamaica\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\"},\"pageid\":28424211,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Jamaica1671ogilby.jpg/320px-Jamaica1671ogilby.jpg\",\"width\":320,\"height\":256},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d9/Jamaica1671ogilby.jpg\",\"width\":4329,\"height\":3461},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224697636\",\"tid\":\"44c9676f-1632-11ef-bcf6-06b5a0690573\",\"timestamp\":\"2024-05-19T22:51:03Z\",\"description\":\"1655 English victory over Spain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":17.955,\"lon\":-76.8675},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Invasion_of_Jamaica\",\"edit\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"}},\"extract\":\"The Invasion of Jamaica took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eInvasion of Jamaica\u003c/b\u003e took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\u003c/p\u003e\",\"normalizedtitle\":\"Invasion of Jamaica\"},{\"type\":\"standard\",\"title\":\"Colony_of_Santiago\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5148521\",\"titles\":{\"canonical\":\"Colony_of_Santiago\",\"normalized\":\"Colony of Santiago\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\"},\"pageid\":34399476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/320px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/900px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224660847\",\"tid\":\"9316514f-1609-11ef-9ac4-fdfc9fced638\",\"timestamp\":\"2024-05-19T17:59:45Z\",\"description\":\"Former Spanish colony in the Caribbean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":18.18,\"lon\":-77.4},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colony_of_Santiago\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colony_of_Santiago\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colony_of_Santiago\"}},\"extract\":\"Santiago was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSantiago\u003c/b\u003e was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\u003c/p\u003e\",\"normalizedtitle\":\"Colony of Santiago\"}],\"year\":1655},{\"text\":\"Gregory II began his pontificate; his conflict with Byzantine emperor Leo III eventually led to the establishment of the temporal power of the pope.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Pope_Gregory_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q103321\",\"titles\":{\"canonical\":\"Pope_Gregory_II\",\"normalized\":\"Pope Gregory II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\"},\"pageid\":24193,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224650505\",\"tid\":\"c0f68a2c-15ff-11ef-97b2-0090790fddce\",\"timestamp\":\"2024-05-19T16:49:27Z\",\"description\":\"Head of the Catholic Church from 715 to 731\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope_Gregory_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope_Gregory_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope_Gregory_II\"}},\"extract\":\"Pope Gregory II was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePope Gregory II\u003c/b\u003e was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\u003c/p\u003e\",\"normalizedtitle\":\"Pope Gregory II\"},{\"type\":\"standard\",\"title\":\"Pope\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19546\",\"titles\":{\"canonical\":\"Pope\",\"normalized\":\"Pope\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\"},\"pageid\":23056,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg/320px-Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":991,\"height\":1316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224204527\",\"tid\":\"87d6db6d-13cd-11ef-a64a-2505ff3ede61\",\"timestamp\":\"2024-05-16T21:44:54Z\",\"description\":\"Visible head of the Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope\"}},\"extract\":\"The pope is the bishop of Rome, Patriarch of the West, and visible head of the Catholic Church. He is also known as the supreme pontiff, Roman pontiff or sovereign pontiff. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epope\u003c/b\u003e is the \u003cb\u003ebishop of Rome\u003c/b\u003e, Patriarch of the West, and visible head of the Catholic Church. He is also known as the \u003cb\u003esupreme pontiff\u003c/b\u003e, \u003cb\u003eRoman pontiff\u003c/b\u003e or \u003cb\u003esovereign pontiff\u003c/b\u003e. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\u003c/p\u003e\",\"normalizedtitle\":\"Pope\"},{\"type\":\"standard\",\"title\":\"Leo_III_the_Isaurian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q31755\",\"titles\":{\"canonical\":\"Leo_III_the_Isaurian\",\"normalized\":\"Leo III the Isaurian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\"},\"pageid\":18010,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Solidus_of_Leo_III_sb1504.png/320px-Solidus_of_Leo_III_sb1504.png\",\"width\":320,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Solidus_of_Leo_III_sb1504.png\",\"width\":737,\"height\":727},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220135113\",\"tid\":\"917753ff-0046-11ef-9551-c42353025594\",\"timestamp\":\"2024-04-22T01:20:56Z\",\"description\":\"Byzantine emperor from 717 to 741\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leo_III_the_Isaurian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"}},\"extract\":\"Leo III the Isaurian, also known as the Syrian, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLeo III the Isaurian\u003c/b\u003e, also known as \u003cb\u003ethe Syrian\u003c/b\u003e, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\u003c/p\u003e\",\"normalizedtitle\":\"Leo III the Isaurian\"},{\"type\":\"standard\",\"title\":\"Temporal_power_of_the_Holy_See\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929806\",\"titles\":{\"canonical\":\"Temporal_power_of_the_Holy_See\",\"normalized\":\"Temporal power of the Holy See\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\"},\"pageid\":92913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg/320px-Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":2000,\"height\":2996},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659303\",\"tid\":\"5138cefb-1608-11ef-a9c5-e3f810772758\",\"timestamp\":\"2024-05-19T17:50:45Z\",\"description\":\"Political and secular governmental activity of the popes of the Roman Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Temporal_power_of_the_Holy_See\",\"edit\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"}},\"extract\":\"The Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\",\"extract_html\":\"\u003cp\u003eThe Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\u003c/p\u003e\",\"normalizedtitle\":\"Temporal power of the Holy See\"}],\"year\":715}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4ea4bf1-68ae-4fea-9a09-2d98488f4055","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.30000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":391.9812,"y":2164.8926,"touch_down_time":146692,"touch_up_time":146783},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f59cbbf6-6d04-49bd-8a37-3407e690ac3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:28.12400000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":149608,"utime":140,"cutime":0,"cstime":0,"stime":66,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f910a0d0-e3c7-4a4f-a3e7-b9dbca382d3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.61400000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":561.9507,"y":1693.9453,"end_x":571.9702,"end_y":862.93945,"direction":"up","touch_down_time":144920,"touch_up_time":145077},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc4f60a5-efdb-42d0-8a15-e80956b23bcc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.60100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"08089591-26d3-460d-9b43-dc6cc16a837b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30792,"java_free_heap":934,"total_pss":106776,"rss":170832,"native_total_heap":50179,"native_free_heap":16380,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0ea7077f-db31-4286-bf7c-eaa483105bc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.26100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":144730,"end_time":144746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"23767","content-type":"multipart/form-data; boundary=79cc944f-9b6c-4752-b6ee-5ba96026539b","host":"10.0.2.2:8080","msr-req-id":"fcc3dc9c-d2a8-466e-bb07-977fcc5149d7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18c51063-26c5-492c-abcb-6aad0e56e24d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.48400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"208d9064-1182-46ef-a421-e3dabb712028","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2561541b-8988-4caf-a5a8-7a6efd9a5e73","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.96700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":146723,"end_time":147452,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lyle_Mays_(album)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:26 GMT","etag":"W/\"1208383055/4e9d9e30-0d97-11ef-a217-1363fc1489c7\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lyle Mays (album)\",\"displaytitle\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19864431\",\"titles\":{\"canonical\":\"Lyle_Mays_(album)\",\"normalized\":\"Lyle Mays (album)\",\"display\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\"},\"pageid\":44437419,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1208383055\",\"tid\":\"418dbdf9-cd6d-11ee-a7ec-97fc0569d1ed\",\"timestamp\":\"2024-02-17T08:19:23Z\",\"description\":\"1986 studio album by Lyle Mays\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lyle_Mays_(album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"}},\"extract\":\"Lyle Mays is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eLyle Mays\u003c/b\u003e\u003c/i\u003e is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"27798f58-31f1-408e-ab31-73b86888b8c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3304","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30cf2504-a3ba-46e0-840e-c021fad6e5c5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":3361,"total_pss":108948,"rss":172572,"native_total_heap":49062,"native_free_heap":17497,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"33ce23c7-de1f-478b-ae83-1b7ec9979e22","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"344d6e55-34e9-42b7-9fdc-9638b3bd9813","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"35b1ab2f-2f6d-43c8-a5b5-79b2605dc076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":146605,"utime":111,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36e67e51-0c88-49d3-8d8a-6539606183d6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.94100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.recyclerview.widget.RecyclerView","target_id":"recycler_view","x":396.958,"y":1197.9492,"end_x":416.9641,"end_y":326.9165,"direction":"up","touch_down_time":151290,"touch_up_time":151425},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3a8b0101-32e0-4046-b3da-e811a7540e1d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.32300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg","method":"get","status_code":200,"start_time":145755,"end_time":145807,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19310","content-disposition":"inline;filename*=UTF-8''Sonnets1609titlepage.jpg","content-length":"44367","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:49:35 GMT","etag":"976d014077e958ac26f62083a88f499f","last-modified":"Sun, 03 Apr 2022 16:47:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4037b2ec-6647-472e-865e-08739384566f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45084830-f27d-422b-b5ce-b6390c437ae0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45e983e2-a6a9-42c3-a63a-604207c0d792","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.12500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":651.9617,"y":2184.8877,"touch_down_time":147516,"touch_up_time":147609},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"48e0d0e6-7f1e-4fdd-8c85-ad0806ae811e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.47800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":411.9873,"y":1954.9072,"end_x":666.958,"end_y":927.9053,"direction":"up","touch_down_time":145815,"touch_up_time":145961},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c702995-5065-444d-8db1-227202d40d6f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"57cef3ac-173b-4436-86ae-3fa6dd264ae2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.79200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":145224,"end_time":145277,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37599","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/739","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"76f343b1-1190-48e9-a20c-028722efe05e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.82400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":145225,"end_time":145308,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15515","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/670","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a66cc1d-688e-4da6-9ab1-de5304209cdd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"86d34600-9ce1-4d01-911a-3481677d4ae7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.66700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145098,"end_time":145151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33074","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/851","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89035565-fd14-4c4f-849f-099911a11032","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":2262,"total_pss":109600,"rss":173272,"native_total_heap":49446,"native_free_heap":18137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89eb4c72-cdea-4909-b6f0-23d3cd68899d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.78800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145223,"end_time":145272,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19088","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/423","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8ad5d654-4e8d-4f98-8e02-ed2d571e3c1a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e41e629-06eb-4e43-b85b-0db97492baa9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8fcb6f54-314b-4d51-8a47-e3c689e20c4b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29634,"java_free_heap":3831,"total_pss":100645,"rss":164756,"native_total_heap":48800,"native_free_heap":16735,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"976bf151-8f67-454f-aa69-acf056792efb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.73200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":576.98,"y":2184.8877,"touch_down_time":147156,"touch_up_time":147216},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9afcd26c-937a-4d99-8b92-b920ca8fcacd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.55000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_settings_container","width":1080,"height":126,"x":255.95947,"y":2089.8926,"touch_down_time":148944,"touch_up_time":149031},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9e0f517b-0d6a-4255-9c31-b8ac3881c633","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a27cffff-e98d-40ca-9acb-d48714b8dce2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a6bca552-0e1e-4f63-9dbd-4719fa41fdaf","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a86096ea-4928-4dd4-b103-cd2b3a87ac68","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145110,"end_time":145160,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10131","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/338","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b382b009-437b-4431-af2b-793e88c61722","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4b9e3a3-0e26-4906-89ab-904ab0a0e231","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9260114-51c5-4c4a-835f-b62390779c35","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.10000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145536,"end_time":145584,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10159","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bae9eff0-95ac-4751-b53a-8c5a49ecff88","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.46900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":917.9407,"y":2184.8877,"touch_down_time":147818,"touch_up_time":147953},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb788b59-466a-4d6d-8071-915ae626d593","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.36400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c4010762-0d16-48d3-822c-8da25c68e4ae","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.47000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6a14eff-eb60-4f5c-8826-c7c7eef2de6e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cfd48352-67b1-417a-b908-1eccf33ae235","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149077,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e0786b5c-f430-4b3b-8344-c8558eebb671","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":152605,"utime":153,"cutime":0,"cstime":0,"stime":71,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1904600-31cf-4d05-bee3-85b0c0a8a071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e41c197d-4570-4500-a0bc-385a507802fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ecc7c6c4-705c-4735-a31b-488acb54d1f6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.16300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg","method":"get","status_code":200,"start_time":145987,"end_time":146647,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"62513","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:11:25 GMT","etag":"cd200b92cead13e3b8eff4687092b93d","last-modified":"Mon, 15 Feb 2016 04:10:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"2ux6imbes33e8twkh1v8mfaysuopgec"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f052a880-650f-470e-b02b-17bc16ce652a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.76000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f26d8986-c7a1-4ecb-b7c3-56ef978fb076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.61700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/19","method":"get","status_code":200,"start_time":146002,"end_time":146101,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"212","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"42307","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:07:56 GMT","etag":"W/7282e900-1688-11ef-897c-b7d5bc29e1be","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"Gento_(song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q120489529\",\"titles\":{\"canonical\":\"Gento_(song)\",\"normalized\":\"Gento (song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\"},\"pageid\":74134806,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224732915\",\"tid\":\"815eac62-165d-11ef-a75d-29f8ae19ee89\",\"timestamp\":\"2024-05-20T04:00:33Z\",\"description\":\"2023 single by SB19\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gento_(song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gento_(song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gento_(song)\"}},\"extract\":\"\\\"Gento\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), Pagtatag! (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eGento\u003c/b\u003e\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), \u003ci\u003ePagtatag!\u003c/i\u003e (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\u003c/p\u003e\",\"normalizedtitle\":\"Gento (song)\"},\"mostread\":{\"date\":\"2024-05-18Z\",\"articles\":[{\"views\":313188,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":30689},{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":309787,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":28032},{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":258188,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2084},{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":206582,\"rank\":7,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1072},{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":206318,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12766},{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":180281,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11410},{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":175097,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29959},{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":173476,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":121423},{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":140047,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":7721},{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":124786,\"rank\":14,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":132251},{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":102885,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":16404},{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":101987,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29319},{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":97373,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":124089},{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":97212,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2414},{\"date\":\"2024-05-15Z\",\"views\":2088},{\"date\":\"2024-05-16Z\",\"views\":1868},{\"date\":\"2024-05-17Z\",\"views\":46339},{\"date\":\"2024-05-18Z\",\"views\":97212}],\"type\":\"standard\",\"title\":\"Kim_Porter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q58772926\",\"titles\":{\"canonical\":\"Kim_Porter\",\"normalized\":\"Kim Porter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\"},\"pageid\":7599520,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224717534\",\"tid\":\"50c028ea-1648-11ef-9b2a-38fddda86f7b\",\"timestamp\":\"2024-05-20T01:28:52Z\",\"description\":\"American actress and model (1970–2018)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kim_Porter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kim_Porter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kim_Porter\"}},\"extract\":\"Kimberly Antwinette Porter was an American model, singer, actress, and entrepreneur.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKimberly Antwinette Porter\u003c/b\u003e was an American model, singer, actress, and entrepreneur.\u003c/p\u003e\",\"normalizedtitle\":\"Kim Porter\"},{\"views\":95942,\"rank\":21,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":156592},{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":95170,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2683},{\"date\":\"2024-05-15Z\",\"views\":2351},{\"date\":\"2024-05-16Z\",\"views\":3917},{\"date\":\"2024-05-17Z\",\"views\":6145},{\"date\":\"2024-05-18Z\",\"views\":95170}],\"type\":\"standard\",\"title\":\"Jai_Opetaia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2029085\",\"titles\":{\"canonical\":\"Jai_Opetaia\",\"normalized\":\"Jai Opetaia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\"},\"pageid\":35230292,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544449\",\"tid\":\"3880db33-1578-11ef-b2ce-78e240a7bbda\",\"timestamp\":\"2024-05-19T00:39:16Z\",\"description\":\"Australian boxer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jai_Opetaia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jai_Opetaia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jai_Opetaia\"}},\"extract\":\"Jai Opetaia is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the Ring magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by The Ring magazine, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJai Opetaia\u003c/b\u003e is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the \u003ci\u003eRing\u003c/i\u003e magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\u003c/p\u003e\",\"normalizedtitle\":\"Jai Opetaia\"},{\"views\":93552,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":74287},{\"date\":\"2024-05-15Z\",\"views\":26797},{\"date\":\"2024-05-16Z\",\"views\":21715},{\"date\":\"2024-05-17Z\",\"views\":24982},{\"date\":\"2024-05-18Z\",\"views\":93552}],\"type\":\"standard\",\"title\":\"King_and_Queen_of_the_Ring_(2024)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125387335\",\"titles\":{\"canonical\":\"King_and_Queen_of_the_Ring_(2024)\",\"normalized\":\"King and Queen of the Ring (2024)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\"},\"pageid\":76555552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598234\",\"tid\":\"92a5abe6-15c0-11ef-8ca3-c14dd86f7ea7\",\"timestamp\":\"2024-05-19T09:17:11Z\",\"description\":\"WWE pay-per-view and livestreaming event\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/King_and_Queen_of_the_Ring_(2024)\",\"edit\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"}},\"extract\":\"The 2024 King and Queen of the Ring is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\",\"extract_html\":\"\u003cp\u003eThe 2024 \u003cb\u003eKing and Queen of the Ring\u003c/b\u003e is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\u003c/p\u003e\",\"normalizedtitle\":\"King and Queen of the Ring (2024)\"},{\"views\":91009,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":8277},{\"date\":\"2024-05-15Z\",\"views\":7345},{\"date\":\"2024-05-16Z\",\"views\":17391},{\"date\":\"2024-05-17Z\",\"views\":166840},{\"date\":\"2024-05-18Z\",\"views\":91009}],\"type\":\"standard\",\"title\":\"Scottie_Scheffler\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30161386\",\"titles\":{\"canonical\":\"Scottie_Scheffler\",\"normalized\":\"Scottie Scheffler\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\"},\"pageid\":54256563,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Scottie_Scheffler_2023_01.jpg\",\"width\":2160,\"height\":2810},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708630\",\"tid\":\"bc04f967-163e-11ef-8873-eb723fdd694e\",\"timestamp\":\"2024-05-20T00:20:17Z\",\"description\":\"American professional golfer (born 1996)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Scottie_Scheffler\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Scottie_Scheffler\",\"edit\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Scottie_Scheffler\"}},\"extract\":\"Scott Alexander Scheffler is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eScott Alexander Scheffler\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Scottie Scheffler\"},{\"views\":90587,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":115179},{\"date\":\"2024-05-15Z\",\"views\":69342},{\"date\":\"2024-05-16Z\",\"views\":69593},{\"date\":\"2024-05-17Z\",\"views\":147233},{\"date\":\"2024-05-18Z\",\"views\":90587}],\"type\":\"standard\",\"title\":\"Megalopolis_(film)\",\"displaytitle\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115175910\",\"titles\":{\"canonical\":\"Megalopolis_(film)\",\"normalized\":\"Megalopolis (film)\",\"display\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\"},\"pageid\":68613611,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740437\",\"tid\":\"2b432f30-1668-11ef-a77e-261586f5d22c\",\"timestamp\":\"2024-05-20T05:16:53Z\",\"description\":\"2024 American film by Francis Ford Coppola\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Megalopolis_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Megalopolis_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Megalopolis_(film)\"}},\"extract\":\"Megalopolis is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMegalopolis\u003c/b\u003e\u003c/i\u003e is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\u003c/p\u003e\",\"normalizedtitle\":\"Megalopolis (film)\"},{\"views\":90539,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35952},{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":88106,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13},{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":83151,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":44092},{\"date\":\"2024-05-15Z\",\"views\":157285},{\"date\":\"2024-05-16Z\",\"views\":211035},{\"date\":\"2024-05-17Z\",\"views\":156773},{\"date\":\"2024-05-18Z\",\"views\":83151}],\"type\":\"standard\",\"title\":\"Harrison_Butker\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29618209\",\"titles\":{\"canonical\":\"Harrison_Butker\",\"normalized\":\"Harrison Butker\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\"},\"pageid\":53917703,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg/320px-Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":900,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224679064\",\"tid\":\"a717789b-161c-11ef-8882-898100b30e1e\",\"timestamp\":\"2024-05-19T20:16:19Z\",\"description\":\"American football player (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Harrison_Butker\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Harrison_Butker\",\"edit\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Harrison_Butker\"}},\"extract\":\"Harrison Butker Jr. is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHarrison Butker Jr.\u003c/b\u003e is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\u003c/p\u003e\",\"normalizedtitle\":\"Harrison Butker\"},{\"views\":80753,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":471},{\"date\":\"2024-05-15Z\",\"views\":780},{\"date\":\"2024-05-16Z\",\"views\":3830},{\"date\":\"2024-05-17Z\",\"views\":15501},{\"date\":\"2024-05-18Z\",\"views\":80753}],\"type\":\"standard\",\"title\":\"Sahith_Theegala\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q96198068\",\"titles\":{\"canonical\":\"Sahith_Theegala\",\"normalized\":\"Sahith Theegala\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\"},\"pageid\":64237652,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Sahith-25th.jpg/320px-Sahith-25th.jpg\",\"width\":320,\"height\":347},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Sahith-25th.jpg\",\"width\":2616,\"height\":2840},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224719451\",\"tid\":\"e2c93c81-164a-11ef-a910-3958271375b5\",\"timestamp\":\"2024-05-20T01:47:16Z\",\"description\":\"American professional golfer (born 1997)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sahith_Theegala\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sahith_Theegala\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sahith_Theegala\"}},\"extract\":\"Sahith Reddy Theegala is an American professional golfer who plays on the PGA Tour.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSahith Reddy Theegala\u003c/b\u003e is an American professional golfer who plays on the PGA Tour.\u003c/p\u003e\",\"normalizedtitle\":\"Sahith Theegala\"},{\"views\":80204,\"rank\":30,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":10365},{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":76764,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":73293},{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":75258,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":66948},{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":74546,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":94182},{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":72976,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":82266},{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":72570,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":178},{\"date\":\"2024-05-15Z\",\"views\":651},{\"date\":\"2024-05-16Z\",\"views\":209},{\"date\":\"2024-05-17Z\",\"views\":194},{\"date\":\"2024-05-18Z\",\"views\":72570}],\"type\":\"standard\",\"title\":\"Josh_Murphy\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15063227\",\"titles\":{\"canonical\":\"Josh_Murphy\",\"normalized\":\"Josh Murphy\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\"},\"pageid\":40621885,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Josh_Murphy_%28cropped%29.jpg/320px-Josh_Murphy_%28cropped%29.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1b/Josh_Murphy_%28cropped%29.jpg\",\"width\":1052,\"height\":870},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224621995\",\"tid\":\"803b473e-15e0-11ef-930b-e2333d6c009d\",\"timestamp\":\"2024-05-19T13:05:44Z\",\"description\":\"English footballer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Josh_Murphy\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Josh_Murphy\",\"edit\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Josh_Murphy\"}},\"extract\":\"Joshua Murphy is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJoshua Murphy\u003c/b\u003e is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\u003c/p\u003e\",\"normalizedtitle\":\"Josh Murphy\"},{\"views\":71013,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11624},{\"date\":\"2024-05-15Z\",\"views\":10961},{\"date\":\"2024-05-16Z\",\"views\":46576},{\"date\":\"2024-05-17Z\",\"views\":76033},{\"date\":\"2024-05-18Z\",\"views\":71013}],\"type\":\"standard\",\"title\":\"List_of_Bridgerton_characters\",\"displaytitle\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114397633\",\"titles\":{\"canonical\":\"List_of_Bridgerton_characters\",\"normalized\":\"List of Bridgerton characters\",\"display\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\"},\"pageid\":70283542,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224201881\",\"tid\":\"5230eb7a-13cb-11ef-a944-139eed651948\",\"timestamp\":\"2024-05-16T21:29:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Bridgerton_characters\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"}},\"extract\":\"\\n\\nBridgerton is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's ton during the season, when debutantes are presented at court.\",\"extract_html\":\"\u003cp\u003e\\n\\n\u003ci\u003eBridgerton\u003c/i\u003e is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's \u003ci\u003eton\u003c/i\u003e during the season, when debutantes are presented at court.\u003c/p\u003e\",\"normalizedtitle\":\"List of Bridgerton characters\"},{\"views\":70938,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":27402},{\"date\":\"2024-05-15Z\",\"views\":30905},{\"date\":\"2024-05-16Z\",\"views\":41972},{\"date\":\"2024-05-17Z\",\"views\":104626},{\"date\":\"2024-05-18Z\",\"views\":70938}],\"type\":\"standard\",\"title\":\"Swati_Maliwal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57163890\",\"titles\":{\"canonical\":\"Swati_Maliwal\",\"normalized\":\"Swati Maliwal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\"},\"pageid\":57188078,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Maliwal.png/320px-Maliwal.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/Maliwal.png\",\"width\":513,\"height\":511},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224599172\",\"tid\":\"f7adc488-15c1-11ef-93f2-7e66d49246dd\",\"timestamp\":\"2024-05-19T09:27:10Z\",\"description\":\"Indian social activist and politician (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Swati_Maliwal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Swati_Maliwal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Swati_Maliwal\"}},\"extract\":\"Swati Maliwal is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSwati Maliwal\u003c/b\u003e is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Swati Maliwal\"},{\"views\":69610,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":750},{\"date\":\"2024-05-15Z\",\"views\":981},{\"date\":\"2024-05-16Z\",\"views\":2261},{\"date\":\"2024-05-17Z\",\"views\":84090},{\"date\":\"2024-05-18Z\",\"views\":69610}],\"type\":\"standard\",\"title\":\"Jasmine_Crockett\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q101428652\",\"titles\":{\"canonical\":\"Jasmine_Crockett\",\"normalized\":\"Jasmine Crockett\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\"},\"pageid\":65802177,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg/320px-Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":2348,\"height\":3116},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725353\",\"tid\":\"0abca4dd-1653-11ef-ad67-d2e1cd85f371\",\"timestamp\":\"2024-05-20T02:45:39Z\",\"description\":\"American attorney and politician (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jasmine_Crockett\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jasmine_Crockett\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jasmine_Crockett\"}},\"extract\":\"Jasmine Felicia Crockett is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJasmine Felicia Crockett\u003c/b\u003e is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\u003c/p\u003e\",\"normalizedtitle\":\"Jasmine Crockett\"},{\"views\":69177,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35045},{\"date\":\"2024-05-15Z\",\"views\":30855},{\"date\":\"2024-05-16Z\",\"views\":27516},{\"date\":\"2024-05-17Z\",\"views\":46573},{\"date\":\"2024-05-18Z\",\"views\":69177}],\"type\":\"standard\",\"title\":\"Jake_Paul_vs._Mike_Tyson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125101707\",\"titles\":{\"canonical\":\"Jake_Paul_vs._Mike_Tyson\",\"normalized\":\"Jake Paul vs. Mike Tyson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\"},\"pageid\":76285553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224498961\",\"tid\":\"f6dc3af7-154f-11ef-a055-84eba5f1aaf7\",\"timestamp\":\"2024-05-18T19:51:06Z\",\"description\":\"Upcoming professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jake_Paul_vs._Mike_Tyson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"}},\"extract\":\"Jake Paul vs. Mike Tyson is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJake Paul vs. Mike Tyson\u003c/b\u003e is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026amp;T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\u003c/p\u003e\",\"normalizedtitle\":\"Jake Paul vs. Mike Tyson\"},{\"views\":68671,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12810},{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":66992,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":619},{\"date\":\"2024-05-15Z\",\"views\":665},{\"date\":\"2024-05-16Z\",\"views\":949},{\"date\":\"2024-05-17Z\",\"views\":2300},{\"date\":\"2024-05-18Z\",\"views\":66992}],\"type\":\"standard\",\"title\":\"Anthony_Cacace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83947153\",\"titles\":{\"canonical\":\"Anthony_Cacace\",\"normalized\":\"Anthony Cacace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\"},\"pageid\":62929955,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224701322\",\"tid\":\"1a2ddd29-1637-11ef-b994-c3e82e574101\",\"timestamp\":\"2024-05-19T23:25:39Z\",\"description\":\"British boxer (born 1989)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anthony_Cacace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anthony_Cacace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anthony_Cacace\"}},\"extract\":\"Anthony Cacace is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAnthony Cacace\u003c/b\u003e is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\u003c/p\u003e\",\"normalizedtitle\":\"Anthony Cacace\"},{\"views\":64602,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":49394},{\"date\":\"2024-05-15Z\",\"views\":42503},{\"date\":\"2024-05-16Z\",\"views\":58547},{\"date\":\"2024-05-17Z\",\"views\":113941},{\"date\":\"2024-05-18Z\",\"views\":64602}],\"type\":\"standard\",\"title\":\"Young_Sheldon\",\"displaytitle\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30014613\",\"titles\":{\"canonical\":\"Young_Sheldon\",\"normalized\":\"Young Sheldon\",\"display\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\"},\"pageid\":53475669,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618691\",\"tid\":\"4cf6d779-15dc-11ef-be3a-58d7a57d8366\",\"timestamp\":\"2024-05-19T12:35:40Z\",\"description\":\"American television sitcom (2017–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Young_Sheldon\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Young_Sheldon\",\"edit\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Young_Sheldon\"}},\"extract\":\"Young Sheldon is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to The Big Bang Theory that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on The Big Bang Theory, narrates the series and is also an executive producer.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eYoung Sheldon\u003c/b\u003e\u003c/i\u003e is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to \u003ci\u003eThe Big Bang Theory\u003c/i\u003e that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on \u003ci\u003eThe Big Bang Theory\u003c/i\u003e, narrates the series and is also an executive producer.\u003c/p\u003e\",\"normalizedtitle\":\"Young Sheldon\"},{\"views\":64141,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11567},{\"date\":\"2024-05-15Z\",\"views\":14244},{\"date\":\"2024-05-16Z\",\"views\":23714},{\"date\":\"2024-05-17Z\",\"views\":86421},{\"date\":\"2024-05-18Z\",\"views\":64141}],\"type\":\"standard\",\"title\":\"Billie_Eilish\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29564107\",\"titles\":{\"canonical\":\"Billie_Eilish\",\"normalized\":\"Billie Eilish\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\"},\"pageid\":53785363,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Billie_Eilish_Vogue_2023.jpg/320px-Billie_Eilish_Vogue_2023.jpg\",\"width\":320,\"height\":470},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/42/Billie_Eilish_Vogue_2023.jpg\",\"width\":461,\"height\":677},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598409\",\"tid\":\"cf718210-15c0-11ef-8cc1-d49e286fa600\",\"timestamp\":\"2024-05-19T09:18:53Z\",\"description\":\"American singer-songwriter (born 2001)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Billie_Eilish\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Billie_Eilish\",\"edit\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Billie_Eilish\"}},\"extract\":\"Billie Eilish Pirate Baird O'Connell is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), Don't Smile at Me. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBillie Eilish Pirate Baird O'Connell\u003c/b\u003e is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), \u003ci\u003eDon't Smile at Me\u003c/i\u003e. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\u003c/p\u003e\",\"normalizedtitle\":\"Billie Eilish\"},{\"views\":62463,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":787},{\"date\":\"2024-05-15Z\",\"views\":668},{\"date\":\"2024-05-16Z\",\"views\":15035},{\"date\":\"2024-05-17Z\",\"views\":51039},{\"date\":\"2024-05-18Z\",\"views\":62463}],\"type\":\"standard\",\"title\":\"Ty_Olsson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q552972\",\"titles\":{\"canonical\":\"Ty_Olsson\",\"normalized\":\"Ty Olsson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\"},\"pageid\":5512162,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Ty_Olsson.jpg/320px-Ty_Olsson.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Ty_Olsson.jpg\",\"width\":2135,\"height\":3203},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760969\",\"tid\":\"44f355b5-1686-11ef-8358-870a76034846\",\"timestamp\":\"2024-05-20T08:52:21Z\",\"description\":\"Canadian actor (born 1974)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ty_Olsson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ty_Olsson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ty_Olsson\"}},\"extract\":\"Ty Victor Olsson is a Canadian actor. He is known for playing Benny Lafitte in Supernatural, real-life 9/11 victim Mark Bingham in the A\u0026E television film Flight 93, and Ord in the PBS Kids animated children's series Dragon Tales.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTy Victor Olsson\u003c/b\u003e is a Canadian actor. He is known for playing Benny Lafitte in \u003ci\u003eSupernatural\u003c/i\u003e, real-life 9/11 victim Mark Bingham in the A\u0026amp;E television film \u003ci\u003eFlight 93\u003c/i\u003e, and Ord in the PBS Kids animated children's series \u003ci\u003eDragon Tales\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Ty Olsson\"},{\"views\":61352,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":99711},{\"date\":\"2024-05-15Z\",\"views\":81344},{\"date\":\"2024-05-16Z\",\"views\":69417},{\"date\":\"2024-05-17Z\",\"views\":59465},{\"date\":\"2024-05-18Z\",\"views\":61352}],\"type\":\"standard\",\"title\":\"Richard_Gadd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q28136502\",\"titles\":{\"canonical\":\"Richard_Gadd\",\"normalized\":\"Richard Gadd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\"},\"pageid\":52517837,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696950\",\"tid\":\"6d04a182-1631-11ef-801f-cfcaf3aa595e\",\"timestamp\":\"2024-05-19T22:45:01Z\",\"description\":\"Scottish writer, actor and comedian (born 1989/1990)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Richard_Gadd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Richard_Gadd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Richard_Gadd\"}},\"extract\":\"Richard Craig Steven Gadd is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series Baby Reindeer, based on his one-man show and his real-life experience.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRichard Craig Steven Gadd\u003c/b\u003e is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series \u003ci\u003eBaby Reindeer\u003c/i\u003e, based on his one-man show and his real-life experience.\u003c/p\u003e\",\"normalizedtitle\":\"Richard Gadd\"},{\"views\":61211,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1659},{\"date\":\"2024-05-15Z\",\"views\":1781},{\"date\":\"2024-05-16Z\",\"views\":2622},{\"date\":\"2024-05-17Z\",\"views\":4405},{\"date\":\"2024-05-18Z\",\"views\":61211}],\"type\":\"standard\",\"title\":\"Mairis_Briedis\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1101673\",\"titles\":{\"canonical\":\"Mairis_Briedis\",\"normalized\":\"Mairis Briedis\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\"},\"pageid\":41168292,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Mairis_Briedis_2018.jpg/320px-Mairis_Briedis_2018.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/da/Mairis_Briedis_2018.jpg\",\"width\":5616,\"height\":3744},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224707864\",\"tid\":\"ed310361-163d-11ef-bd6a-5c31927d892d\",\"timestamp\":\"2024-05-20T00:14:30Z\",\"description\":\"Latvian boxer (born 1985)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mairis_Briedis\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mairis_Briedis\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mairis_Briedis\"}},\"extract\":\"Mairis Briedis is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and Ring titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by The Ring magazine, BoxRec, and second by the Transnational Boxing Rankings Board.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMairis Briedis \u003c/b\u003e is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and \u003cspan\u003e\u003ci\u003eRing\u003c/i\u003e\u003c/span\u003e titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, BoxRec, and second by the Transnational Boxing Rankings Board.\u003c/p\u003e\",\"normalizedtitle\":\"Mairis Briedis\"},{\"views\":61183,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13055},{\"date\":\"2024-05-15Z\",\"views\":16220},{\"date\":\"2024-05-16Z\",\"views\":26544},{\"date\":\"2024-05-17Z\",\"views\":54308},{\"date\":\"2024-05-18Z\",\"views\":61183}],\"type\":\"standard\",\"title\":\"The_Strangers:_Chapter_1\",\"displaytitle\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114073140\",\"titles\":{\"canonical\":\"The_Strangers:_Chapter_1\",\"normalized\":\"The Strangers: Chapter 1\",\"display\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\"},\"pageid\":71757646,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761371\",\"tid\":\"e084dfc2-1686-11ef-8a79-5b1f5e041bac\",\"timestamp\":\"2024-05-20T08:56:42Z\",\"description\":\"2024 film by Renny Harlin\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Strangers%3A_Chapter_1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"}},\"extract\":\"The Strangers: Chapter 1 is a 2024 American horror film that is the third film in The Strangers film series and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eThe Strangers: Chapter 1\u003c/b\u003e\u003c/i\u003e is a 2024 American horror film that is the third film in \u003cspan\u003e\u003ci\u003eThe Strangers\u003c/i\u003e film series\u003c/span\u003e and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\u003c/p\u003e\",\"normalizedtitle\":\"The Strangers: Chapter 1\"},{\"views\":60145,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":72},{\"date\":\"2024-05-15Z\",\"views\":85},{\"date\":\"2024-05-16Z\",\"views\":78},{\"date\":\"2024-05-17Z\",\"views\":517},{\"date\":\"2024-05-18Z\",\"views\":60145}],\"type\":\"standard\",\"title\":\"George_Rose_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1480761\",\"titles\":{\"canonical\":\"George_Rose_(actor)\",\"normalized\":\"George Rose (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\"},\"pageid\":5517058,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224589537\",\"tid\":\"1c029181-15b4-11ef-860f-60a111009a67\",\"timestamp\":\"2024-05-19T07:47:58Z\",\"description\":\"English actor and singer (1920–1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:George_Rose_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/George_Rose_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:George_Rose_(actor)\"}},\"extract\":\"George Walter Rose was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in My Fair Lady and The Mystery of Edwin Drood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGeorge Walter Rose\u003c/b\u003e was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in \u003ci\u003eMy Fair Lady\u003c/i\u003e and \u003ci\u003eThe Mystery of Edwin Drood\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"George Rose (actor)\"}]},\"image\":{\"title\":\"File:Palacio Belvedere, Viena, Austria, 2020-02-01, DD 93-95 HDR.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg/640px-Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":640,\"height\":282},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":7785,\"height\":3428},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Palacio_Belvedere,_Viena,_Austria,_2020-02-01,_DD_93-95_HDR.jpg\",\"artist\":{\"html\":\"\u003cbdi\u003e\u003ca href=\\\"https://www.wikidata.org/wiki/Q28147777\\\" class=\\\"extiw\\\" title=\\\"d:Q28147777\\\"\u003e\u003cspan title=\\\"Spanish photographer (1974-)\\\"\u003eDiego Delso\u003c/span\u003e\u003c/a\u003e\\n\u003c/bdi\u003e\",\"text\":\"Diego Delso\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"View of the Upper \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Belvedere,%20Vienna\\\" title=\\\"en:Belvedere, Vienna\\\" class=\\\"extiw\\\"\u003eBelvedere Palace\u003c/a\u003e during the blue hour, \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Vienna\\\" title=\\\"en:Vienna\\\" class=\\\"extiw\\\"\u003eVienna\u003c/a\u003e, Austria.\",\"text\":\"View of the Upper Belvedere Palace during the blue hour, Vienna, Austria.\",\"lang\":\"en\"},\"wb_entity_id\":\"M93730887\",\"structured\":{\"captions\":{\"en\":\"Belvedere Palace, Vienna, Austria\"}}},\"onthisday\":[{\"text\":\"The wedding of Prince Harry and Meghan Markle (both pictured) took place at St George's Chapel in Windsor Castle, England.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q43890449\",\"titles\":{\"canonical\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"normalized\":\"Wedding of Prince Harry and Meghan Markle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\"},\"pageid\":55772605,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg/320px-Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":829,\"height\":830},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543782\",\"tid\":\"b1cbf944-1577-11ef-9c44-c050daffd9b5\",\"timestamp\":\"2024-05-19T00:35:30Z\",\"description\":\"2018 British royal wedding\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"}},\"extract\":\"The wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\",\"extract_html\":\"\u003cp\u003eThe wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\u003c/p\u003e\",\"normalizedtitle\":\"Wedding of Prince Harry and Meghan Markle\"},{\"type\":\"standard\",\"title\":\"Prince_Harry,_Duke_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q152316\",\"titles\":{\"canonical\":\"Prince_Harry,_Duke_of_Sussex\",\"normalized\":\"Prince Harry, Duke of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\"},\"pageid\":14457,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg/320px-Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":320,\"height\":476},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":766,\"height\":1139},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700127\",\"tid\":\"b0f9baa6-1635-11ef-a588-ac19c543074d\",\"timestamp\":\"2024-05-19T23:15:33Z\",\"description\":\"Member of the British royal family (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prince_Harry%2C_Duke_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"}},\"extract\":\"Prince Harry, Duke of Sussex, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrince Harry, Duke of Sussex\u003c/b\u003e, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\u003c/p\u003e\",\"normalizedtitle\":\"Prince Harry, Duke of Sussex\"},{\"type\":\"standard\",\"title\":\"Meghan,_Duchess_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3304418\",\"titles\":{\"canonical\":\"Meghan,_Duchess_of_Sussex\",\"normalized\":\"Meghan, Duchess of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\"},\"pageid\":11214029,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg/320px-SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":320,\"height\":414},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":1125,\"height\":1455},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700330\",\"tid\":\"f74f0064-1635-11ef-888b-c34b778b4454\",\"timestamp\":\"2024-05-19T23:17:31Z\",\"description\":\"Member of the British royal family and former actress (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Meghan%2C_Duchess_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"}},\"extract\":\"Meghan, Duchess of Sussex is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMeghan, Duchess of Sussex\u003c/b\u003e is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\u003c/p\u003e\",\"normalizedtitle\":\"Meghan, Duchess of Sussex\"},{\"type\":\"standard\",\"title\":\"St_George's_Chapel,_Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2449634\",\"titles\":{\"canonical\":\"St_George's_Chapel,_Windsor_Castle\",\"normalized\":\"St George's Chapel, Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\"},\"pageid\":23910568,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg/320px-St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":320,\"height\":207},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":5473,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544013\",\"tid\":\"df18a7f7-1577-11ef-8b2d-d8013abaa55a\",\"timestamp\":\"2024-05-19T00:36:46Z\",\"description\":\"Royal chapel in Windsor Castle, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48361111,\"lon\":-0.60694444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/St_George's_Chapel%2C_Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"}},\"extract\":\"St George's Chapel at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSt George's Chapel\u003c/b\u003e at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\u003c/p\u003e\",\"normalizedtitle\":\"St George's Chapel, Windsor Castle\"},{\"type\":\"standard\",\"title\":\"Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q42646\",\"titles\":{\"canonical\":\"Windsor_Castle\",\"normalized\":\"Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\"},\"pageid\":4689517,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg/320px-Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":3990,\"height\":2659},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222667833\",\"tid\":\"e8814e48-0c40-11ef-b6d5-e858c3d22445\",\"timestamp\":\"2024-05-07T07:10:39Z\",\"description\":\"Official country residence of British monarch\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48333333,\"lon\":-0.60416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Windsor_Castle\"}},\"extract\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWindsor Castle\u003c/b\u003e is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\u003c/p\u003e\",\"normalizedtitle\":\"Windsor Castle\"}],\"year\":2018},{\"text\":\"A corroded pipeline near Refugio State Beach, California, spilled 142,800 gallons (3,400 barrels) of crude oil onto the Gaviota Coast.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Refugio_State_Beach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7307687\",\"titles\":{\"canonical\":\"Refugio_State_Beach\",\"normalized\":\"Refugio State Beach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\"},\"pageid\":8943321,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Refugio_state_beach_2.jpg/320px-Refugio_state_beach_2.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Refugio_state_beach_2.jpg\",\"width\":4928,\"height\":3264},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155652963\",\"tid\":\"8080cffd-f5f7-11ed-b634-76bd314dbd84\",\"timestamp\":\"2023-05-19T03:44:48Z\",\"description\":\"State beach in Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.46222222,\"lon\":-120.0725},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_State_Beach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_State_Beach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_State_Beach\"}},\"extract\":\"\\n\\nRefugio State Beach is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\n\u003cb\u003eRefugio State Beach\u003c/b\u003e is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio State Beach\"},{\"type\":\"standard\",\"title\":\"Refugio_oil_spill\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19949553\",\"titles\":{\"canonical\":\"Refugio_oil_spill\",\"normalized\":\"Refugio oil spill\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\"},\"pageid\":46752557,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg/320px-Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":640,\"height\":427},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223808546\",\"tid\":\"ab4a239c-11fb-11ef-b78b-23bfbccf1884\",\"timestamp\":\"2024-05-14T14:10:08Z\",\"description\":\"2015 pipeline leak on the coast of California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.4625,\"lon\":-120.08638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_oil_spill\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_oil_spill\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_oil_spill\"}},\"extract\":\"The Refugio oil spill on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRefugio oil spill\u003c/b\u003e on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio oil spill\"},{\"type\":\"standard\",\"title\":\"Gaviota_Coast\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104856587\",\"titles\":{\"canonical\":\"Gaviota_Coast\",\"normalized\":\"Gaviota Coast\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\"},\"pageid\":65303237,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223891497\",\"tid\":\"2c3310c7-1250-11ef-8a7b-6949b0e83b8b\",\"timestamp\":\"2024-05-15T00:15:02Z\",\"description\":\"Rural area of Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.47083333,\"lon\":-120.22472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gaviota_Coast\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gaviota_Coast\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gaviota_Coast\"}},\"extract\":\"The Gaviota Coast in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eGaviota Coast\u003c/b\u003e in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\u003c/p\u003e\",\"normalizedtitle\":\"Gaviota Coast\"}],\"year\":2015},{\"text\":\"In Bangkok, the Thai military (pictured) concluded a week-long crackdown on widespread protests by forcing the surrender of opposition leaders.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Royal_Thai_Armed_Forces\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q947702\",\"titles\":{\"canonical\":\"Royal_Thai_Armed_Forces\",\"normalized\":\"Royal Thai Armed Forces\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\"},\"pageid\":30136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/320px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":320,\"height\":221},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/435px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":435,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222282804\",\"tid\":\"f50a8985-0a7f-11ef-af5b-b44a4e859d86\",\"timestamp\":\"2024-05-05T01:36:56Z\",\"description\":\"National military of Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Royal_Thai_Armed_Forces\",\"edit\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"}},\"extract\":\"The Royal Thai Armed Forces (RTARF) are the armed forces of the Kingdom of Thailand.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRoyal Thai Armed Forces\u003c/b\u003e (RTARF) are the armed forces of the Kingdom of Thailand.\u003c/p\u003e\",\"normalizedtitle\":\"Royal Thai Armed Forces\"},{\"type\":\"standard\",\"title\":\"2010_Thai_military_crackdown\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3428188\",\"titles\":{\"canonical\":\"2010_Thai_military_crackdown\",\"normalized\":\"2010 Thai military crackdown\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\"},\"pageid\":27408756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/2010_Bangkok_unrest_aftermath.jpg/320px-2010_Bangkok_unrest_aftermath.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a3/2010_Bangkok_unrest_aftermath.jpg\",\"width\":1069,\"height\":1600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222537505\",\"tid\":\"343ae1cf-0bb6-11ef-b1fa-515e9d08b245\",\"timestamp\":\"2024-05-06T14:37:46Z\",\"description\":\"Violent state suppression of pro-democracy protests in Bangkok, Thailand (April–May 2010)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_military_crackdown\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"}},\"extract\":\"On 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\",\"extract_html\":\"\u003cp\u003eOn 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai military crackdown\"},{\"type\":\"standard\",\"title\":\"2010_Thai_political_protests\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1059090\",\"titles\":{\"canonical\":\"2010_Thai_political_protests\",\"normalized\":\"2010 Thai political protests\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\"},\"pageid\":26906468,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg/320px-UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":500,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222389315\",\"tid\":\"25e6c6be-0b11-11ef-a047-52962ca39323\",\"timestamp\":\"2024-05-05T18:56:15Z\",\"description\":\"2010 pro-democracy protests in Thailand violently suppressed by the military\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_political_protests\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"}},\"extract\":\"The 2010 Thai political protests were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2010 Thai political protests\u003c/b\u003e were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai political protests\"},{\"type\":\"standard\",\"title\":\"United_Front_for_Democracy_Against_Dictatorship\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1322759\",\"titles\":{\"canonical\":\"United_Front_for_Democracy_Against_Dictatorship\",\"normalized\":\"United Front for Democracy Against Dictatorship\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\"},\"pageid\":19107241,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192004794\",\"tid\":\"01426aa8-a460-11ee-8e5d-22b37635c7ff\",\"timestamp\":\"2023-12-27T02:31:14Z\",\"description\":\"Pro-democracy political pressure group in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_Front_for_Democracy_Against_Dictatorship\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"}},\"extract\":\"The United Front for Democracy Against Dictatorship (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited Front for Democracy Against Dictatorship\u003c/b\u003e (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\u003c/p\u003e\",\"normalizedtitle\":\"United Front for Democracy Against Dictatorship\"}],\"year\":2010},{\"text\":\"The Sierra Gorda Biosphere, which encompasses the most ecologically diverse region in Mexico, was established as a result of grassroots efforts.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Sierra_Gorda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3292893\",\"titles\":{\"canonical\":\"Sierra_Gorda\",\"normalized\":\"Sierra Gorda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\"},\"pageid\":4336092,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/85/SierraGordaWaterfall.JPG/320px-SierraGordaWaterfall.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/85/SierraGordaWaterfall.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1188237276\",\"tid\":\"122fec7d-9257-11ee-a201-8adbf99575c9\",\"timestamp\":\"2023-12-04T03:41:56Z\",\"description\":\"Ecoregion in the Mexican states of Querétaro, Guanajuato, Hidalgo, and San Luis Potosí\",\"description_source\":\"local\",\"coordinates\":{\"lat\":21.31083333,\"lon\":-99.66805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sierra_Gorda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sierra_Gorda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sierra_Gorda\"}},\"extract\":\"The Sierra Gorda is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km2 of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSierra Gorda\u003c/b\u003e is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km\u003csup\u003e2\u003c/sup\u003e of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\u003c/p\u003e\",\"normalizedtitle\":\"Sierra Gorda\"},{\"type\":\"standard\",\"title\":\"Ecosystem_diversity\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q842388\",\"titles\":{\"canonical\":\"Ecosystem_diversity\",\"normalized\":\"Ecosystem diversity\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\"},\"pageid\":524396,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/BlueMarble-2001-2002.jpg/320px-BlueMarble-2001-2002.jpg\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/BlueMarble-2001-2002.jpg\",\"width\":4096,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215311327\",\"tid\":\"0f552812-e9c9-11ee-84bc-8f2eca1e47cb\",\"timestamp\":\"2024-03-24T10:27:05Z\",\"description\":\"Diversity and variations in ecosystems\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ecosystem_diversity\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ecosystem_diversity\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ecosystem_diversity\"}},\"extract\":\"Ecosystem diversity deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEcosystem diversity\u003c/b\u003e deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\u003c/p\u003e\",\"normalizedtitle\":\"Ecosystem diversity\"},{\"type\":\"standard\",\"title\":\"Grassroots\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929651\",\"titles\":{\"canonical\":\"Grassroots\",\"normalized\":\"Grassroots\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\"},\"pageid\":451914,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222480667\",\"tid\":\"029c3ce0-0b6a-11ef-b302-3e10943cc4cf\",\"timestamp\":\"2024-05-06T05:32:21Z\",\"description\":\"Movement based on local communities\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.wikipedia.org/wiki/Grassroots?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Grassroots\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Grassroots\",\"edit\":\"https://en.m.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Grassroots\"}},\"extract\":\"A grassroots movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egrassroots\u003c/b\u003e movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\u003c/p\u003e\",\"normalizedtitle\":\"Grassroots\"}],\"year\":1997},{\"text\":\"Breakup of Yugoslavia: With the local Serb population boycotting the referendum, Croatians voted in favour of independence from Yugoslavia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Breakup_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4390259\",\"titles\":{\"canonical\":\"Breakup_of_Yugoslavia\",\"normalized\":\"Breakup of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\"},\"pageid\":2060900,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Breakup_of_Yugoslavia.gif/320px-Breakup_of_Yugoslavia.gif\",\"width\":320,\"height\":257},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Breakup_of_Yugoslavia.gif\",\"width\":1545,\"height\":1242},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387764\",\"tid\":\"39a2fcc6-14c1-11ef-b1f8-1bcb892b5cfa\",\"timestamp\":\"2024-05-18T02:49:20Z\",\"description\":\"1991–92 Balkan political conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Breakup_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"}},\"extract\":\"After a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\",\"extract_html\":\"\u003cp\u003eAfter a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\u003c/p\u003e\",\"normalizedtitle\":\"Breakup of Yugoslavia\"},{\"type\":\"standard\",\"title\":\"Serbs_of_Croatia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1280677\",\"titles\":{\"canonical\":\"Serbs_of_Croatia\",\"normalized\":\"Serbs of Croatia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\"},\"pageid\":3690204,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/320px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/1200px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":1200,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388423\",\"tid\":\"d82f60ff-14c1-11ef-b39c-0dcebd917f73\",\"timestamp\":\"2024-05-18T02:53:46Z\",\"description\":\"National minority in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Serbs_of_Croatia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"}},\"extract\":\"The Serbs of Croatia or Croatian Serbs constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSerbs of Croatia\u003c/b\u003e or \u003cb\u003eCroatian Serbs\u003c/b\u003e constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\u003c/p\u003e\",\"normalizedtitle\":\"Serbs of Croatia\"},{\"type\":\"standard\",\"title\":\"1991_Croatian_independence_referendum\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3085493\",\"titles\":{\"canonical\":\"1991_Croatian_independence_referendum\",\"normalized\":\"1991 Croatian independence referendum\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\"},\"pageid\":11781428,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223346108\",\"tid\":\"befa4b5a-0fa1-11ef-a572-15b6c106e2e6\",\"timestamp\":\"2024-05-11T14:21:24Z\",\"description\":\"1991 vote in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/1991_Croatian_independence_referendum\",\"edit\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"}},\"extract\":\"Croatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\",\"extract_html\":\"\u003cp\u003eCroatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\u003c/p\u003e\",\"normalizedtitle\":\"1991 Croatian independence referendum\"},{\"type\":\"standard\",\"title\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83286\",\"titles\":{\"canonical\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"normalized\":\"Socialist Federal Republic of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\"},\"pageid\":297809,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/320px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/1000px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":1000,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224486458\",\"tid\":\"4c12579a-1544-11ef-ade1-e44966f423b1\",\"timestamp\":\"2024-05-18T18:27:35Z\",\"description\":\"European socialist state (1945–1992)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.82,\"lon\":20.4275},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Socialist_Federal_Republic_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"}},\"extract\":\"The Socialist Federal Republic of Yugoslavia (SFRY), commonly referred to as SFR Yugoslavia or Socialist Yugoslavia or simply as Yugoslavia, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSocialist Federal Republic of Yugoslavia\u003c/b\u003e (\u003cb\u003eSFRY\u003c/b\u003e), commonly referred to as \u003cb\u003eSFR Yugoslavia\u003c/b\u003e or \u003cb\u003eSocialist Yugoslavia\u003c/b\u003e or simply as \u003cb\u003eYugoslavia\u003c/b\u003e, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\u003c/p\u003e\",\"normalizedtitle\":\"Socialist Federal Republic of Yugoslavia\"}],\"year\":1991},{\"text\":\"First World War: Australian and New Zealand troops repelled the third attack on Anzac Cove, inflicting heavy casualties on the attacking Ottoman forces.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q361\",\"titles\":{\"canonical\":\"World_War_I\",\"normalized\":\"World War I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\"},\"pageid\":4764461,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Bataille_de_Verdun_1916.jpg/320px-Bataille_de_Verdun_1916.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Bataille_de_Verdun_1916.jpg\",\"width\":1875,\"height\":1402},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224566277\",\"tid\":\"f532626a-158f-11ef-9e62-50b2f0e3b3e6\",\"timestamp\":\"2024-05-19T03:29:11Z\",\"description\":\"1914–1918 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_I\"}},\"extract\":\"World War I or the First World War was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War I\u003c/b\u003e or the \u003cb\u003eFirst World War\u003c/b\u003e was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\u003c/p\u003e\",\"normalizedtitle\":\"World War I\"},{\"type\":\"standard\",\"title\":\"Third_attack_on_Anzac_Cove\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16901576\",\"titles\":{\"canonical\":\"Third_attack_on_Anzac_Cove\",\"normalized\":\"Third attack on Anzac Cove\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\"},\"pageid\":38768440,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Assault_of_Ottoman_soldiers.jpg/320px-Assault_of_Ottoman_soldiers.jpg\",\"width\":320,\"height\":215},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Assault_of_Ottoman_soldiers.jpg\",\"width\":902,\"height\":606},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661294\",\"tid\":\"f6a084d5-1609-11ef-81b3-d50e38e865bd\",\"timestamp\":\"2024-05-19T18:02:32Z\",\"description\":\"Battle in 1915 during the First World War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":40.24,\"lon\":26.2925},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Third_attack_on_Anzac_Cove\",\"edit\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"}},\"extract\":\"The third attack on Anzac Cove was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ethird attack on Anzac Cove\u003c/b\u003e was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\u003c/p\u003e\",\"normalizedtitle\":\"Third attack on Anzac Cove\"}],\"year\":1915},{\"text\":\"Parks Canada, the world's first national park service, was established as the Dominion Parks Branch under the Department of the Interior.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Parks_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q349487\",\"titles\":{\"canonical\":\"Parks_Canada\",\"normalized\":\"Parks Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\"},\"pageid\":507952,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/320px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/365px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":365,\"height\":274},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216238762\",\"tid\":\"8ac738e9-ee18-11ee-927b-73fd7cbd402d\",\"timestamp\":\"2024-03-29T22:06:07Z\",\"description\":\"Government agency\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Parks_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Parks_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Parks_Canada\"}},\"extract\":\"Parks Canada, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eParks Canada\u003c/b\u003e, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Parks Canada\"},{\"type\":\"standard\",\"title\":\"National_park\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q46169\",\"titles\":{\"canonical\":\"National_park\",\"normalized\":\"National park\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\"},\"pageid\":21818,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg/320px-Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":3088,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224275986\",\"tid\":\"a4a8f48d-1439-11ef-943e-24b47b125f5c\",\"timestamp\":\"2024-05-17T10:38:48Z\",\"description\":\"Park for conservation of nature and usually also for visitors\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.wikipedia.org/wiki/National_park?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_park\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_park\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_park\"}},\"extract\":\"A national park is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003enational park\u003c/b\u003e is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\u003c/p\u003e\",\"normalizedtitle\":\"National park\"},{\"type\":\"standard\",\"title\":\"Environment_and_Climate_Change_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348789\",\"titles\":{\"canonical\":\"Environment_and_Climate_Change_Canada\",\"normalized\":\"Environment and Climate Change Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\"},\"pageid\":272329,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1213022671\",\"tid\":\"c274572d-df0e-11ee-a19d-dad574c6fe55\",\"timestamp\":\"2024-03-10T18:48:18Z\",\"description\":\"Canadian federal government department\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Environment_and_Climate_Change_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"}},\"extract\":\"Environment and Climate Change Canada is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, Environment Canada.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEnvironment and Climate Change Canada\u003c/b\u003e is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, \u003cb\u003eEnvironment Canada\u003c/b\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Environment and Climate Change Canada\"}],\"year\":1911},{\"text\":\"Captain John Franklin (pictured) departed Greenhithe, England, on an expedition to the Canadian Arctic in search of the Northwest Passage; all 129 men were later lost when their ships became icebound in Victoria Strait.\",\"pages\":[{\"type\":\"standard\",\"title\":\"John_Franklin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2655\",\"titles\":{\"canonical\":\"John_Franklin\",\"normalized\":\"John Franklin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\"},\"pageid\":330305,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg/320px-Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":320,\"height\":382},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":2400,\"height\":2863},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221759362\",\"tid\":\"4b1ac3b9-07fb-11ef-936f-56ddbcd74120\",\"timestamp\":\"2024-05-01T20:42:15Z\",\"description\":\"British naval officer and explorer (1786–1847)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.wikipedia.org/wiki/John_Franklin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:John_Franklin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/John_Franklin\",\"edit\":\"https://en.m.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:John_Franklin\"}},\"extract\":\"Sir John Franklin was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSir John Franklin\u003c/b\u003e \u003csmall\u003e\u003c/small\u003e was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\u003c/p\u003e\",\"normalizedtitle\":\"John Franklin\"},{\"type\":\"standard\",\"title\":\"Greenhithe,_Kent\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3028239\",\"titles\":{\"canonical\":\"Greenhithe,_Kent\",\"normalized\":\"Greenhithe, Kent\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\"},\"pageid\":1057585,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/GreenhitheIngressPark5342.JPG/320px-GreenhitheIngressPark5342.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/GreenhitheIngressPark5342.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1190989678\",\"tid\":\"e0758296-9f8f-11ee-b240-395c3531fe37\",\"timestamp\":\"2023-12-20T23:31:19Z\",\"description\":\"Village in the Borough of Dartford, Kent, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.4504,\"lon\":0.2823},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greenhithe%2C_Kent\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"}},\"extract\":\"Greenhithe is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGreenhithe\u003c/b\u003e is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\u003c/p\u003e\",\"normalizedtitle\":\"Greenhithe, Kent\"},{\"type\":\"standard\",\"title\":\"Franklin's_lost_expedition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2305\",\"titles\":{\"canonical\":\"Franklin's_lost_expedition\",\"normalized\":\"Franklin's lost expedition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\"},\"pageid\":15746136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Franklin%27s-Lost-Expedition.png/320px-Franklin%27s-Lost-Expedition.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Franklin%27s-Lost-Expedition.png\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387825\",\"tid\":\"46bfef98-14c1-11ef-b36c-b14d135d5e7d\",\"timestamp\":\"2024-05-18T02:49:42Z\",\"description\":\"British expedition of Arctic exploration\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Franklin's_lost_expedition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"}},\"extract\":\"Franklin's lost expedition was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, HMS Erebus and HMS Terror, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year Erebus and Terror were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and Erebus's captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFranklin's lost expedition\u003c/b\u003e was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, \u003cspan\u003eHMS \u003ci\u003eErebus\u003c/i\u003e\u003c/span\u003e and \u003cspan\u003eHMS \u003ci\u003eTerror\u003c/i\u003e\u003c/span\u003e, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year \u003ci\u003eErebus\u003c/i\u003e and \u003ci\u003eTerror\u003c/i\u003e were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and \u003ci\u003eErebus\u003c/i\u003e\u003cspan class=\\\"nowrap\\\"\u003e'\u003c/span\u003es captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\u003c/p\u003e\",\"normalizedtitle\":\"Franklin's lost expedition\"},{\"type\":\"standard\",\"title\":\"Northern_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q764146\",\"titles\":{\"canonical\":\"Northern_Canada\",\"normalized\":\"Northern Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\"},\"pageid\":79987,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Whitehorse_Yukon.JPG/320px-Whitehorse_Yukon.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5e/Whitehorse_Yukon.JPG\",\"width\":640,\"height\":480},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221583793\",\"tid\":\"9fee06a3-0729-11ef-b35c-25ac1f2c2135\",\"timestamp\":\"2024-04-30T19:41:23Z\",\"description\":\"Region of Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":65.82,\"lon\":-107.08},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northern_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northern_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northern_Canada\"}},\"extract\":\"Northern Canada, colloquially the North or the Territories, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthern Canada\u003c/b\u003e, colloquially \u003cb\u003ethe North\u003c/b\u003e or \u003cb\u003ethe Territories\u003c/b\u003e, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\u003c/p\u003e\",\"normalizedtitle\":\"Northern Canada\"},{\"type\":\"standard\",\"title\":\"Northwest_Passage\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q81136\",\"titles\":{\"canonical\":\"Northwest_Passage\",\"normalized\":\"Northwest Passage\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\"},\"pageid\":21215,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg/320px-2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":2700,\"height\":2700},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224392011\",\"tid\":\"5130bb64-14c6-11ef-b2de-9a464bc509a6\",\"timestamp\":\"2024-05-18T03:25:47Z\",\"description\":\"Sea route north of North America\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northwest_Passage\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northwest_Passage\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northwest_Passage\"}},\"extract\":\"The Northwest Passage (NWP) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the Northwest Passages, Northwestern Passages or the Canadian Internal Waters.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNorthwest Passage\u003c/b\u003e (\u003cb\u003eNWP\u003c/b\u003e) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the \u003cb\u003eNorthwest Passages\u003c/b\u003e, \u003cb\u003eNorthwestern Passages\u003c/b\u003e or the Canadian Internal Waters.\u003c/p\u003e\",\"normalizedtitle\":\"Northwest Passage\"},{\"type\":\"standard\",\"title\":\"Victoria_Strait\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q601548\",\"titles\":{\"canonical\":\"Victoria_Strait\",\"normalized\":\"Victoria Strait\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\"},\"pageid\":7746699,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Wfm_victoria_island.jpg/320px-Wfm_victoria_island.jpg\",\"width\":320,\"height\":237},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Wfm_victoria_island.jpg\",\"width\":1280,\"height\":948},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155669815\",\"tid\":\"43bdcc9b-f609-11ed-b5a1-2cc997448104\",\"timestamp\":\"2023-05-19T05:51:57Z\",\"description\":\"Strait in Nunavut, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":69.5,\"lon\":-100.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Victoria_Strait\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Victoria_Strait\",\"edit\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Victoria_Strait\"}},\"extract\":\"Victoria Strait is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVictoria Strait\u003c/b\u003e is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\u003c/p\u003e\",\"normalizedtitle\":\"Victoria Strait\"}],\"year\":1845},{\"text\":\"The United States Congress passed the largest tariff in the nation's history, which resulted in severe economic hardship in the American South.\",\"pages\":[{\"type\":\"standard\",\"title\":\"United_States_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11268\",\"titles\":{\"canonical\":\"United_States_Congress\",\"normalized\":\"United States Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\"},\"pageid\":31756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/320px-Seal_of_the_United_States_Congress.svg.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/1055px-Seal_of_the_United_States_Congress.svg.png\",\"width\":1055,\"height\":1052},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543713\",\"tid\":\"9e20913a-1577-11ef-bd9f-d8c767cc668f\",\"timestamp\":\"2024-05-19T00:34:57Z\",\"description\":\"Legislative branch of U.S. government\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.88972222,\"lon\":-77.00888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_States_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_States_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_States_Congress\"}},\"extract\":\"The United States Congress is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited States Congress\u003c/b\u003e is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\u003c/p\u003e\",\"normalizedtitle\":\"United States Congress\"},{\"type\":\"standard\",\"title\":\"Tariff_of_Abominations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7686034\",\"titles\":{\"canonical\":\"Tariff_of_Abominations\",\"normalized\":\"Tariff of Abominations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\"},\"pageid\":55572,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224675540\",\"tid\":\"d4fab5e8-1618-11ef-80c1-09f2e774fd42\",\"timestamp\":\"2024-05-19T19:48:58Z\",\"description\":\"1828 United States tariff\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tariff_of_Abominations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"}},\"extract\":\"The Tariff of 1828 was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \\\"Tariff of Abominations\\\" by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eTariff of 1828\u003c/b\u003e was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \u003cb\u003e\\\"Tariff of Abominations\\\"\u003c/b\u003e by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\u003c/p\u003e\",\"normalizedtitle\":\"Tariff of Abominations\"}],\"year\":1828},{\"text\":\"A combination of thick smoke, fog, and heavy cloud cover caused darkness to fall on parts of Canada and the New England area of the United States by noon.\",\"pages\":[{\"type\":\"standard\",\"title\":\"New_England's_Dark_Day\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q588300\",\"titles\":{\"canonical\":\"New_England's_Dark_Day\",\"normalized\":\"New England's Dark Day\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\"},\"pageid\":666041,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg/320px-1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":320,\"height\":227},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":2500,\"height\":1772},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698529\",\"tid\":\"7db62050-1633-11ef-9a45-a19eb4bbc11f\",\"timestamp\":\"2024-05-19T22:59:48Z\",\"description\":\"1780 darkness in New England and Canada\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England's_Dark_Day\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"}},\"extract\":\"New England's Dark Day occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England's Dark Day\u003c/b\u003e occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\u003c/p\u003e\",\"normalizedtitle\":\"New England's Dark Day\"},{\"type\":\"standard\",\"title\":\"New_England\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q18389\",\"titles\":{\"canonical\":\"New_England\",\"normalized\":\"New England\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\"},\"pageid\":21531764,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Portland_HeadLight_%28cropped%29.jpg/320px-Portland_HeadLight_%28cropped%29.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Portland_HeadLight_%28cropped%29.jpg\",\"width\":3703,\"height\":2779},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219182468\",\"tid\":\"2b5c7a30-fbbb-11ee-95fd-523e3ef2e8e0\",\"timestamp\":\"2024-04-16T06:33:00Z\",\"description\":\"Region in the Northeastern United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44,\"lon\":-71},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England\"}},\"extract\":\"New England is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England\u003c/b\u003e is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\u003c/p\u003e\",\"normalizedtitle\":\"New England\"}],\"year\":1780},{\"text\":\"American Revolutionary War: A Continental Army garrison west of Montreal surrendered to British troops at the Battle of the Cedars.\",\"pages\":[{\"type\":\"standard\",\"title\":\"American_Revolutionary_War\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q40949\",\"titles\":{\"canonical\":\"American_Revolutionary_War\",\"normalized\":\"American Revolutionary War\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\"},\"pageid\":771,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/AmericanRevolutionaryWarMon.jpg/320px-AmericanRevolutionaryWarMon.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2b/AmericanRevolutionaryWarMon.jpg\",\"width\":406,\"height\":601},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224395755\",\"tid\":\"ad4a1b93-14cb-11ef-91e2-dcff43c01b8c\",\"timestamp\":\"2024-05-18T04:04:09Z\",\"description\":\"1775–1783 American war of independence\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:American_Revolutionary_War\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/American_Revolutionary_War\",\"edit\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:American_Revolutionary_War\"}},\"extract\":\"The American Revolutionary War, also known as the Revolutionary War or American War of Independence, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAmerican Revolutionary War\u003c/b\u003e, also known as the \u003cb\u003eRevolutionary War\u003c/b\u003e or \u003cb\u003eAmerican War of Independence\u003c/b\u003e, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\u003c/p\u003e\",\"normalizedtitle\":\"American Revolutionary War\"},{\"type\":\"standard\",\"title\":\"Continental_Army\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q54122\",\"titles\":{\"canonical\":\"Continental_Army\",\"normalized\":\"Continental Army\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\"},\"pageid\":168210,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/320px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/719px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":719,\"height\":719},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218341994\",\"tid\":\"0d0d1f71-f7ba-11ee-92e0-84d6ec6ea0b7\",\"timestamp\":\"2024-04-11T04:14:55Z\",\"description\":\"Colonial army during the American Revolutionary War\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.wikipedia.org/wiki/Continental_Army?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Continental_Army\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Continental_Army\",\"edit\":\"https://en.m.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Continental_Army\"}},\"extract\":\"The Continental Army was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eContinental Army\u003c/b\u003e was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\u003c/p\u003e\",\"normalizedtitle\":\"Continental Army\"},{\"type\":\"standard\",\"title\":\"Montreal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q340\",\"titles\":{\"canonical\":\"Montreal\",\"normalized\":\"Montreal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\"},\"pageid\":7954681,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/320px-Flag_of_Montreal.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/435px-Flag_of_Montreal.svg.png\",\"width\":435,\"height\":217},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388393\",\"tid\":\"ccdc30a9-14c1-11ef-a502-1d98a1856bc8\",\"timestamp\":\"2024-05-18T02:53:27Z\",\"description\":\"Largest city in Quebec, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.50888889,\"lon\":-73.55416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.wikipedia.org/wiki/Montreal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Montreal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Montreal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Montreal\"}},\"extract\":\"Montreal is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as Ville-Marie, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMontreal\u003c/b\u003e is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as \u003ci\u003eVille-Marie\u003c/i\u003e, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\u003c/p\u003e\",\"normalizedtitle\":\"Montreal\"},{\"type\":\"standard\",\"title\":\"Battle_of_the_Cedars\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1779439\",\"titles\":{\"canonical\":\"Battle_of_the_Cedars\",\"normalized\":\"Battle of the Cedars\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\"},\"pageid\":1255562,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Montreal1764CedarsDetail.png/320px-Montreal1764CedarsDetail.png\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Montreal1764CedarsDetail.png\",\"width\":1067,\"height\":697},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1185353813\",\"tid\":\"b2a39b1f-843d-11ee-be8c-93f4c27e711b\",\"timestamp\":\"2023-11-16T05:05:02Z\",\"description\":\"1776 skirmishes of the American Revolutionary War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.3099,\"lon\":-74.0353},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_the_Cedars\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"}},\"extract\":\"The Battle of the Cedars was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of the Cedars\u003c/b\u003e was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of the Cedars\"}],\"year\":1776},{\"text\":\"French physicist Jean-Pierre Christin published the design of a mercury thermometer using the centigrade scale, with 0 representing the melting point of water and 100 its boiling point.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Jean-Pierre_Christin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3169136\",\"titles\":{\"canonical\":\"Jean-Pierre_Christin\",\"normalized\":\"Jean-Pierre Christin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\"},\"pageid\":36320014,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg/320px-Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":320,\"height\":203},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":1536,\"height\":972},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224640125\",\"tid\":\"4f1942be-15f5-11ef-8b89-17cafdec9809\",\"timestamp\":\"2024-05-19T15:34:41Z\",\"description\":\"French scientist (1683–1755)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jean-Pierre_Christin\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"}},\"extract\":\"Jean-Pierre Christin was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJean-Pierre Christin\u003c/b\u003e was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\u003c/p\u003e\",\"normalizedtitle\":\"Jean-Pierre Christin\"},{\"type\":\"standard\",\"title\":\"Mercury-in-glass_thermometer\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1428655\",\"titles\":{\"canonical\":\"Mercury-in-glass_thermometer\",\"normalized\":\"Mercury-in-glass thermometer\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\"},\"pageid\":150245,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Mercury_Thermometer.jpg/320px-Mercury_Thermometer.jpg\",\"width\":320,\"height\":691},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Mercury_Thermometer.jpg\",\"width\":922,\"height\":1990},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224519270\",\"tid\":\"50e509a8-1560-11ef-b870-8d644d1d526c\",\"timestamp\":\"2024-05-18T21:48:09Z\",\"description\":\"Type of thermometer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mercury-in-glass_thermometer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"}},\"extract\":\"The mercury-in-glass or mercury thermometer is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emercury-in-glass\u003c/b\u003e or \u003cb\u003emercury thermometer\u003c/b\u003e is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\u003c/p\u003e\",\"normalizedtitle\":\"Mercury-in-glass thermometer\"},{\"type\":\"standard\",\"title\":\"Celsius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25267\",\"titles\":{\"canonical\":\"Celsius\",\"normalized\":\"Celsius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\"},\"pageid\":19593040,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/320px-Countries_that_use_Celsius.svg.png\",\"width\":320,\"height\":164},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/2560px-Countries_that_use_Celsius.svg.png\",\"width\":2560,\"height\":1314},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223598016\",\"tid\":\"64b7de3b-10e8-11ef-ba9a-9e8a2c8f3ef4\",\"timestamp\":\"2024-05-13T05:19:38Z\",\"description\":\"Scale and unit of measurement for temperature\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.wikipedia.org/wiki/Celsius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Celsius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Celsius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Celsius\"}},\"extract\":\"The degree Celsius is the unit of temperature on the Celsius temperature scale, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called centigrade in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003edegree Celsius\u003c/b\u003e is the unit of temperature on the \u003cb\u003eCelsius temperature scale\u003c/b\u003e, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called \u003ci\u003ecentigrade\u003c/i\u003e in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\u003c/p\u003e\",\"normalizedtitle\":\"Celsius\"},{\"type\":\"standard\",\"title\":\"Melting_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15318\",\"titles\":{\"canonical\":\"Melting_point\",\"normalized\":\"Melting point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\"},\"pageid\":40283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Melting_ice_thermometer.jpg/320px-Melting_ice_thermometer.jpg\",\"width\":320,\"height\":278},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/64/Melting_ice_thermometer.jpg\",\"width\":2536,\"height\":2204},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224699892\",\"tid\":\"6a0bbc8d-1635-11ef-b512-0e0f8f18e985\",\"timestamp\":\"2024-05-19T23:13:34Z\",\"description\":\"Temperature at which a solid turns liquid\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Melting_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Melting_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Melting_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Melting_point\"}},\"extract\":\"The melting point of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emelting point\u003c/b\u003e of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\u003c/p\u003e\",\"normalizedtitle\":\"Melting point\"},{\"type\":\"standard\",\"title\":\"Boiling_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1003183\",\"titles\":{\"canonical\":\"Boiling_point\",\"normalized\":\"Boiling point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\"},\"pageid\":4115,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Boilingkettle.jpg/320px-Boilingkettle.jpg\",\"width\":320,\"height\":411},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/92/Boilingkettle.jpg\",\"width\":2837,\"height\":3645},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214870211\",\"tid\":\"7eefc9c5-e7af-11ee-b16e-8b4e7de40642\",\"timestamp\":\"2024-03-21T18:19:03Z\",\"description\":\"Temperature at which a substance changes from liquid into vapor\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Boiling_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Boiling_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Boiling_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Boiling_point\"}},\"extract\":\" The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\",\"extract_html\":\"\u003cp\u003e The \u003cb\u003eboiling point\u003c/b\u003e of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\u003c/p\u003e\",\"normalizedtitle\":\"Boiling point\"}],\"year\":1743},{\"text\":\"Anglo-Spanish War: England invaded Spanish Jamaica, capturing it a week later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Spanish_War_(1654–1660)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q369291\",\"titles\":{\"canonical\":\"Anglo-Spanish_War_(1654–1660)\",\"normalized\":\"Anglo-Spanish War (1654–1660)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\"},\"pageid\":853356,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg/320px-Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":320,\"height\":242},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":4085,\"height\":3087},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224685406\",\"tid\":\"8ef728cd-1623-11ef-94c8-16a4f6553eaf\",\"timestamp\":\"2024-05-19T21:05:45Z\",\"description\":\"War between the English Protectorate, under Oliver Cromwell, and Spain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Spanish_War_(1654%E2%80%931660)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"}},\"extract\":\"The Anglo-Spanish War was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAnglo-Spanish War\u003c/b\u003e was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Spanish War (1654–1660)\"},{\"type\":\"standard\",\"title\":\"Invasion_of_Jamaica\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6059673\",\"titles\":{\"canonical\":\"Invasion_of_Jamaica\",\"normalized\":\"Invasion of Jamaica\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\"},\"pageid\":28424211,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Jamaica1671ogilby.jpg/320px-Jamaica1671ogilby.jpg\",\"width\":320,\"height\":256},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d9/Jamaica1671ogilby.jpg\",\"width\":4329,\"height\":3461},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224697636\",\"tid\":\"44c9676f-1632-11ef-bcf6-06b5a0690573\",\"timestamp\":\"2024-05-19T22:51:03Z\",\"description\":\"1655 English victory over Spain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":17.955,\"lon\":-76.8675},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Invasion_of_Jamaica\",\"edit\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"}},\"extract\":\"The Invasion of Jamaica took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eInvasion of Jamaica\u003c/b\u003e took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\u003c/p\u003e\",\"normalizedtitle\":\"Invasion of Jamaica\"},{\"type\":\"standard\",\"title\":\"Colony_of_Santiago\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5148521\",\"titles\":{\"canonical\":\"Colony_of_Santiago\",\"normalized\":\"Colony of Santiago\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\"},\"pageid\":34399476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/320px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/900px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224660847\",\"tid\":\"9316514f-1609-11ef-9ac4-fdfc9fced638\",\"timestamp\":\"2024-05-19T17:59:45Z\",\"description\":\"Former Spanish colony in the Caribbean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":18.18,\"lon\":-77.4},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colony_of_Santiago\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colony_of_Santiago\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colony_of_Santiago\"}},\"extract\":\"Santiago was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSantiago\u003c/b\u003e was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\u003c/p\u003e\",\"normalizedtitle\":\"Colony of Santiago\"}],\"year\":1655},{\"text\":\"Gregory II began his pontificate; his conflict with Byzantine emperor Leo III eventually led to the establishment of the temporal power of the pope.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Pope_Gregory_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q103321\",\"titles\":{\"canonical\":\"Pope_Gregory_II\",\"normalized\":\"Pope Gregory II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\"},\"pageid\":24193,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224650505\",\"tid\":\"c0f68a2c-15ff-11ef-97b2-0090790fddce\",\"timestamp\":\"2024-05-19T16:49:27Z\",\"description\":\"Head of the Catholic Church from 715 to 731\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope_Gregory_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope_Gregory_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope_Gregory_II\"}},\"extract\":\"Pope Gregory II was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePope Gregory II\u003c/b\u003e was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\u003c/p\u003e\",\"normalizedtitle\":\"Pope Gregory II\"},{\"type\":\"standard\",\"title\":\"Pope\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19546\",\"titles\":{\"canonical\":\"Pope\",\"normalized\":\"Pope\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\"},\"pageid\":23056,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg/320px-Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":991,\"height\":1316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224204527\",\"tid\":\"87d6db6d-13cd-11ef-a64a-2505ff3ede61\",\"timestamp\":\"2024-05-16T21:44:54Z\",\"description\":\"Visible head of the Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope\"}},\"extract\":\"The pope is the bishop of Rome, Patriarch of the West, and visible head of the Catholic Church. He is also known as the supreme pontiff, Roman pontiff or sovereign pontiff. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epope\u003c/b\u003e is the \u003cb\u003ebishop of Rome\u003c/b\u003e, Patriarch of the West, and visible head of the Catholic Church. He is also known as the \u003cb\u003esupreme pontiff\u003c/b\u003e, \u003cb\u003eRoman pontiff\u003c/b\u003e or \u003cb\u003esovereign pontiff\u003c/b\u003e. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\u003c/p\u003e\",\"normalizedtitle\":\"Pope\"},{\"type\":\"standard\",\"title\":\"Leo_III_the_Isaurian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q31755\",\"titles\":{\"canonical\":\"Leo_III_the_Isaurian\",\"normalized\":\"Leo III the Isaurian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\"},\"pageid\":18010,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Solidus_of_Leo_III_sb1504.png/320px-Solidus_of_Leo_III_sb1504.png\",\"width\":320,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Solidus_of_Leo_III_sb1504.png\",\"width\":737,\"height\":727},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220135113\",\"tid\":\"917753ff-0046-11ef-9551-c42353025594\",\"timestamp\":\"2024-04-22T01:20:56Z\",\"description\":\"Byzantine emperor from 717 to 741\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leo_III_the_Isaurian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"}},\"extract\":\"Leo III the Isaurian, also known as the Syrian, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLeo III the Isaurian\u003c/b\u003e, also known as \u003cb\u003ethe Syrian\u003c/b\u003e, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\u003c/p\u003e\",\"normalizedtitle\":\"Leo III the Isaurian\"},{\"type\":\"standard\",\"title\":\"Temporal_power_of_the_Holy_See\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929806\",\"titles\":{\"canonical\":\"Temporal_power_of_the_Holy_See\",\"normalized\":\"Temporal power of the Holy See\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\"},\"pageid\":92913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg/320px-Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":2000,\"height\":2996},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659303\",\"tid\":\"5138cefb-1608-11ef-a9c5-e3f810772758\",\"timestamp\":\"2024-05-19T17:50:45Z\",\"description\":\"Political and secular governmental activity of the popes of the Roman Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Temporal_power_of_the_Holy_See\",\"edit\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"}},\"extract\":\"The Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\",\"extract_html\":\"\u003cp\u003eThe Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\u003c/p\u003e\",\"normalizedtitle\":\"Temporal power of the Holy See\"}],\"year\":715}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4ea4bf1-68ae-4fea-9a09-2d98488f4055","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.30000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":391.9812,"y":2164.8926,"touch_down_time":146692,"touch_up_time":146783},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f59cbbf6-6d04-49bd-8a37-3407e690ac3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:28.12400000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":149608,"utime":140,"cutime":0,"cstime":0,"stime":66,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f910a0d0-e3c7-4a4f-a3e7-b9dbca382d3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.61400000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":561.9507,"y":1693.9453,"end_x":571.9702,"end_y":862.93945,"direction":"up","touch_down_time":144920,"touch_up_time":145077},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc4f60a5-efdb-42d0-8a15-e80956b23bcc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.60100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json index 5d997261a..af19e5347 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json @@ -1 +1 @@ -[{"id":"03bde1a1-4bae-49e0-b88c-4dd1ef566401","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.46700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":108193,"end_time":108951,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Maxine_Blossom_Miles","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:10:48 GMT","etag":"W/\"1217151184/5739b730-01ea-11ef-a0c6-68a942aed4b5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2031","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Maxine Blossom Miles\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6795942\",\"titles\":{\"canonical\":\"Maxine_Blossom_Miles\",\"normalized\":\"Maxine Blossom Miles\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\"},\"pageid\":35973359,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":320,\"height\":424},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":504,\"height\":668},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217151184\",\"tid\":\"ad0402e5-f234-11ee-8627-f6f01d3656ba\",\"timestamp\":\"2024-04-04T03:37:35Z\",\"description\":\"English aircraft engineer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Maxine_Blossom_Miles\",\"edit\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"}},\"extract\":\"Maxine Frances Mary \\\"Blossom\\\" Miles was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMaxine Frances Mary\u003c/b\u003e \\\"\u003cb\u003eBlossom\u003c/b\u003e\\\" \u003cb\u003eMiles\u003c/b\u003e was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"06b254a7-12b4-4b85-90ff-f55d67efd5fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":104725,"end_time":104735,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"5474","content-type":"multipart/form-data; boundary=19fd485a-1006-4fa2-8012-da8a84157f0d","host":"10.0.2.2:8080","msr-req-id":"5a4065bd-60a3-4146-ac6d-c4d637772a3c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:10:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b04a6e9-1930-425e-9eb9-d086a580f419","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:51.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3412,"total_pss":89089,"rss":151808,"native_total_heap":45334,"native_free_heap":13033,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0dda7d31-0504-481e-8125-4e16e74442ed","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"125a4ca8-6fc6-4611-899f-688ee212f7a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"14c8433f-9070-4d55-a1fd-85893788e28a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3473,"total_pss":89049,"rss":151808,"native_total_heap":45326,"native_free_heap":13041,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1a5a6fa3-67f3-46e9-8111-e7aaa3d6e275","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.36800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":50.98755,"y":2199.9023,"touch_down_time":106743,"touch_up_time":106849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1adacf0b-9ed0-43a6-972e-6c4618e75bbe","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":110610,"utime":72,"cutime":0,"cstime":0,"stime":19,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1c5c81c3-bc58-4069-a982-bb5cdbd9d4c9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.37400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":104580,"on_next_draw_uptime":104858,"launched_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"21bfaa7d-0d5c-44c4-adbd-2e9fc7a8f0d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:52.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":113608,"utime":72,"cutime":0,"cstime":0,"stime":21,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2bdb85ef-1dc9-485d-821e-129ca9ebd88b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.75000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2daa2bcd-6552-4bae-b877-a67780478ea0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.46700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104764,"end_time":104951,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2451","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3403436f-5e3c-4896-a58d-807c29153d50","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":107605,"utime":60,"cutime":0,"cstime":0,"stime":17,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"34a0a856-1782-492e-b633-7b987b5945e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3708bc57-5219-4e3b-a83b-e7b020f71bba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.73800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":106869,"end_time":107222,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:10:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"542ed105-ad30-4084-a25e-6816bec1fd89","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":107316,"end_time":107429,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"127","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49984","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/71","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5442beb1-62f1-4404-9abc-6d844fdf5b14","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3942,"total_pss":88930,"rss":152480,"native_total_heap":45369,"native_free_heap":12998,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5e09f8b2-f9c5-4c28-a33a-280f626b582d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:57.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3143,"total_pss":89269,"rss":152196,"native_total_heap":45530,"native_free_heap":12837,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"676c3fb1-6477-496a-8c9c-61ed35f61353","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6a19cff5-1fec-479d-a4aa-a86585ce6ddb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c809bc9-1665-4b3b-80e4-8466f67a56bb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:53.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3312,"total_pss":89149,"rss":151808,"native_total_heap":45510,"native_free_heap":12857,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6cd3c07d-e68b-4493-9e1b-b03ee17d39d4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":116609,"utime":72,"cutime":0,"cstime":0,"stime":23,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e452099-cbe9-4906-8326-ed26f752240c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":15582,"java_free_heap":3088,"total_pss":73935,"rss":134964,"native_total_heap":39902,"native_free_heap":10273,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ba2a82-8506-4091-bc92-f6fd29378365","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.37600000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104888,"end_time":105861,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9233c0ae-4c78-4059-8b4f-5b35d8ad6843","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3204,"total_pss":89225,"rss":151932,"native_total_heap":45522,"native_free_heap":12845,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"950fe192-e5db-4237-bbc9-47d176bfaccd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"96df6f05-31ca-4d30-9fdf-705b5be4d58b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f058f91-5247-4a59-a34d-107b4bdddbb9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:59.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3032,"total_pss":89357,"rss":152904,"native_total_heap":45572,"native_free_heap":12795,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a4498773-993f-4f68-912b-6fc6da876cf9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.33500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a9168774-d224-4913-a84e-c6a370a34a6d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b02cdfb4-01a2-475b-97c2-8827d16d2d59","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b26009fd-826c-4a12-91e1-6801af5d3751","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46948fd-8052-4fb4-a25c-c32afbe4d0eb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b544ed7d-7dcc-4413-8be3-c2a1f55336ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:58.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":119610,"utime":74,"cutime":0,"cstime":0,"stime":25,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b6eb6f85-8ef0-4e60-afac-af37419f3ba9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":122608,"utime":74,"cutime":0,"cstime":0,"stime":27,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b863f39a-8ae4-4df7-b383-567b79e14aa3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.43400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ba3ca04f-bde3-4f9d-aba6-d9c2d2e581ef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.52500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":106965,"end_time":107010,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"113","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 09:08:52 GMT","etag":"\"1230862227/93f33e50-1688-11ef-9b87-d98f91645f9b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bf0b84c3-18bf-4953-94ae-095f38cb14c7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2883,"total_pss":89481,"rss":152904,"native_total_heap":45608,"native_free_heap":12759,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cc427fa7-733f-4e05-a569-70c9bb0490a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.28200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"deb32862-d736-49cf-8ea8-581703f60190","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.14800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":107329,"end_time":107632,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"85069","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/566","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e42761c1-4bc4-49a3-a3e2-c9e51bbec39f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.40300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104703,"end_time":104887,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2450","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e82bd1e1-b945-4c3e-8efb-de69ccfa8bbb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ee5508d7-c1d7-405b-9f63-753874c70621","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.32500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f240dbcf-8565-4e44-905b-00088b964210","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f8d7042a-7aee-4f11-aa5f-8c9cba958216","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.21200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104680,"end_time":105697,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/2","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"facb6ba3-ce45-4dfe-8771-8e6a1e6916e4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.19500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":107609,"end_time":107679,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12648","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/780","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fcae5c91-78cd-493c-b148-0dc182eacbb7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2945,"total_pss":89433,"rss":152904,"native_total_heap":45592,"native_free_heap":12775,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03bde1a1-4bae-49e0-b88c-4dd1ef566401","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.46700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":108193,"end_time":108951,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Maxine_Blossom_Miles","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:10:48 GMT","etag":"W/\"1217151184/5739b730-01ea-11ef-a0c6-68a942aed4b5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2031","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Maxine Blossom Miles\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6795942\",\"titles\":{\"canonical\":\"Maxine_Blossom_Miles\",\"normalized\":\"Maxine Blossom Miles\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\"},\"pageid\":35973359,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":320,\"height\":424},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":504,\"height\":668},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217151184\",\"tid\":\"ad0402e5-f234-11ee-8627-f6f01d3656ba\",\"timestamp\":\"2024-04-04T03:37:35Z\",\"description\":\"English aircraft engineer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Maxine_Blossom_Miles\",\"edit\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"}},\"extract\":\"Maxine Frances Mary \\\"Blossom\\\" Miles was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMaxine Frances Mary\u003c/b\u003e \\\"\u003cb\u003eBlossom\u003c/b\u003e\\\" \u003cb\u003eMiles\u003c/b\u003e was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"06b254a7-12b4-4b85-90ff-f55d67efd5fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":104725,"end_time":104735,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"5474","content-type":"multipart/form-data; boundary=19fd485a-1006-4fa2-8012-da8a84157f0d","host":"10.0.2.2:8080","msr-req-id":"5a4065bd-60a3-4146-ac6d-c4d637772a3c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:10:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b04a6e9-1930-425e-9eb9-d086a580f419","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:51.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3412,"total_pss":89089,"rss":151808,"native_total_heap":45334,"native_free_heap":13033,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0dda7d31-0504-481e-8125-4e16e74442ed","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"125a4ca8-6fc6-4611-899f-688ee212f7a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"14c8433f-9070-4d55-a1fd-85893788e28a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3473,"total_pss":89049,"rss":151808,"native_total_heap":45326,"native_free_heap":13041,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1a5a6fa3-67f3-46e9-8111-e7aaa3d6e275","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.36800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":50.98755,"y":2199.9023,"touch_down_time":106743,"touch_up_time":106849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1adacf0b-9ed0-43a6-972e-6c4618e75bbe","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":110610,"utime":72,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1c5c81c3-bc58-4069-a982-bb5cdbd9d4c9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.37400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":104580,"on_next_draw_uptime":104858,"launched_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"21bfaa7d-0d5c-44c4-adbd-2e9fc7a8f0d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:52.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":113608,"utime":72,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2bdb85ef-1dc9-485d-821e-129ca9ebd88b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.75000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2daa2bcd-6552-4bae-b877-a67780478ea0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.46700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104764,"end_time":104951,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2451","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3403436f-5e3c-4896-a58d-807c29153d50","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":107605,"utime":60,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"34a0a856-1782-492e-b633-7b987b5945e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3708bc57-5219-4e3b-a83b-e7b020f71bba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.73800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":106869,"end_time":107222,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:10:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"542ed105-ad30-4084-a25e-6816bec1fd89","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":107316,"end_time":107429,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"127","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49984","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/71","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5442beb1-62f1-4404-9abc-6d844fdf5b14","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3942,"total_pss":88930,"rss":152480,"native_total_heap":45369,"native_free_heap":12998,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5e09f8b2-f9c5-4c28-a33a-280f626b582d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:57.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3143,"total_pss":89269,"rss":152196,"native_total_heap":45530,"native_free_heap":12837,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"676c3fb1-6477-496a-8c9c-61ed35f61353","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6a19cff5-1fec-479d-a4aa-a86585ce6ddb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c809bc9-1665-4b3b-80e4-8466f67a56bb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:53.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3312,"total_pss":89149,"rss":151808,"native_total_heap":45510,"native_free_heap":12857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6cd3c07d-e68b-4493-9e1b-b03ee17d39d4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":116609,"utime":72,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e452099-cbe9-4906-8326-ed26f752240c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":15582,"java_free_heap":3088,"total_pss":73935,"rss":134964,"native_total_heap":39902,"native_free_heap":10273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ba2a82-8506-4091-bc92-f6fd29378365","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.37600000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104888,"end_time":105861,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9233c0ae-4c78-4059-8b4f-5b35d8ad6843","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3204,"total_pss":89225,"rss":151932,"native_total_heap":45522,"native_free_heap":12845,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"950fe192-e5db-4237-bbc9-47d176bfaccd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"96df6f05-31ca-4d30-9fdf-705b5be4d58b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f058f91-5247-4a59-a34d-107b4bdddbb9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:59.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3032,"total_pss":89357,"rss":152904,"native_total_heap":45572,"native_free_heap":12795,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a4498773-993f-4f68-912b-6fc6da876cf9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.33500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a9168774-d224-4913-a84e-c6a370a34a6d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b02cdfb4-01a2-475b-97c2-8827d16d2d59","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b26009fd-826c-4a12-91e1-6801af5d3751","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46948fd-8052-4fb4-a25c-c32afbe4d0eb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b544ed7d-7dcc-4413-8be3-c2a1f55336ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:58.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":119610,"utime":74,"cutime":0,"cstime":0,"stime":25,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b6eb6f85-8ef0-4e60-afac-af37419f3ba9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":122608,"utime":74,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b863f39a-8ae4-4df7-b383-567b79e14aa3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.43400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ba3ca04f-bde3-4f9d-aba6-d9c2d2e581ef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.52500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":106965,"end_time":107010,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"113","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 09:08:52 GMT","etag":"\"1230862227/93f33e50-1688-11ef-9b87-d98f91645f9b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bf0b84c3-18bf-4953-94ae-095f38cb14c7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2883,"total_pss":89481,"rss":152904,"native_total_heap":45608,"native_free_heap":12759,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cc427fa7-733f-4e05-a569-70c9bb0490a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.28200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"deb32862-d736-49cf-8ea8-581703f60190","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.14800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":107329,"end_time":107632,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"85069","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/566","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e42761c1-4bc4-49a3-a3e2-c9e51bbec39f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.40300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104703,"end_time":104887,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2450","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e82bd1e1-b945-4c3e-8efb-de69ccfa8bbb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ee5508d7-c1d7-405b-9f63-753874c70621","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.32500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f240dbcf-8565-4e44-905b-00088b964210","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f8d7042a-7aee-4f11-aa5f-8c9cba958216","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.21200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104680,"end_time":105697,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/2","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"facb6ba3-ce45-4dfe-8771-8e6a1e6916e4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.19500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":107609,"end_time":107679,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12648","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/780","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fcae5c91-78cd-493c-b148-0dc182eacbb7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2945,"total_pss":89433,"rss":152904,"native_total_heap":45592,"native_free_heap":12775,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json index 52693c90c..35c735f85 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json @@ -1 +1 @@ -[{"id":"00002d49-c8a7-496a-85ef-ec1d7d37bc36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"00dd59fb-a977-42b1-be34-e3fbdcf27a17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"025d8096-e3b7-4f02-8857-53826f67d96d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.65800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/70px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":335391,"end_time":335477,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"46378","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"2834","content-type":"image/webp","date":"Sun, 19 May 2024 20:08:44 GMT","etag":"81b2c7cc5c9d55a3bdc7efd899291bbc","last-modified":"Fri, 08 Sep 2023 16:29:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17163","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0388533a-325d-45ba-8885-8512e61b12b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"03c6e324-554a-4dac-8c31-500c46878a6f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a3aea92-98c6-4b30-bb82-b5df3f1c0500","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/MediaWiki-2020-icon.svg/70px-MediaWiki-2020-icon.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335398,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2917","content-disposition":"inline;filename*=UTF-8''MediaWiki-2020-icon.svg.webp","content-length":"4418","content-type":"image/webp","date":"Mon, 20 May 2024 08:13:05 GMT","etag":"926f26e2e4931dd3338401f294b6a656","last-modified":"Wed, 04 May 2022 16:45:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1514","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0b2b26db-8b8a-4a56-a9d4-645df4e71faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.79700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/favicon/wikipedia.ico","method":"get","status_code":200,"start_time":335566,"end_time":335616,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"62358","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"1035","content-type":"image/vnd.microsoft.icon","date":"Sun, 19 May 2024 15:42:24 GMT","etag":"W/\"aae-617c8293c9c40\"","expires":"Mon, 19 May 2025 01:33:54 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1765602","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d892b2c-bbe2-4ebd-9d14-31959ca4ec5d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.66500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":149.9414,"touch_down_time":338386,"touch_up_time":338482},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1bf73967-3b19-456c-9959-c4ffe99fdee0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":3278,"total_pss":125446,"rss":216108,"native_total_heap":64512,"native_free_heap":8079,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f420910-cd29-47a2-a7de-f7a80998616b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/102px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":335399,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"83025","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"6134","content-type":"image/webp","date":"Sun, 19 May 2024 09:57:57 GMT","etag":"dc4818699536a14345dcf9f070d6b363","last-modified":"Wed, 24 May 2023 13:47:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/33009","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"25395aa1-b491-447f-bf79-6d80599a4da6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:43.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17349,"java_free_heap":5991,"total_pss":157071,"rss":249108,"native_total_heap":72704,"native_free_heap":10085,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a009fbe-210b-4a77-a22c-6d58527d9e52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"30b6f1fe-2278-4441-b900-f111df794b70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.68900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg","method":"get","status_code":200,"start_time":337248,"end_time":337508,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Trace_Adkins_2011_%28cropped%29.jpg","content-length":"17847","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"eccc362d7d41607d3ee973226a980fdf","last-modified":"Fri, 29 Oct 2021 06:37:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31aafcd5-19a1-489a-aab3-a0f7d8a20c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg/600px-NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg","method":"get","status_code":200,"start_time":335098,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg.webp","content-length":"101392","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"68e381231db778c003edf6387210fc97","last-modified":"Mon, 20 May 2024 00:03:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22632","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3335aacc-b190-4df2-bf7c-da7a615f6882","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4247e82b-d6a3-47c7-b815-69a6759c3f24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4527dbae-6271-4e01-bef8-08ed1e1e7149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":335485,"end_time":335529,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76028","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"858","content-type":"image/webp","date":"Sun, 19 May 2024 11:54:34 GMT","etag":"2b49d95bfd3ff0b9ebf17e29941d28f3","last-modified":"Fri, 04 Aug 2023 00:38:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/32839","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cd53b69-efaa-4917-b7ae-52f31eb2c2e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.91000000Z","type":"http","http":{"url":"https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script\u0026wikiid=enwiki\u0026mobile=1\u0026mobile=1","method":"get","status_code":200,"start_time":335564,"end_time":335729,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"login.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"275","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-length":"207","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 08:57:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.eqiad.main-5bb8644857-q58xb","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/6004","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"545b9905-9b8a-43f9-917f-d9edaf3d3a96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55437eb2-2da8-4325-ba86-e40c5e757968","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"559642d5-494f-4040-b132-eca7dd895345","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"610660fe-a016-436f-9eab-5dc50362ac04","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.37000000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":66.97266,"y":168.98438,"touch_down_time":337089,"touch_up_time":337186},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"739b21e5-cf28-4c99-8fd3-6c0086a47ae2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=menu\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335292,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''menu.svg","content-encoding":"gzip","content-length":"199","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:41:42 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 05:41:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/223061","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ab50181-95c5-4763-886b-9873a8e9227a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8017b320-ab39-49d0-95d4-cf2899632f09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.23800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":339011,"end_time":339057,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"31739","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg","content-length":"27048","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:12:48 GMT","etag":"532226c726bc4784b6de65095da97cf9","last-modified":"Thu, 03 Jun 2021 20:02:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/60","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"818f6360-b15f-4248-9b16-9e36157880bd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"89d83fae-7bd7-4bf2-83f5-ad52ba24bb09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":335396,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50064","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"256","content-type":"image/webp","date":"Sun, 19 May 2024 19:07:18 GMT","etag":"dc0fbe756f6c20bbb4b2e6502c6b8d93","last-modified":"Thu, 04 Jan 2024 04:19:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fed42c8-0d39-433f-afe5-36cf0003e8c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.88200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg","method":"get","status_code":200,"start_time":337251,"end_time":337701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"25791","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"b40874266cea3519947f7c1703983ecc","last-modified":"Tue, 11 Dec 2018 22:02:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9adbb5b7-4a59-44f7-a2c9-8e590f884cbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Calvin_1993-07-06_1831Z.png/280px-Calvin_1993-07-06_1831Z.png","method":"get","status_code":200,"start_time":335055,"end_time":335349,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Calvin_1993-07-06_1831Z.png.webp","content-length":"93458","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"c6eaa7bba98bd1ac40cf8c3c8db5a25a","last-modified":"Mon, 20 May 2024 00:03:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22700","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b251137c-c444-4ba1-a00a-a85c655dc633","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/238px-Schlosskirche_Weimar_1660.jpg","method":"get","status_code":200,"start_time":335054,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Schlosskirche_Weimar_1660.jpg.webp","content-length":"37142","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"ea61033b16cc202a2cfdb27234ac2416","last-modified":"Mon, 20 May 2024 00:03:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22742","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3592198-653d-490b-b6e1-52c91ce61517","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/70px-Wikispecies-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335524,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"3246","content-disposition":"inline;filename*=UTF-8''Wikispecies-logo.svg.webp","content-length":"5442","content-type":"image/webp","date":"Mon, 20 May 2024 08:07:36 GMT","etag":"85dc48aa591946853764893667e96f42","last-modified":"Thu, 03 Aug 2023 23:09:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1798","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f12ba7-608e-481b-956d-78bdb17fda62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.22200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f6bf91-c5c6-41aa-b2dc-056ae671cfa7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337216,"end_time":337560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"386","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c34f3fb0-bc13-49da-be81-2ae9572b3e26","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/82px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":335480,"end_time":335526,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"80480","content-length":"916","content-type":"image/webp","date":"Sun, 19 May 2024 10:40:22 GMT","etag":"6110b293e5bffd57d56a06bd076ca96f","last-modified":"Sat, 12 Dec 2020 13:25:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/28427","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c7ab0679-47a5-4d73-a4ac-9e11ea57cb55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=settings\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335291,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''settings.svg","content-encoding":"gzip","content-length":"314","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:54:50 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 05:54:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/206645","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c97c50b6-ec67-4dee-998a-bd6e0522235c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=mapPin\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335296,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''mapPin.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:39:31 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:39:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/157656","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cbdce010-cf05-4659-aa4f-343360270000","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70900000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026version=wtz5o","method":"get","status_code":200,"start_time":335105,"end_time":335528,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"194789","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 00:19:18 GMT","etag":"W/\"wtz5o\"","expires":"Wed, 19 Jun 2024 00:19:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-5fd47cfb8c-bv65j","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=wtz5o","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/312","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce35a05e-990e-4ffc-a98c-d535a34a65da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d60d816e-d243-4bb7-97fa-c7ac67c7e91d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.58000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/70px-Wikimedia_Community_Logo.svg.png","method":"get","status_code":200,"start_time":335349,"end_time":335399,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58084","content-disposition":"inline;filename*=UTF-8''Wikimedia_Community_Logo.svg.webp","content-length":"3010","content-type":"image/webp","date":"Sun, 19 May 2024 16:53:38 GMT","etag":"e881cbcfab5fa3858d43fd28dcf8dbab","last-modified":"Sat, 02 Mar 2024 13:24:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/22539","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d940b582-30f3-4823-af95-9fc573c1bb1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.89800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ded7ed13-7c19-40d5-84af-e36e788753c3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337218,"end_time":337561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e076782c-127a-4062-a9c7-8090fb383ad4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":336976,"utime":349,"cutime":0,"cstime":0,"stime":277,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e13be4ef-49f0-4795-86d2-169df684bc6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/70px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":335434,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36746","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"2964","content-type":"image/webp","date":"Sun, 19 May 2024 22:49:16 GMT","etag":"7878462d0cf1af96f988386bb2273e47","last-modified":"Thu, 08 Jun 2023 05:42:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14972","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1bee547-a43e-43a5-84ff-cf109f77b1a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/70px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335525,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71339","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"3108","content-type":"image/webp","date":"Sun, 19 May 2024 13:12:43 GMT","etag":"4a5f64a8591e9e5f16a1d351fa37279e","last-modified":"Sun, 06 Aug 2023 03:18:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29108","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2dc94c0-33d8-4bbc-936d-9015261af1b4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/70px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":335487,"end_time":335537,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44771","content-length":"2716","content-type":"image/webp","date":"Sun, 19 May 2024 20:35:31 GMT","etag":"ea255af81e6cee85a20ca2653440b36f","last-modified":"Fri, 21 Jun 2019 08:13:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14103","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1030304-d329-4018-8bce-db6500bb4e8d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/62px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64144","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1874","content-type":"image/webp","date":"Sun, 19 May 2024 15:12:38 GMT","etag":"89d68591754da30aadbf4fa239146915","last-modified":"Sat, 16 Mar 2024 06:17:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/24712","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1a210a4-d0d6-4197-ba95-1b3a92040419","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f41b3876-853d-4434-80bf-f6d199226050","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.48300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg","method":"get","status_code":200,"start_time":337252,"end_time":337302,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9389","content-disposition":"inline;filename*=UTF-8''Tracy_Chapman_3.jpg","content-length":"36867","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:15 GMT","etag":"1737000a811db04110a0e0c9690bc051","last-modified":"Sat, 17 Jul 2021 22:41:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fb9689cc-8f38-46db-8bac-dc79fdb62092","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.69400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg","method":"get","status_code":200,"start_time":337250,"end_time":337513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Tracy_Ullman_by_John_Mathew_Smith.jpg","content-length":"34400","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"ac97f11c80670ba39aeac4eecc86f3b1","last-modified":"Thu, 21 Mar 2024 03:12:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf0d2ab-0d89-416e-9cc7-c6dc1249d67f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337217,"end_time":337562,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"00002d49-c8a7-496a-85ef-ec1d7d37bc36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"00dd59fb-a977-42b1-be34-e3fbdcf27a17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"025d8096-e3b7-4f02-8857-53826f67d96d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.65800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/70px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":335391,"end_time":335477,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"46378","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"2834","content-type":"image/webp","date":"Sun, 19 May 2024 20:08:44 GMT","etag":"81b2c7cc5c9d55a3bdc7efd899291bbc","last-modified":"Fri, 08 Sep 2023 16:29:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17163","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0388533a-325d-45ba-8885-8512e61b12b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"03c6e324-554a-4dac-8c31-500c46878a6f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a3aea92-98c6-4b30-bb82-b5df3f1c0500","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/MediaWiki-2020-icon.svg/70px-MediaWiki-2020-icon.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335398,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2917","content-disposition":"inline;filename*=UTF-8''MediaWiki-2020-icon.svg.webp","content-length":"4418","content-type":"image/webp","date":"Mon, 20 May 2024 08:13:05 GMT","etag":"926f26e2e4931dd3338401f294b6a656","last-modified":"Wed, 04 May 2022 16:45:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1514","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0b2b26db-8b8a-4a56-a9d4-645df4e71faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.79700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/favicon/wikipedia.ico","method":"get","status_code":200,"start_time":335566,"end_time":335616,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"62358","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"1035","content-type":"image/vnd.microsoft.icon","date":"Sun, 19 May 2024 15:42:24 GMT","etag":"W/\"aae-617c8293c9c40\"","expires":"Mon, 19 May 2025 01:33:54 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1765602","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d892b2c-bbe2-4ebd-9d14-31959ca4ec5d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.66500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":149.9414,"touch_down_time":338386,"touch_up_time":338482},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1bf73967-3b19-456c-9959-c4ffe99fdee0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":3278,"total_pss":125446,"rss":216108,"native_total_heap":64512,"native_free_heap":8079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f420910-cd29-47a2-a7de-f7a80998616b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/102px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":335399,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"83025","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"6134","content-type":"image/webp","date":"Sun, 19 May 2024 09:57:57 GMT","etag":"dc4818699536a14345dcf9f070d6b363","last-modified":"Wed, 24 May 2023 13:47:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/33009","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"25395aa1-b491-447f-bf79-6d80599a4da6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:43.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17349,"java_free_heap":5991,"total_pss":157071,"rss":249108,"native_total_heap":72704,"native_free_heap":10085,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a009fbe-210b-4a77-a22c-6d58527d9e52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"30b6f1fe-2278-4441-b900-f111df794b70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.68900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg","method":"get","status_code":200,"start_time":337248,"end_time":337508,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Trace_Adkins_2011_%28cropped%29.jpg","content-length":"17847","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"eccc362d7d41607d3ee973226a980fdf","last-modified":"Fri, 29 Oct 2021 06:37:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31aafcd5-19a1-489a-aab3-a0f7d8a20c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg/600px-NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg","method":"get","status_code":200,"start_time":335098,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg.webp","content-length":"101392","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"68e381231db778c003edf6387210fc97","last-modified":"Mon, 20 May 2024 00:03:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22632","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3335aacc-b190-4df2-bf7c-da7a615f6882","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4247e82b-d6a3-47c7-b815-69a6759c3f24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4527dbae-6271-4e01-bef8-08ed1e1e7149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":335485,"end_time":335529,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76028","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"858","content-type":"image/webp","date":"Sun, 19 May 2024 11:54:34 GMT","etag":"2b49d95bfd3ff0b9ebf17e29941d28f3","last-modified":"Fri, 04 Aug 2023 00:38:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/32839","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cd53b69-efaa-4917-b7ae-52f31eb2c2e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.91000000Z","type":"http","http":{"url":"https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script\u0026wikiid=enwiki\u0026mobile=1\u0026mobile=1","method":"get","status_code":200,"start_time":335564,"end_time":335729,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"login.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"275","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-length":"207","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 08:57:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.eqiad.main-5bb8644857-q58xb","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/6004","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"545b9905-9b8a-43f9-917f-d9edaf3d3a96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55437eb2-2da8-4325-ba86-e40c5e757968","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"559642d5-494f-4040-b132-eca7dd895345","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"610660fe-a016-436f-9eab-5dc50362ac04","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.37000000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":66.97266,"y":168.98438,"touch_down_time":337089,"touch_up_time":337186},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"739b21e5-cf28-4c99-8fd3-6c0086a47ae2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=menu\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335292,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''menu.svg","content-encoding":"gzip","content-length":"199","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:41:42 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 05:41:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/223061","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ab50181-95c5-4763-886b-9873a8e9227a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8017b320-ab39-49d0-95d4-cf2899632f09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.23800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":339011,"end_time":339057,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"31739","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg","content-length":"27048","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:12:48 GMT","etag":"532226c726bc4784b6de65095da97cf9","last-modified":"Thu, 03 Jun 2021 20:02:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/60","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"818f6360-b15f-4248-9b16-9e36157880bd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"89d83fae-7bd7-4bf2-83f5-ad52ba24bb09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":335396,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50064","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"256","content-type":"image/webp","date":"Sun, 19 May 2024 19:07:18 GMT","etag":"dc0fbe756f6c20bbb4b2e6502c6b8d93","last-modified":"Thu, 04 Jan 2024 04:19:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fed42c8-0d39-433f-afe5-36cf0003e8c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.88200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg","method":"get","status_code":200,"start_time":337251,"end_time":337701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"25791","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"b40874266cea3519947f7c1703983ecc","last-modified":"Tue, 11 Dec 2018 22:02:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9adbb5b7-4a59-44f7-a2c9-8e590f884cbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Calvin_1993-07-06_1831Z.png/280px-Calvin_1993-07-06_1831Z.png","method":"get","status_code":200,"start_time":335055,"end_time":335349,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Calvin_1993-07-06_1831Z.png.webp","content-length":"93458","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"c6eaa7bba98bd1ac40cf8c3c8db5a25a","last-modified":"Mon, 20 May 2024 00:03:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22700","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b251137c-c444-4ba1-a00a-a85c655dc633","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/238px-Schlosskirche_Weimar_1660.jpg","method":"get","status_code":200,"start_time":335054,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Schlosskirche_Weimar_1660.jpg.webp","content-length":"37142","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"ea61033b16cc202a2cfdb27234ac2416","last-modified":"Mon, 20 May 2024 00:03:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22742","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3592198-653d-490b-b6e1-52c91ce61517","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/70px-Wikispecies-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335524,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"3246","content-disposition":"inline;filename*=UTF-8''Wikispecies-logo.svg.webp","content-length":"5442","content-type":"image/webp","date":"Mon, 20 May 2024 08:07:36 GMT","etag":"85dc48aa591946853764893667e96f42","last-modified":"Thu, 03 Aug 2023 23:09:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1798","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f12ba7-608e-481b-956d-78bdb17fda62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.22200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f6bf91-c5c6-41aa-b2dc-056ae671cfa7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337216,"end_time":337560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"386","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c34f3fb0-bc13-49da-be81-2ae9572b3e26","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/82px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":335480,"end_time":335526,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"80480","content-length":"916","content-type":"image/webp","date":"Sun, 19 May 2024 10:40:22 GMT","etag":"6110b293e5bffd57d56a06bd076ca96f","last-modified":"Sat, 12 Dec 2020 13:25:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/28427","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c7ab0679-47a5-4d73-a4ac-9e11ea57cb55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=settings\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335291,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''settings.svg","content-encoding":"gzip","content-length":"314","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:54:50 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 05:54:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/206645","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c97c50b6-ec67-4dee-998a-bd6e0522235c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=mapPin\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335296,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''mapPin.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:39:31 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:39:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/157656","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cbdce010-cf05-4659-aa4f-343360270000","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70900000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026version=wtz5o","method":"get","status_code":200,"start_time":335105,"end_time":335528,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"194789","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 00:19:18 GMT","etag":"W/\"wtz5o\"","expires":"Wed, 19 Jun 2024 00:19:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-5fd47cfb8c-bv65j","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=wtz5o","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/312","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce35a05e-990e-4ffc-a98c-d535a34a65da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d60d816e-d243-4bb7-97fa-c7ac67c7e91d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.58000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/70px-Wikimedia_Community_Logo.svg.png","method":"get","status_code":200,"start_time":335349,"end_time":335399,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58084","content-disposition":"inline;filename*=UTF-8''Wikimedia_Community_Logo.svg.webp","content-length":"3010","content-type":"image/webp","date":"Sun, 19 May 2024 16:53:38 GMT","etag":"e881cbcfab5fa3858d43fd28dcf8dbab","last-modified":"Sat, 02 Mar 2024 13:24:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/22539","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d940b582-30f3-4823-af95-9fc573c1bb1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.89800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ded7ed13-7c19-40d5-84af-e36e788753c3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337218,"end_time":337561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e076782c-127a-4062-a9c7-8090fb383ad4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":336976,"utime":349,"cutime":0,"cstime":0,"stime":277,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e13be4ef-49f0-4795-86d2-169df684bc6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/70px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":335434,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36746","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"2964","content-type":"image/webp","date":"Sun, 19 May 2024 22:49:16 GMT","etag":"7878462d0cf1af96f988386bb2273e47","last-modified":"Thu, 08 Jun 2023 05:42:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14972","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1bee547-a43e-43a5-84ff-cf109f77b1a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/70px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335525,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71339","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"3108","content-type":"image/webp","date":"Sun, 19 May 2024 13:12:43 GMT","etag":"4a5f64a8591e9e5f16a1d351fa37279e","last-modified":"Sun, 06 Aug 2023 03:18:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29108","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2dc94c0-33d8-4bbc-936d-9015261af1b4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/70px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":335487,"end_time":335537,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44771","content-length":"2716","content-type":"image/webp","date":"Sun, 19 May 2024 20:35:31 GMT","etag":"ea255af81e6cee85a20ca2653440b36f","last-modified":"Fri, 21 Jun 2019 08:13:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14103","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1030304-d329-4018-8bce-db6500bb4e8d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/62px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64144","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1874","content-type":"image/webp","date":"Sun, 19 May 2024 15:12:38 GMT","etag":"89d68591754da30aadbf4fa239146915","last-modified":"Sat, 16 Mar 2024 06:17:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/24712","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1a210a4-d0d6-4197-ba95-1b3a92040419","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f41b3876-853d-4434-80bf-f6d199226050","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.48300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg","method":"get","status_code":200,"start_time":337252,"end_time":337302,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9389","content-disposition":"inline;filename*=UTF-8''Tracy_Chapman_3.jpg","content-length":"36867","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:15 GMT","etag":"1737000a811db04110a0e0c9690bc051","last-modified":"Sat, 17 Jul 2021 22:41:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fb9689cc-8f38-46db-8bac-dc79fdb62092","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.69400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg","method":"get","status_code":200,"start_time":337250,"end_time":337513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Tracy_Ullman_by_John_Mathew_Smith.jpg","content-length":"34400","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"ac97f11c80670ba39aeac4eecc86f3b1","last-modified":"Thu, 21 Mar 2024 03:12:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf0d2ab-0d89-416e-9cc7-c6dc1249d67f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337217,"end_time":337562,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json index b10e02770..088869f03 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json @@ -1 +1 @@ -[{"id":"00431bcf-3a77-4a4b-b39c-4930e7f58c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0718d2c8-d768-4581-a472-959963f259c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.49100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","method":"get","status_code":200,"start_time":363249,"end_time":363310,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15736","content-disposition":"inline;filename*=UTF-8''Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","content-length":"340167","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:39:54 GMT","etag":"99c8e496cef63000e3cd8971a95f8129","last-modified":"Thu, 07 Sep 2023 13:29:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/291","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0951a8b7-2511-454e-a27d-0fb6f2ce6c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":369975,"utime":556,"cutime":0,"cstime":0,"stime":590,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17224cbe-4469-4039-8c30-dcea82eb689c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.19500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2411,"total_pss":146103,"rss":226528,"native_total_heap":76800,"native_free_heap":9584,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21997fdc-d459-4e9f-827a-e8210cb8221e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27ca49cf-69f5-4b33-bfd0-89fd99241d6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b0c4ccc-0245-4b14-aace-8166b5cae08c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.49400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":364266,"end_time":364313,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36493","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"377229a3-993f-4e85-a999-3fb66040514d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.34500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":364117,"end_time":364164,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45507","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fe49ca9-f32e-4149-bba4-1e5d42c84b3a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:07.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2755,"total_pss":145821,"rss":225892,"native_total_heap":76800,"native_free_heap":10075,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ffd8b2a-6ae6-4873-afaf-ffc6665b63d8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.30200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358823,"end_time":359121,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"104718","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"43a54e4f-52d9-4b2c-93f9-866508e68526","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.90400000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":649.9512,"y":1236.9141,"touch_down_time":367605,"touch_up_time":367720},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44e18ca8-c7b2-473b-b2d2-8484b480d2c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.95200000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":358721,"end_time":358771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36488","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20452","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4ef2a2d1-0b3e-488a-b5e2-a9c70a4607d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.54100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364315,"end_time":364360,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bbeb3c211a8b5fc824010e5100bf3ec4","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39077","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5548abcf-749a-4cb3-9f7c-9b1551527ec3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5670e3dc-d6db-4670-9144-f70e3ffe5f3f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.69800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":363469,"end_time":363516,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9605","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/24","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bdbef72-9715-4140-ac42-14fb6813f794","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:08.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":360976,"utime":494,"cutime":0,"cstime":0,"stime":519,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e0a7d39-f688-4e08-9d7e-7e85fb059679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.39600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":483.96973,"y":1411.9336,"end_x":578.9575,"end_y":759.96094,"direction":"up","touch_down_time":363015,"touch_up_time":363214},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e4ded0a-eebc-4aae-aadf-98b7224a881a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.20200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":304,"start_time":363968,"end_time":364021,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9361","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62b64a5c-2f8d-4e07-8f80-1753a1f7dba0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367780,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63824","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","content-length":"32816","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:18:30 GMT","etag":"eda7318d44ebe04db6f3236f5cff3d42","last-modified":"Mon, 30 Oct 2023 00:29:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/65","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6460a1a3-dd05-4c32-8fa3-3c88d60e63de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"695a0945-e6b5-4d87-ad56-2b870063ae23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":5677,"total_pss":150951,"rss":231932,"native_total_heap":85504,"native_free_heap":12501,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6bf86568-199b-4e81-b4f6-c4cd1990e00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367775,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9627","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"13011","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/27","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Raisi's_helicopter_leaving_Khudafarin_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a1a27-45f3-4198-806f-226b735e5585","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.01100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG","method":"get","status_code":200,"start_time":367777,"end_time":367830,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63535","content-disposition":"inline;filename*=UTF-8''Gol-Akhoor_waterfall.JPG","content-length":"62729","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:23:21 GMT","etag":"2a7e216843971489011a8a386fc6b51c","last-modified":"Mon, 12 Jun 2023 06:59:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/64","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7080f330-2851-4933-891e-2b6242163afd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"74524ed1-019d-4319-842d-4b691976cde3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.26000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":304,"start_time":364025,"end_time":364079,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4700","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"759530fb-09ea-4fdf-953b-fadb7abb9ae9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.53100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":153.98438,"touch_down_time":370262,"touch_up_time":370348},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7b5474ec-b8df-49e2-9e13-0c6bc4c2fdab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.99000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":563.9612,"y":953.96484,"touch_down_time":363639,"touch_up_time":363807},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ca39c1a-99ab-4559-9159-4f3063831ce7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80659031-e0d5-4d6f-9e3e-6a71220a9348","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.63500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":304,"start_time":364411,"end_time":364454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"17f15e754551c0f96ef3af69e6bc00f6","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"648","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a5a3e69-29d2-4b98-8b12-d59e121d3cba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8c4a677b-b606-49bf-972f-ea077b727e65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.25100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":304,"start_time":364024,"end_time":364070,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"7","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d35ccc9-570a-4116-a329-aa8e2aff9c3b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.27200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":364067,"end_time":364091,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"172000","content-type":"multipart/form-data; boundary=ad24492e-e4c7-4f2a-b995-85a54e1e0993","host":"10.0.2.2:8080","msr-req-id":"5f604642-8ee6-41d5-9b51-dfef9b2b2fce","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f1da93c-87c7-41c2-ac07-00e3d594bd90","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.44400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":364216,"end_time":364263,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39511","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21526","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d82b47-ac5d-4f53-a999-0a054005d9fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.83200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":1032.9675,"y":702.9492,"touch_down_time":364561,"touch_up_time":364648},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ee1db8c-e603-47e4-a5b3-471499fb5485","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.58700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364362,"end_time":364406,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"4722bf973b3f7bfaf91a20ac20db270f","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"5","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a3f3531c-ed3e-412c-8142-35b199e6291e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":366977,"utime":539,"cutime":0,"cstime":0,"stime":567,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a69be404-d9fa-43cb-9277-7596c18d4cbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac762fb3-5d61-4076-b71d-5a12cfd8474c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.00200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358774,"end_time":358821,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39071","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"59770","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acc3074a-b2d9-4bad-ac5b-237cedae60e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20290,"java_free_heap":4913,"total_pss":148197,"rss":228728,"native_total_heap":81408,"native_free_heap":11576,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bfdd8dde-ae3b-4aab-b8aa-7e351edd0c31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c67624b0-1549-471d-aaad-526ff22fa1f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":363976,"utime":518,"cutime":0,"cstime":0,"stime":543,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c6a5bd5f-8662-4e7c-bb53-fc1952d80392","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.42000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":200,"start_time":359125,"end_time":359239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"642","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-length":"735969","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c8f62cda-de61-4ba6-9174-3715cac5b9ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d160a812-aef6-48e3-b260-f9593e523894","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5105184-9027-4b35-9cdb-759e6363c1d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7a23a36-8a48-4153-a26e-3573fa721942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.21800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":367735,"end_time":368037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"5890","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9b52a7-5e29-4a1d-819a-43d397d9503f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.93500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ed0f5052-aa15-4392-a2ca-923c14cd5859","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22806,"java_free_heap":2470,"total_pss":152163,"rss":232552,"native_total_heap":81408,"native_free_heap":10292,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec06ab6-4b8d-4a65-92f1-6adabd6d76c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":6111,"total_pss":153982,"rss":234564,"native_total_heap":85504,"native_free_heap":12040,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0c2c74b-15dc-45b7-a0d1-e0e6b569b23d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.39500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":364167,"end_time":364214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38602","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11208","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"00431bcf-3a77-4a4b-b39c-4930e7f58c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0718d2c8-d768-4581-a472-959963f259c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.49100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","method":"get","status_code":200,"start_time":363249,"end_time":363310,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15736","content-disposition":"inline;filename*=UTF-8''Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","content-length":"340167","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:39:54 GMT","etag":"99c8e496cef63000e3cd8971a95f8129","last-modified":"Thu, 07 Sep 2023 13:29:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/291","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0951a8b7-2511-454e-a27d-0fb6f2ce6c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":369975,"utime":556,"cutime":0,"cstime":0,"stime":590,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17224cbe-4469-4039-8c30-dcea82eb689c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.19500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2411,"total_pss":146103,"rss":226528,"native_total_heap":76800,"native_free_heap":9584,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21997fdc-d459-4e9f-827a-e8210cb8221e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27ca49cf-69f5-4b33-bfd0-89fd99241d6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b0c4ccc-0245-4b14-aace-8166b5cae08c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.49400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":364266,"end_time":364313,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36493","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"377229a3-993f-4e85-a999-3fb66040514d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.34500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":364117,"end_time":364164,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45507","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fe49ca9-f32e-4149-bba4-1e5d42c84b3a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:07.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2755,"total_pss":145821,"rss":225892,"native_total_heap":76800,"native_free_heap":10075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ffd8b2a-6ae6-4873-afaf-ffc6665b63d8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.30200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358823,"end_time":359121,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"104718","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"43a54e4f-52d9-4b2c-93f9-866508e68526","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.90400000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":649.9512,"y":1236.9141,"touch_down_time":367605,"touch_up_time":367720},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44e18ca8-c7b2-473b-b2d2-8484b480d2c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.95200000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":358721,"end_time":358771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36488","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20452","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4ef2a2d1-0b3e-488a-b5e2-a9c70a4607d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.54100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364315,"end_time":364360,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bbeb3c211a8b5fc824010e5100bf3ec4","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39077","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5548abcf-749a-4cb3-9f7c-9b1551527ec3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5670e3dc-d6db-4670-9144-f70e3ffe5f3f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.69800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":363469,"end_time":363516,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9605","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/24","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bdbef72-9715-4140-ac42-14fb6813f794","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:08.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":360976,"utime":494,"cutime":0,"cstime":0,"stime":519,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e0a7d39-f688-4e08-9d7e-7e85fb059679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.39600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":483.96973,"y":1411.9336,"end_x":578.9575,"end_y":759.96094,"direction":"up","touch_down_time":363015,"touch_up_time":363214},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e4ded0a-eebc-4aae-aadf-98b7224a881a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.20200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":304,"start_time":363968,"end_time":364021,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9361","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62b64a5c-2f8d-4e07-8f80-1753a1f7dba0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367780,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63824","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","content-length":"32816","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:18:30 GMT","etag":"eda7318d44ebe04db6f3236f5cff3d42","last-modified":"Mon, 30 Oct 2023 00:29:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/65","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6460a1a3-dd05-4c32-8fa3-3c88d60e63de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"695a0945-e6b5-4d87-ad56-2b870063ae23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":5677,"total_pss":150951,"rss":231932,"native_total_heap":85504,"native_free_heap":12501,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6bf86568-199b-4e81-b4f6-c4cd1990e00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367775,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9627","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"13011","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/27","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Raisi's_helicopter_leaving_Khudafarin_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a1a27-45f3-4198-806f-226b735e5585","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.01100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG","method":"get","status_code":200,"start_time":367777,"end_time":367830,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63535","content-disposition":"inline;filename*=UTF-8''Gol-Akhoor_waterfall.JPG","content-length":"62729","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:23:21 GMT","etag":"2a7e216843971489011a8a386fc6b51c","last-modified":"Mon, 12 Jun 2023 06:59:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/64","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7080f330-2851-4933-891e-2b6242163afd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"74524ed1-019d-4319-842d-4b691976cde3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.26000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":304,"start_time":364025,"end_time":364079,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4700","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"759530fb-09ea-4fdf-953b-fadb7abb9ae9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.53100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":153.98438,"touch_down_time":370262,"touch_up_time":370348},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7b5474ec-b8df-49e2-9e13-0c6bc4c2fdab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.99000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":563.9612,"y":953.96484,"touch_down_time":363639,"touch_up_time":363807},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ca39c1a-99ab-4559-9159-4f3063831ce7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80659031-e0d5-4d6f-9e3e-6a71220a9348","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.63500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":304,"start_time":364411,"end_time":364454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"17f15e754551c0f96ef3af69e6bc00f6","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"648","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a5a3e69-29d2-4b98-8b12-d59e121d3cba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8c4a677b-b606-49bf-972f-ea077b727e65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.25100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":304,"start_time":364024,"end_time":364070,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"7","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d35ccc9-570a-4116-a329-aa8e2aff9c3b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.27200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":364067,"end_time":364091,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"172000","content-type":"multipart/form-data; boundary=ad24492e-e4c7-4f2a-b995-85a54e1e0993","host":"10.0.2.2:8080","msr-req-id":"5f604642-8ee6-41d5-9b51-dfef9b2b2fce","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f1da93c-87c7-41c2-ac07-00e3d594bd90","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.44400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":364216,"end_time":364263,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39511","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21526","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d82b47-ac5d-4f53-a999-0a054005d9fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.83200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":1032.9675,"y":702.9492,"touch_down_time":364561,"touch_up_time":364648},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ee1db8c-e603-47e4-a5b3-471499fb5485","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.58700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364362,"end_time":364406,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"4722bf973b3f7bfaf91a20ac20db270f","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"5","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a3f3531c-ed3e-412c-8142-35b199e6291e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":366977,"utime":539,"cutime":0,"cstime":0,"stime":567,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a69be404-d9fa-43cb-9277-7596c18d4cbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac762fb3-5d61-4076-b71d-5a12cfd8474c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.00200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358774,"end_time":358821,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39071","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"59770","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acc3074a-b2d9-4bad-ac5b-237cedae60e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20290,"java_free_heap":4913,"total_pss":148197,"rss":228728,"native_total_heap":81408,"native_free_heap":11576,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bfdd8dde-ae3b-4aab-b8aa-7e351edd0c31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c67624b0-1549-471d-aaad-526ff22fa1f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":363976,"utime":518,"cutime":0,"cstime":0,"stime":543,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c6a5bd5f-8662-4e7c-bb53-fc1952d80392","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.42000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":200,"start_time":359125,"end_time":359239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"642","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-length":"735969","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c8f62cda-de61-4ba6-9174-3715cac5b9ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d160a812-aef6-48e3-b260-f9593e523894","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5105184-9027-4b35-9cdb-759e6363c1d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7a23a36-8a48-4153-a26e-3573fa721942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.21800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":367735,"end_time":368037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"5890","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9b52a7-5e29-4a1d-819a-43d397d9503f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.93500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ed0f5052-aa15-4392-a2ca-923c14cd5859","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22806,"java_free_heap":2470,"total_pss":152163,"rss":232552,"native_total_heap":81408,"native_free_heap":10292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec06ab6-4b8d-4a65-92f1-6adabd6d76c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":6111,"total_pss":153982,"rss":234564,"native_total_heap":85504,"native_free_heap":12040,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0c2c74b-15dc-45b7-a0d1-e0e6b569b23d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.39500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":364167,"end_time":364214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38602","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11208","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json index 81d4057df..80bd0a42f 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json @@ -1 +1 @@ -[{"id":"032b085d-46f3-4b11-8fab-ecbc661251b3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"04bd5edd-5c81-491a-bfed-f146faee8810","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.43600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":401.96777,"y":1969.9219,"end_x":401.96777,"end_y":1583.1761,"direction":"up","touch_down_time":192751,"touch_up_time":192919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0bd1abee-e440-46ea-b44c-c2520e1bf578","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18276c70-949d-4538-a4e9-1c6cf4b7d63b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":201276,"end_time":201302,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"261d641e-c831-4a4e-89bb-f5517c702e28","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.15700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193589,"end_time":193641,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aaee5ff-55ce-4c81-b134-5828f3570728","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:00.46000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":181945,"utime":280,"cutime":0,"cstime":0,"stime":131,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3365b390-8bce-4d39-af99-2c0ddf8d845d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193645,"end_time":195111,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36518dd7-85fd-46a4-a59d-a8c1a409821c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:21.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30739,"java_free_heap":3550,"total_pss":107604,"rss":172304,"native_total_heap":52276,"native_free_heap":21451,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3d56a234-d87d-40c9-8470-4d8aa7915ffb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"41443545-4502-4127-a24f-8a964f5403a7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28207,"java_free_heap":1996,"total_pss":104512,"rss":169580,"native_total_heap":49399,"native_free_heap":23305,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"418141a2-9896-4be8-8627-68879b8880df","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4392b0d7-a19c-43b0-b75b-66ed37e6f071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1394,"total_pss":108463,"rss":172300,"native_total_heap":51028,"native_free_heap":19627,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4418a731-f9e2-4dce-9dc6-554468f84394","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":184939,"utime":282,"cutime":0,"cstime":0,"stime":132,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"46d03a38-1f56-4457-aefb-23a9e4aa1614","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"505951ad-adf6-40c9-90fb-9a2a7d8330ce","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":178939,"utime":268,"cutime":0,"cstime":0,"stime":128,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"516dcaae-4eb1-4570-ab3a-a46bf1574692","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5634cdb1-a688-41ae-a31e-a40aecfbbecd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":201270,"utime":322,"cutime":0,"cstime":0,"stime":144,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f9503c2-cad4-4eac-b72f-efd98efaf531","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":193939,"utime":309,"cutime":0,"cstime":0,"stime":140,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6421714b-b5f1-4c74-8187-114cdafb9fc2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"646d0813-8594-4405-b866-f9ffdb5196d9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":190939,"utime":290,"cutime":0,"cstime":0,"stime":135,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"66b755c1-a4a5-4b00-b6ca-c7885777dfd7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:59.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1898,"total_pss":110319,"rss":174372,"native_total_heap":50436,"native_free_heap":20219,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6aa77de6-5ce9-4f54-a69b-6884426dc099","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:05.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1500,"total_pss":108407,"rss":172300,"native_total_heap":50737,"native_free_heap":19918,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"723a0918-d50b-456e-b250-98a6af4d576b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:17.48800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":188961,"end_time":198973,"failure_reason":"java.net.SocketException","failure_description":"recvfrom failed: EBADF (Bad file number)","request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"377696","content-type":"multipart/form-data; boundary=17358cbb-c31c-47a1-becd-f825804e67e9","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"75ac9bbf-4595-406b-94e9-d489bc71204d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.75100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":178905,"end_time":179236,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"698","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:58 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"78e98aa5-902d-48c7-8215-b70782ce2688","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7c9234b0-a0b3-4c8f-9d7f-75c38a5a751d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e9d31ff-b68f-4575-8ed6-e96b5a0452f7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:06.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":187940,"utime":284,"cutime":0,"cstime":0,"stime":133,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"872748c1-6c85-4dbd-81da-8d00de7446c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":3666,"total_pss":110125,"rss":174120,"native_total_heap":49922,"native_free_heap":21757,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89d7be22-b91b-4991-987e-847b03a35406","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.83300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":201275,"on_next_draw_uptime":201316,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f8401f5-122f-423e-bcc3-fd893f7e4802","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":201282,"end_time":201303,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"355139","content-type":"multipart/form-data; boundary=844339aa-0812-4125-973a-59486f762140","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:12:20 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"90927d5a-0ac7-4f13-92b5-f632b676985a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.16000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193352,"end_time":193644,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a01dcb00-71fd-4684-a360-3f05b008421d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":201276,"end_time":201296,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a1083b98-2343-42b3-9fee-28e1bcd24559","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a25a2959-3c97-48f6-af44-c97cacd425b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a60407cf-872c-44a3-bda5-82cce70a9542","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.52300000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":178931,"on_next_draw_uptime":179008,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b09d6fb9-ed37-473e-9dbb-aa2ce91ed56f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46f582b-5327-4855-a0ff-92fdc6d9672c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4f6fbfb-03c4-4c74-830f-cdd157d0d0c6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9d0011b-962d-4544-a529-c71eeec48ae9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb3d7bef-812f-4221-a3dc-46aa2ade7811","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:01.45800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1797,"total_pss":110382,"rss":174400,"native_total_heap":50695,"native_free_heap":19960,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be035dc2-32fc-4559-bac1-ebf51d47eede","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":2556,"total_pss":111294,"rss":175264,"native_total_heap":50689,"native_free_heap":20990,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6735d23-f3e7-4b3d-bc90-e0ccbead83cb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d0e25e9a-475f-48df-a25f-eb67f835a670","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":31347,"java_free_heap":3860,"total_pss":110954,"rss":175216,"native_total_heap":51135,"native_free_heap":21568,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d4bba0ef-fc95-4b61-9ab8-c45f29523313","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1564,"total_pss":108383,"rss":172300,"native_total_heap":50911,"native_free_heap":19744,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"de113023-ac9e-4eaa-b0d7-5d1a85f37015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.36500000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":581.9568,"y":1528.9307,"end_x":210.97046,"end_y":1528.9307,"direction":"left","touch_down_time":203718,"touch_up_time":203849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e762c0ff-96ed-48b8-beb8-433e02ba78ec","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8bba1ff-e38a-4043-aefc-e957b5a1ca99","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8f9fd11-6130-43b9-b9cd-739dd30822c0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30220,"java_free_heap":0,"total_pss":114214,"rss":176812,"native_total_heap":50108,"native_free_heap":20547,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"eefe1601-415f-4b49-bd11-956e7ca72c1c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4d069d3-0678-4c91-9b40-b2cde0496645","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193646,"end_time":195112,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"032b085d-46f3-4b11-8fab-ecbc661251b3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"04bd5edd-5c81-491a-bfed-f146faee8810","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.43600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":401.96777,"y":1969.9219,"end_x":401.96777,"end_y":1583.1761,"direction":"up","touch_down_time":192751,"touch_up_time":192919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0bd1abee-e440-46ea-b44c-c2520e1bf578","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18276c70-949d-4538-a4e9-1c6cf4b7d63b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":201276,"end_time":201302,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"261d641e-c831-4a4e-89bb-f5517c702e28","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.15700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193589,"end_time":193641,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aaee5ff-55ce-4c81-b134-5828f3570728","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:00.46000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":181945,"utime":280,"cutime":0,"cstime":0,"stime":131,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3365b390-8bce-4d39-af99-2c0ddf8d845d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193645,"end_time":195111,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36518dd7-85fd-46a4-a59d-a8c1a409821c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:21.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30739,"java_free_heap":3550,"total_pss":107604,"rss":172304,"native_total_heap":52276,"native_free_heap":21451,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3d56a234-d87d-40c9-8470-4d8aa7915ffb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"41443545-4502-4127-a24f-8a964f5403a7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28207,"java_free_heap":1996,"total_pss":104512,"rss":169580,"native_total_heap":49399,"native_free_heap":23305,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"418141a2-9896-4be8-8627-68879b8880df","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4392b0d7-a19c-43b0-b75b-66ed37e6f071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1394,"total_pss":108463,"rss":172300,"native_total_heap":51028,"native_free_heap":19627,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4418a731-f9e2-4dce-9dc6-554468f84394","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":184939,"utime":282,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"46d03a38-1f56-4457-aefb-23a9e4aa1614","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"505951ad-adf6-40c9-90fb-9a2a7d8330ce","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":178939,"utime":268,"cutime":0,"cstime":0,"stime":128,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"516dcaae-4eb1-4570-ab3a-a46bf1574692","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5634cdb1-a688-41ae-a31e-a40aecfbbecd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":201270,"utime":322,"cutime":0,"cstime":0,"stime":144,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f9503c2-cad4-4eac-b72f-efd98efaf531","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":193939,"utime":309,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6421714b-b5f1-4c74-8187-114cdafb9fc2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"646d0813-8594-4405-b866-f9ffdb5196d9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":190939,"utime":290,"cutime":0,"cstime":0,"stime":135,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"66b755c1-a4a5-4b00-b6ca-c7885777dfd7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:59.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1898,"total_pss":110319,"rss":174372,"native_total_heap":50436,"native_free_heap":20219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6aa77de6-5ce9-4f54-a69b-6884426dc099","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:05.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1500,"total_pss":108407,"rss":172300,"native_total_heap":50737,"native_free_heap":19918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"723a0918-d50b-456e-b250-98a6af4d576b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:17.48800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":188961,"end_time":198973,"failure_reason":"java.net.SocketException","failure_description":"recvfrom failed: EBADF (Bad file number)","request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"377696","content-type":"multipart/form-data; boundary=17358cbb-c31c-47a1-becd-f825804e67e9","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"75ac9bbf-4595-406b-94e9-d489bc71204d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.75100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":178905,"end_time":179236,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"698","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:58 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"78e98aa5-902d-48c7-8215-b70782ce2688","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7c9234b0-a0b3-4c8f-9d7f-75c38a5a751d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e9d31ff-b68f-4575-8ed6-e96b5a0452f7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:06.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":187940,"utime":284,"cutime":0,"cstime":0,"stime":133,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"872748c1-6c85-4dbd-81da-8d00de7446c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":3666,"total_pss":110125,"rss":174120,"native_total_heap":49922,"native_free_heap":21757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89d7be22-b91b-4991-987e-847b03a35406","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.83300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":201275,"on_next_draw_uptime":201316,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f8401f5-122f-423e-bcc3-fd893f7e4802","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":201282,"end_time":201303,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"355139","content-type":"multipart/form-data; boundary=844339aa-0812-4125-973a-59486f762140","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:12:20 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"90927d5a-0ac7-4f13-92b5-f632b676985a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.16000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193352,"end_time":193644,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a01dcb00-71fd-4684-a360-3f05b008421d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":201276,"end_time":201296,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a1083b98-2343-42b3-9fee-28e1bcd24559","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a25a2959-3c97-48f6-af44-c97cacd425b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a60407cf-872c-44a3-bda5-82cce70a9542","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.52300000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":178931,"on_next_draw_uptime":179008,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b09d6fb9-ed37-473e-9dbb-aa2ce91ed56f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46f582b-5327-4855-a0ff-92fdc6d9672c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4f6fbfb-03c4-4c74-830f-cdd157d0d0c6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9d0011b-962d-4544-a529-c71eeec48ae9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb3d7bef-812f-4221-a3dc-46aa2ade7811","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:01.45800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1797,"total_pss":110382,"rss":174400,"native_total_heap":50695,"native_free_heap":19960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be035dc2-32fc-4559-bac1-ebf51d47eede","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":2556,"total_pss":111294,"rss":175264,"native_total_heap":50689,"native_free_heap":20990,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6735d23-f3e7-4b3d-bc90-e0ccbead83cb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d0e25e9a-475f-48df-a25f-eb67f835a670","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":31347,"java_free_heap":3860,"total_pss":110954,"rss":175216,"native_total_heap":51135,"native_free_heap":21568,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d4bba0ef-fc95-4b61-9ab8-c45f29523313","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1564,"total_pss":108383,"rss":172300,"native_total_heap":50911,"native_free_heap":19744,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"de113023-ac9e-4eaa-b0d7-5d1a85f37015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.36500000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":581.9568,"y":1528.9307,"end_x":210.97046,"end_y":1528.9307,"direction":"left","touch_down_time":203718,"touch_up_time":203849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e762c0ff-96ed-48b8-beb8-433e02ba78ec","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8bba1ff-e38a-4043-aefc-e957b5a1ca99","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8f9fd11-6130-43b9-b9cd-739dd30822c0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30220,"java_free_heap":0,"total_pss":114214,"rss":176812,"native_total_heap":50108,"native_free_heap":20547,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"eefe1601-415f-4b49-bd11-956e7ca72c1c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4d069d3-0678-4c91-9b40-b2cde0496645","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193646,"end_time":195112,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json index 17f9f8650..c3fe941bb 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json @@ -1 +1 @@ -[{"id":"07dcd62f-40cd-41b9-bd9d-84283e60c721","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":134610,"utime":78,"cutime":0,"cstime":0,"stime":37,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"13d5a1d4-e035-40a3-bbf3-ecc790dfd7cd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:10.12200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":131606,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25809c78-6509-43e9-87ea-3a337c625f37","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3543,"total_pss":90977,"rss":154332,"native_total_heap":45329,"native_free_heap":13038,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39721749-2554-4739-a6e1-58300def847a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3884,"total_pss":92189,"rss":155264,"native_total_heap":45289,"native_free_heap":13078,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"459b3b7a-35e5-43f9-a159-1921d519932a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3023,"total_pss":91169,"rss":154904,"native_total_heap":45152,"native_free_heap":13215,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"501ea7d3-d617-40e2-85b6-b2ade9bab48e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:09.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3813,"total_pss":90845,"rss":153904,"native_total_heap":45297,"native_free_heap":13070,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"55d803ca-2e4c-45af-8a68-08730a4548af","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:17.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3282,"total_pss":91049,"rss":154640,"native_total_heap":45114,"native_free_heap":13253,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d690d7e-ad94-4676-8784-13cc3b40b61d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.73000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":136883,"end_time":137214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"345","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:16 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c756271-1ba8-431d-9f63-6d5bd9f52093","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.29000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":124734,"end_time":124775,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"478384","content-type":"multipart/form-data; boundary=7c8b5250-1a16-4ed9-ba91-2a079d47749c","host":"10.0.2.2:8080","msr-req-id":"c7340029-e1f6-46eb-8dbd-c37da561fd7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6f58a219-526c-4213-afdc-e8971624f165","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:22.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":143609,"utime":82,"cutime":0,"cstime":0,"stime":43,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7ccc67c3-5c9b-4e45-a485-5bf1b64f6aba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:04.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":125606,"utime":76,"cutime":0,"cstime":0,"stime":31,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8bda4da4-68a0-4a4a-88dc-19d51eabcbf7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:05.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3972,"total_pss":92165,"rss":155264,"native_total_heap":45257,"native_free_heap":13110,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f980a68-578e-4dce-8aef-f3b5fea8bc3f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":140610,"utime":81,"cutime":0,"cstime":0,"stime":42,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9b734be7-1cff-47a1-8f4c-2859a723ca70","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:21.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3123,"total_pss":91121,"rss":154904,"native_total_heap":45146,"native_free_heap":13221,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a708acb4-175f-4bab-b550-6eb8e5d2de7d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:11.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3713,"total_pss":90897,"rss":153904,"native_total_heap":45301,"native_free_heap":13066,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ac4f5652-7760-44ac-a286-6b14edd39f31","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3625,"total_pss":90949,"rss":154068,"native_total_heap":45321,"native_free_heap":13046,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1730f1e-fadc-4621-8117-57de6194920c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:16.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":137611,"utime":81,"cutime":0,"cstime":0,"stime":39,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e6a29790-dd80-4e12-921d-186a2757d841","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3184,"total_pss":91097,"rss":154904,"native_total_heap":45138,"native_free_heap":13229,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc0a86ca-76b2-4adf-b6b7-8494d5284f8d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":128606,"utime":77,"cutime":0,"cstime":0,"stime":32,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"07dcd62f-40cd-41b9-bd9d-84283e60c721","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":134610,"utime":78,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"13d5a1d4-e035-40a3-bbf3-ecc790dfd7cd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:10.12200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":131606,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25809c78-6509-43e9-87ea-3a337c625f37","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3543,"total_pss":90977,"rss":154332,"native_total_heap":45329,"native_free_heap":13038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39721749-2554-4739-a6e1-58300def847a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3884,"total_pss":92189,"rss":155264,"native_total_heap":45289,"native_free_heap":13078,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"459b3b7a-35e5-43f9-a159-1921d519932a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3023,"total_pss":91169,"rss":154904,"native_total_heap":45152,"native_free_heap":13215,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"501ea7d3-d617-40e2-85b6-b2ade9bab48e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:09.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3813,"total_pss":90845,"rss":153904,"native_total_heap":45297,"native_free_heap":13070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"55d803ca-2e4c-45af-8a68-08730a4548af","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:17.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3282,"total_pss":91049,"rss":154640,"native_total_heap":45114,"native_free_heap":13253,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d690d7e-ad94-4676-8784-13cc3b40b61d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.73000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":136883,"end_time":137214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"345","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:16 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c756271-1ba8-431d-9f63-6d5bd9f52093","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.29000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":124734,"end_time":124775,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"478384","content-type":"multipart/form-data; boundary=7c8b5250-1a16-4ed9-ba91-2a079d47749c","host":"10.0.2.2:8080","msr-req-id":"c7340029-e1f6-46eb-8dbd-c37da561fd7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6f58a219-526c-4213-afdc-e8971624f165","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:22.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":143609,"utime":82,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7ccc67c3-5c9b-4e45-a485-5bf1b64f6aba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:04.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":125606,"utime":76,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8bda4da4-68a0-4a4a-88dc-19d51eabcbf7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:05.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3972,"total_pss":92165,"rss":155264,"native_total_heap":45257,"native_free_heap":13110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f980a68-578e-4dce-8aef-f3b5fea8bc3f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":140610,"utime":81,"cutime":0,"cstime":0,"stime":42,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9b734be7-1cff-47a1-8f4c-2859a723ca70","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:21.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3123,"total_pss":91121,"rss":154904,"native_total_heap":45146,"native_free_heap":13221,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a708acb4-175f-4bab-b550-6eb8e5d2de7d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:11.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3713,"total_pss":90897,"rss":153904,"native_total_heap":45301,"native_free_heap":13066,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ac4f5652-7760-44ac-a286-6b14edd39f31","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3625,"total_pss":90949,"rss":154068,"native_total_heap":45321,"native_free_heap":13046,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1730f1e-fadc-4621-8117-57de6194920c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:16.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":137611,"utime":81,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e6a29790-dd80-4e12-921d-186a2757d841","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3184,"total_pss":91097,"rss":154904,"native_total_heap":45138,"native_free_heap":13229,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc0a86ca-76b2-4adf-b6b7-8494d5284f8d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":128606,"utime":77,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json b/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json index 516288938..cce2acba8 100644 --- a/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json +++ b/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json @@ -1 +1 @@ -[{"id":"22210bce-39aa-4016-82e5-8bd0c09ba571","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.63600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22cb2555-6832-4d5f-bbff-2ca8101e0df4","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:47:01.84300000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14715"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41f3b6a6-82d3-4955-9bd9-98318bbd4457","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.78600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5695510,"process_start_requested_uptime":5695447,"content_provider_attach_uptime":5695526,"on_next_draw_uptime":5695744,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4541be1d-4057-478c-8220-d2a25eb38d62","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184896,"total_pss":30561,"rss":140080,"native_total_heap":22268,"native_free_heap":1090,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8ba47a40-2864-42f5-9992-27f8026beb4b","session_id":"8ffa23ce-13b7-4b31-b45a-a23bc82f53ca","timestamp":"2024-04-29T11:47:04.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2c2e6d2-1a85-4901-bd54-2d224755297d","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2e50c40-f135-471e-b341-930e3ab37600","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5695821,"end_time":5695850,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"14765","content-type":"multipart/form-data; boundary=f0544bac-8108-4896-a327-c31ad7afddbc","host":"10.0.2.2:8080","msr-req-id":"495fae08-a7e7-4555-b0ce-d078179f036a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:47:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1c79a59-e7c8-43ab-8cf5-f09382f3d041","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.61100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":569545,"uptime":5695569,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"22210bce-39aa-4016-82e5-8bd0c09ba571","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.63600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22cb2555-6832-4d5f-bbff-2ca8101e0df4","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:47:01.84300000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14715"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41f3b6a6-82d3-4955-9bd9-98318bbd4457","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.78600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5695510,"process_start_requested_uptime":5695447,"content_provider_attach_uptime":5695526,"on_next_draw_uptime":5695744,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4541be1d-4057-478c-8220-d2a25eb38d62","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184896,"total_pss":30561,"rss":140080,"native_total_heap":22268,"native_free_heap":1090,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8ba47a40-2864-42f5-9992-27f8026beb4b","session_id":"8ffa23ce-13b7-4b31-b45a-a23bc82f53ca","timestamp":"2024-04-29T11:47:04.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2c2e6d2-1a85-4901-bd54-2d224755297d","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2e50c40-f135-471e-b341-930e3ab37600","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5695821,"end_time":5695850,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"14765","content-type":"multipart/form-data; boundary=f0544bac-8108-4896-a327-c31ad7afddbc","host":"10.0.2.2:8080","msr-req-id":"495fae08-a7e7-4555-b0ce-d078179f036a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:47:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1c79a59-e7c8-43ab-8cf5-f09382f3d041","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.61100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":569545,"uptime":5695569,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json b/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json index 822cb6991..b12a86343 100644 --- a/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json +++ b/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json @@ -1 +1 @@ -[{"id":"05832c7e-5ba0-4cbc-9f0e-4a1473b10e4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.39000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542431,"end_time":542442,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0905248d-35ea-414b-b22f-a47e92641ed2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4264,"total_pss":35964,"rss":109128,"native_total_heap":25016,"native_free_heap":2840,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1165042d-38e1-47c6-a522-241af0136ccd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:24.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":573229,"utime":73,"cutime":0,"cstime":0,"stime":81,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16a36143-1641-4cba-8ebf-555bb61587b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2144,"total_pss":37589,"rss":110888,"native_total_heap":25016,"native_free_heap":2450,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22419ce1-aec3-4a36-895e-b68a850098f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4336,"total_pss":36503,"rss":108920,"native_total_heap":25016,"native_free_heap":2876,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227fa2b5-c5be-4167-a4ed-5232a93609e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":544,"total_pss":38604,"rss":110728,"native_total_heap":25016,"native_free_heap":2195,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c8828a-7f11-41c4-ad09-59d27b5b89e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552398,"end_time":552413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4344e037-4559-43d9-8910-50a0c3d130d0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.39200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572430,"end_time":572444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"451609b7-7637-4fbc-9b05-9b4851092d07","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582399,"end_time":582420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47fa3f2e-2b72-4b3f-95a9-fe1922620518","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:06.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":555227,"utime":60,"cutime":0,"cstime":0,"stime":69,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5093c557-490c-4264-9e23-03bf95e3d824","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":558227,"utime":61,"cutime":0,"cstime":0,"stime":71,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55199df2-ea13-4ebd-9d28-551f8e2a2b50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1108,"total_pss":35179,"rss":104748,"native_total_heap":25016,"native_free_heap":2262,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"572a50c6-1664-4fc4-8709-d9c2deefb7ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:31.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1196,"total_pss":35131,"rss":104748,"native_total_heap":25016,"native_free_heap":2294,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5825b610-6c6b-466b-a2d0-e59178a2151c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552420,"end_time":552433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c48fd7-1538-43af-9e7b-f925b6febccf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":668,"total_pss":38429,"rss":110664,"native_total_heap":25016,"native_free_heap":2196,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a82f197-5e64-4be3-a45b-2d43cf8f104f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2356,"total_pss":37464,"rss":110888,"native_total_heap":25016,"native_free_heap":2535,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d1bf543-1bcb-4ffd-9c64-babc190b7b4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3144,"total_pss":36681,"rss":109920,"native_total_heap":25016,"native_free_heap":2636,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6302fee3-5c2b-45fd-bfc8-c57be4f0e101","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":579228,"utime":77,"cutime":0,"cstime":0,"stime":86,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b6744e-7ac6-48c8-88ef-b1df3f3a2126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2392,"total_pss":37436,"rss":110888,"native_total_heap":25016,"native_free_heap":2551,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b87bb3f-7694-4a9a-93a9-b695a6c53a06","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3444,"total_pss":36682,"rss":109716,"native_total_heap":25016,"native_free_heap":2757,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"748da28a-e73d-4b13-a876-cfdc3b50511e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1408,"total_pss":34523,"rss":103736,"native_total_heap":25016,"native_free_heap":2383,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7642a293-5b60-417f-b97b-65c0b324d4da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":552228,"utime":57,"cutime":0,"cstime":0,"stime":64,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78120433-29f9-40c1-bce7-c34d63c761c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4176,"total_pss":36016,"rss":109128,"native_total_heap":25016,"native_free_heap":2808,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"798c872c-dbbe-41f6-b14e-4dbabc98060b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1268,"total_pss":35079,"rss":104748,"native_total_heap":25016,"native_free_heap":2330,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95507c-a032-435d-8c91-9f88a670ad96","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":540227,"utime":47,"cutime":0,"cstime":0,"stime":55,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8446df5b-0efd-4305-ae2b-53a1aa4526e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2252,"total_pss":37513,"rss":110888,"native_total_heap":25016,"native_free_heap":2498,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d36c09a-5663-4186-a133-368713c85c56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":564228,"utime":66,"cutime":0,"cstime":0,"stime":74,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c537a5b-79f2-4559-880b-947c6fea5c6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4388,"total_pss":36553,"rss":108920,"native_total_heap":25016,"native_free_heap":2892,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d0dd65c-7272-41b9-8b5a-c5de40988f36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":549227,"utime":56,"cutime":0,"cstime":0,"stime":63,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a05156bf-2a56-4e0e-bf4b-e89bda565de1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3232,"total_pss":36635,"rss":109920,"native_total_heap":25016,"native_free_heap":2672,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a18b2746-fa23-49f5-84c7-55272e15818e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572398,"end_time":572417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae7911ff-c672-4670-ac7c-af70d6681b23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.38400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582429,"end_time":582436,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b38158d6-6a0e-4eed-a87a-f40818f19fdf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562398,"end_time":562415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3870db9-70e1-444b-a634-9fe099ffd6c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":570227,"utime":70,"cutime":0,"cstime":0,"stime":77,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3f71f83-1699-4b21-9e75-7649b7e9cf17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3356,"total_pss":36728,"rss":109716,"native_total_heap":25016,"native_free_heap":2720,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b80e9bb6-75bb-4d68-a6e2-c6a6a4d2c8c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2180,"total_pss":37565,"rss":110888,"native_total_heap":25016,"native_free_heap":2466,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc11cefa-de53-4d6e-b947-dd5a6dd00fda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4476,"total_pss":36501,"rss":108752,"native_total_heap":25016,"native_free_heap":2924,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3eccd8-51ac-48f5-b73f-a20a8affbc40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3252,"total_pss":36698,"rss":109716,"native_total_heap":25016,"native_free_heap":2688,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd4318dc-4b03-44e0-bb82-968be8a497ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":576228,"utime":74,"cutime":0,"cstime":0,"stime":82,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c5652824-1414-4bd2-a231-a4f8e74d6606","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542403,"end_time":542422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d214fb92-053b-45fe-8c7d-8ebf2bea87ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":567228,"utime":69,"cutime":0,"cstime":0,"stime":76,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b20f95-3e0e-499e-9045-6ea66a6c570a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:47.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":756,"total_pss":37572,"rss":109640,"native_total_heap":25016,"native_free_heap":2208,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2da7036-f9f2-4ecf-b206-e939a6e56bf8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":546228,"utime":53,"cutime":0,"cstime":0,"stime":61,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4edb639-67cb-451c-a2d6-02579c62996f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":537227,"utime":46,"cutime":0,"cstime":0,"stime":54,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e94ed82f-5b95-4a46-a512-cadfda1ac169","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1320,"total_pss":34669,"rss":104076,"native_total_heap":25016,"native_free_heap":2342,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f55cf5-6c43-400e-844e-5330e9661e17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":561228,"utime":64,"cutime":0,"cstime":0,"stime":72,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f41b00ef-21a1-46ac-b6c6-2991bdd8f0e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":582228,"utime":78,"cutime":0,"cstime":0,"stime":88,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f661ddc6-f150-4536-a9c5-4720c950b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562427,"end_time":562437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73a7648-f56b-4dac-a446-3438f004a390","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":543228,"utime":52,"cutime":0,"cstime":0,"stime":59,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73f0206-c718-4320-8904-30aced2bd682","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":596,"total_pss":38680,"rss":110728,"native_total_heap":25016,"native_free_heap":2191,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"05832c7e-5ba0-4cbc-9f0e-4a1473b10e4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.39000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542431,"end_time":542442,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0905248d-35ea-414b-b22f-a47e92641ed2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4264,"total_pss":35964,"rss":109128,"native_total_heap":25016,"native_free_heap":2840,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1165042d-38e1-47c6-a522-241af0136ccd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:24.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":573229,"utime":73,"cutime":0,"cstime":0,"stime":81,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16a36143-1641-4cba-8ebf-555bb61587b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2144,"total_pss":37589,"rss":110888,"native_total_heap":25016,"native_free_heap":2450,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22419ce1-aec3-4a36-895e-b68a850098f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4336,"total_pss":36503,"rss":108920,"native_total_heap":25016,"native_free_heap":2876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227fa2b5-c5be-4167-a4ed-5232a93609e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":544,"total_pss":38604,"rss":110728,"native_total_heap":25016,"native_free_heap":2195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c8828a-7f11-41c4-ad09-59d27b5b89e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552398,"end_time":552413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4344e037-4559-43d9-8910-50a0c3d130d0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.39200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572430,"end_time":572444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"451609b7-7637-4fbc-9b05-9b4851092d07","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582399,"end_time":582420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47fa3f2e-2b72-4b3f-95a9-fe1922620518","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:06.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":555227,"utime":60,"cutime":0,"cstime":0,"stime":69,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5093c557-490c-4264-9e23-03bf95e3d824","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":558227,"utime":61,"cutime":0,"cstime":0,"stime":71,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55199df2-ea13-4ebd-9d28-551f8e2a2b50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1108,"total_pss":35179,"rss":104748,"native_total_heap":25016,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"572a50c6-1664-4fc4-8709-d9c2deefb7ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:31.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1196,"total_pss":35131,"rss":104748,"native_total_heap":25016,"native_free_heap":2294,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5825b610-6c6b-466b-a2d0-e59178a2151c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552420,"end_time":552433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c48fd7-1538-43af-9e7b-f925b6febccf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":668,"total_pss":38429,"rss":110664,"native_total_heap":25016,"native_free_heap":2196,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a82f197-5e64-4be3-a45b-2d43cf8f104f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2356,"total_pss":37464,"rss":110888,"native_total_heap":25016,"native_free_heap":2535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d1bf543-1bcb-4ffd-9c64-babc190b7b4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3144,"total_pss":36681,"rss":109920,"native_total_heap":25016,"native_free_heap":2636,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6302fee3-5c2b-45fd-bfc8-c57be4f0e101","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":579228,"utime":77,"cutime":0,"cstime":0,"stime":86,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b6744e-7ac6-48c8-88ef-b1df3f3a2126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2392,"total_pss":37436,"rss":110888,"native_total_heap":25016,"native_free_heap":2551,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b87bb3f-7694-4a9a-93a9-b695a6c53a06","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3444,"total_pss":36682,"rss":109716,"native_total_heap":25016,"native_free_heap":2757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"748da28a-e73d-4b13-a876-cfdc3b50511e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1408,"total_pss":34523,"rss":103736,"native_total_heap":25016,"native_free_heap":2383,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7642a293-5b60-417f-b97b-65c0b324d4da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":552228,"utime":57,"cutime":0,"cstime":0,"stime":64,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78120433-29f9-40c1-bce7-c34d63c761c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4176,"total_pss":36016,"rss":109128,"native_total_heap":25016,"native_free_heap":2808,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"798c872c-dbbe-41f6-b14e-4dbabc98060b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1268,"total_pss":35079,"rss":104748,"native_total_heap":25016,"native_free_heap":2330,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95507c-a032-435d-8c91-9f88a670ad96","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":540227,"utime":47,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8446df5b-0efd-4305-ae2b-53a1aa4526e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2252,"total_pss":37513,"rss":110888,"native_total_heap":25016,"native_free_heap":2498,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d36c09a-5663-4186-a133-368713c85c56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":564228,"utime":66,"cutime":0,"cstime":0,"stime":74,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c537a5b-79f2-4559-880b-947c6fea5c6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4388,"total_pss":36553,"rss":108920,"native_total_heap":25016,"native_free_heap":2892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d0dd65c-7272-41b9-8b5a-c5de40988f36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":549227,"utime":56,"cutime":0,"cstime":0,"stime":63,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a05156bf-2a56-4e0e-bf4b-e89bda565de1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3232,"total_pss":36635,"rss":109920,"native_total_heap":25016,"native_free_heap":2672,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a18b2746-fa23-49f5-84c7-55272e15818e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572398,"end_time":572417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae7911ff-c672-4670-ac7c-af70d6681b23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.38400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582429,"end_time":582436,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b38158d6-6a0e-4eed-a87a-f40818f19fdf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562398,"end_time":562415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3870db9-70e1-444b-a634-9fe099ffd6c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":570227,"utime":70,"cutime":0,"cstime":0,"stime":77,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3f71f83-1699-4b21-9e75-7649b7e9cf17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3356,"total_pss":36728,"rss":109716,"native_total_heap":25016,"native_free_heap":2720,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b80e9bb6-75bb-4d68-a6e2-c6a6a4d2c8c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2180,"total_pss":37565,"rss":110888,"native_total_heap":25016,"native_free_heap":2466,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc11cefa-de53-4d6e-b947-dd5a6dd00fda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4476,"total_pss":36501,"rss":108752,"native_total_heap":25016,"native_free_heap":2924,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3eccd8-51ac-48f5-b73f-a20a8affbc40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3252,"total_pss":36698,"rss":109716,"native_total_heap":25016,"native_free_heap":2688,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd4318dc-4b03-44e0-bb82-968be8a497ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":576228,"utime":74,"cutime":0,"cstime":0,"stime":82,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c5652824-1414-4bd2-a231-a4f8e74d6606","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542403,"end_time":542422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d214fb92-053b-45fe-8c7d-8ebf2bea87ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":567228,"utime":69,"cutime":0,"cstime":0,"stime":76,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b20f95-3e0e-499e-9045-6ea66a6c570a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:47.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":756,"total_pss":37572,"rss":109640,"native_total_heap":25016,"native_free_heap":2208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2da7036-f9f2-4ecf-b206-e939a6e56bf8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":546228,"utime":53,"cutime":0,"cstime":0,"stime":61,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4edb639-67cb-451c-a2d6-02579c62996f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":537227,"utime":46,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e94ed82f-5b95-4a46-a512-cadfda1ac169","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1320,"total_pss":34669,"rss":104076,"native_total_heap":25016,"native_free_heap":2342,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f55cf5-6c43-400e-844e-5330e9661e17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":561228,"utime":64,"cutime":0,"cstime":0,"stime":72,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f41b00ef-21a1-46ac-b6c6-2991bdd8f0e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":582228,"utime":78,"cutime":0,"cstime":0,"stime":88,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f661ddc6-f150-4536-a9c5-4720c950b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562427,"end_time":562437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73a7648-f56b-4dac-a446-3438f004a390","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":543228,"utime":52,"cutime":0,"cstime":0,"stime":59,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73f0206-c718-4320-8904-30aced2bd682","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":596,"total_pss":38680,"rss":110728,"native_total_heap":25016,"native_free_heap":2191,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json b/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json index f7747cc6f..399932987 100644 --- a/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json +++ b/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json @@ -1 +1 @@ -[{"id":"061ff45e-e396-45a3-9dd3-c82c3c728fbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782397,"end_time":782411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ec49653-b21f-416d-a31f-e7fd25726809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":804228,"utime":225,"cutime":0,"cstime":0,"stime":252,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12cfffe1-9c32-4ea0-9013-5e48b3ba2cf0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":786228,"utime":215,"cutime":0,"cstime":0,"stime":238,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16b7bdaa-03a7-4110-bd1c-b7e584bf1048","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":195,"total_pss":35885,"rss":107748,"native_total_heap":25528,"native_free_heap":2708,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b3ec857-dc44-4581-bdf5-cfbc5a897c41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":792227,"utime":218,"cutime":0,"cstime":0,"stime":243,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c31656-5c41-4efb-b733-83ba8537b56e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2277,"total_pss":34361,"rss":106148,"native_total_heap":25528,"native_free_heap":3115,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28be498a-7602-483e-affc-c06fb06ad74e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":993,"total_pss":35385,"rss":107340,"native_total_heap":25784,"native_free_heap":2831,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29447d4d-4321-4bb4-9076-8f4d2d3a09bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1153,"total_pss":35281,"rss":107340,"native_total_heap":25784,"native_free_heap":2899,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2bc3b734-b05c-4680-9a98-193f5a7d67c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:00.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":789232,"utime":217,"cutime":0,"cstime":0,"stime":241,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cda87af-d8bd-49a8-a159-6cdc4a9461f9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792398,"end_time":792406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e085620-bc0d-4ef6-b3f6-598924638f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":813227,"utime":230,"cutime":0,"cstime":0,"stime":260,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33fa59b2-4cc2-4291-bac5-502e4fb0ee6e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4061,"total_pss":32825,"rss":104804,"native_total_heap":25528,"native_free_heap":3372,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34f5a4fc-f9e5-4756-9601-9292cf68f246","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.37900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812419,"end_time":812431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"427f87a2-5eec-40ad-acae-18b1d7128269","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3225,"total_pss":33553,"rss":105640,"native_total_heap":25528,"native_free_heap":3284,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"547015de-5274-4d6d-b872-91bf09f7e0cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2241,"total_pss":34385,"rss":106148,"native_total_heap":25528,"native_free_heap":3099,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57471c65-cf1d-45d9-a315-5653b5b1a542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":783228,"utime":214,"cutime":0,"cstime":0,"stime":237,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f72a0d4-bf59-4b0f-b5b2-2b7bb22ca49a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822418,"end_time":822423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65639017-1c9a-413b-8195-c66f67100218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3029,"total_pss":33681,"rss":105640,"native_total_heap":25528,"native_free_heap":3200,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65b921b9-bd52-420b-94d5-757b37633d40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4133,"total_pss":32769,"rss":104552,"native_total_heap":25528,"native_free_heap":3408,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"674d6633-b420-4a5c-ba91-c005d0a261cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":819227,"utime":233,"cutime":0,"cstime":0,"stime":263,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a8524d7-9865-4790-b0ea-4e4a1ae1d512","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3137,"total_pss":33605,"rss":105640,"native_total_heap":25528,"native_free_heap":3252,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84182723-db0c-4aae-91ad-fe9dc9e493c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1205,"total_pss":35253,"rss":107084,"native_total_heap":25784,"native_free_heap":2915,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86467bfa-c797-4be3-b54d-a34ac9a5bcb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1195,"total_pss":35017,"rss":106936,"native_total_heap":25528,"native_free_heap":2875,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a02349e-3b13-4805-a6f0-307ba3ceaf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782417,"end_time":782428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f5c6903-2718-4db4-93cc-3ed4198fdcbc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":822229,"utime":235,"cutime":0,"cstime":0,"stime":264,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fc3cb35-2966-43d1-b4f6-475bdf1d9121","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":810227,"utime":227,"cutime":0,"cstime":0,"stime":256,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c61c0f4-6d9a-4f13-8804-96a35e03b0ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822398,"end_time":822411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9dbea8c4-25bc-4155-b3e0-76509e77a9b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":798228,"utime":222,"cutime":0,"cstime":0,"stime":246,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636850f-3de6-455d-a68c-e7aee6c1ef40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":816228,"utime":231,"cutime":0,"cstime":0,"stime":261,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac37c42a-bbf7-4640-8f29-f93da29c6128","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1293,"total_pss":35205,"rss":107084,"native_total_heap":25784,"native_free_heap":2952,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aea78c83-c620-475b-ab8a-553d77d5f396","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1081,"total_pss":35333,"rss":107340,"native_total_heap":25784,"native_free_heap":2863,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b59083bc-fceb-4b34-82e1-9d1900952144","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2153,"total_pss":34441,"rss":106148,"native_total_heap":25528,"native_free_heap":3062,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7717476-1d70-41c3-9a6b-440e5296a62a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":807227,"utime":226,"cutime":0,"cstime":0,"stime":255,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b88c6de6-6fc8-4cf9-b788-525662542b13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3313,"total_pss":33501,"rss":105420,"native_total_heap":25528,"native_free_heap":3320,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9b0d4df-3bbe-4e26-95b8-2b209680749d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:55.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":335,"total_pss":35773,"rss":107748,"native_total_heap":25528,"native_free_heap":2756,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba7a59a7-2fa3-4af4-80fb-8ba61a7ebf13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1071,"total_pss":35093,"rss":107144,"native_total_heap":25528,"native_free_heap":2823,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca6fd4-55a8-4f9a-8c1c-dfaf9bc1d3bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.36200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812399,"end_time":812414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb04cbb1-49fb-44c2-a11d-a5d52d3a18b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":231,"total_pss":35841,"rss":107748,"native_total_heap":25528,"native_free_heap":2724,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b00bf6-e251-43db-876c-c9297e3d129d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1123,"total_pss":35069,"rss":107144,"native_total_heap":25528,"native_free_heap":2843,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d97a1e-fcf6-4db1-9fbb-518530dc9a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802426,"end_time":802435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3065b94-3bc2-4d21-8d57-7b437005a0b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":801227,"utime":223,"cutime":0,"cstime":0,"stime":249,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3292b3f-f95c-419c-9f56-ce37265242d5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802400,"end_time":802419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb9cd9e-46de-42f7-a5c1-05fb79c96736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:35.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":293,"total_pss":36045,"rss":107940,"native_total_heap":25784,"native_free_heap":2762,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ad8d76-ff80-41fe-9ca2-4acc80b259b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2065,"total_pss":34493,"rss":106360,"native_total_heap":25528,"native_free_heap":3030,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb3c9f1d-e22f-4ed5-a434-efb51b46ebfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792412,"end_time":792421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe24197-4373-4f50-9400-fcf1b11ee764","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3101,"total_pss":33629,"rss":105640,"native_total_heap":25528,"native_free_heap":3236,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f623fb60-f8b3-408e-9185-fd9f5d32d88b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2029,"total_pss":34517,"rss":106360,"native_total_heap":25528,"native_free_heap":3014,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7b5686f-cf97-4d23-b834-c0f23d2bdf23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":825228,"utime":237,"cutime":0,"cstime":0,"stime":268,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe99b159-1a91-43b2-84d1-1ad4434ff3e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":780227,"utime":211,"cutime":0,"cstime":0,"stime":235,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fefec6de-591e-4b21-a60f-b4338ed52e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":795228,"utime":221,"cutime":0,"cstime":0,"stime":244,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"061ff45e-e396-45a3-9dd3-c82c3c728fbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782397,"end_time":782411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ec49653-b21f-416d-a31f-e7fd25726809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":804228,"utime":225,"cutime":0,"cstime":0,"stime":252,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12cfffe1-9c32-4ea0-9013-5e48b3ba2cf0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":786228,"utime":215,"cutime":0,"cstime":0,"stime":238,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16b7bdaa-03a7-4110-bd1c-b7e584bf1048","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":195,"total_pss":35885,"rss":107748,"native_total_heap":25528,"native_free_heap":2708,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b3ec857-dc44-4581-bdf5-cfbc5a897c41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":792227,"utime":218,"cutime":0,"cstime":0,"stime":243,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c31656-5c41-4efb-b733-83ba8537b56e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2277,"total_pss":34361,"rss":106148,"native_total_heap":25528,"native_free_heap":3115,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28be498a-7602-483e-affc-c06fb06ad74e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":993,"total_pss":35385,"rss":107340,"native_total_heap":25784,"native_free_heap":2831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29447d4d-4321-4bb4-9076-8f4d2d3a09bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1153,"total_pss":35281,"rss":107340,"native_total_heap":25784,"native_free_heap":2899,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2bc3b734-b05c-4680-9a98-193f5a7d67c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:00.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":789232,"utime":217,"cutime":0,"cstime":0,"stime":241,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cda87af-d8bd-49a8-a159-6cdc4a9461f9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792398,"end_time":792406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e085620-bc0d-4ef6-b3f6-598924638f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":813227,"utime":230,"cutime":0,"cstime":0,"stime":260,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33fa59b2-4cc2-4291-bac5-502e4fb0ee6e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4061,"total_pss":32825,"rss":104804,"native_total_heap":25528,"native_free_heap":3372,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34f5a4fc-f9e5-4756-9601-9292cf68f246","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.37900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812419,"end_time":812431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"427f87a2-5eec-40ad-acae-18b1d7128269","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3225,"total_pss":33553,"rss":105640,"native_total_heap":25528,"native_free_heap":3284,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"547015de-5274-4d6d-b872-91bf09f7e0cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2241,"total_pss":34385,"rss":106148,"native_total_heap":25528,"native_free_heap":3099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57471c65-cf1d-45d9-a315-5653b5b1a542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":783228,"utime":214,"cutime":0,"cstime":0,"stime":237,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f72a0d4-bf59-4b0f-b5b2-2b7bb22ca49a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822418,"end_time":822423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65639017-1c9a-413b-8195-c66f67100218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3029,"total_pss":33681,"rss":105640,"native_total_heap":25528,"native_free_heap":3200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65b921b9-bd52-420b-94d5-757b37633d40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4133,"total_pss":32769,"rss":104552,"native_total_heap":25528,"native_free_heap":3408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"674d6633-b420-4a5c-ba91-c005d0a261cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":819227,"utime":233,"cutime":0,"cstime":0,"stime":263,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a8524d7-9865-4790-b0ea-4e4a1ae1d512","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3137,"total_pss":33605,"rss":105640,"native_total_heap":25528,"native_free_heap":3252,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84182723-db0c-4aae-91ad-fe9dc9e493c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1205,"total_pss":35253,"rss":107084,"native_total_heap":25784,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86467bfa-c797-4be3-b54d-a34ac9a5bcb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1195,"total_pss":35017,"rss":106936,"native_total_heap":25528,"native_free_heap":2875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a02349e-3b13-4805-a6f0-307ba3ceaf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782417,"end_time":782428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f5c6903-2718-4db4-93cc-3ed4198fdcbc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":822229,"utime":235,"cutime":0,"cstime":0,"stime":264,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fc3cb35-2966-43d1-b4f6-475bdf1d9121","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":810227,"utime":227,"cutime":0,"cstime":0,"stime":256,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c61c0f4-6d9a-4f13-8804-96a35e03b0ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822398,"end_time":822411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9dbea8c4-25bc-4155-b3e0-76509e77a9b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":798228,"utime":222,"cutime":0,"cstime":0,"stime":246,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636850f-3de6-455d-a68c-e7aee6c1ef40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":816228,"utime":231,"cutime":0,"cstime":0,"stime":261,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac37c42a-bbf7-4640-8f29-f93da29c6128","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1293,"total_pss":35205,"rss":107084,"native_total_heap":25784,"native_free_heap":2952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aea78c83-c620-475b-ab8a-553d77d5f396","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1081,"total_pss":35333,"rss":107340,"native_total_heap":25784,"native_free_heap":2863,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b59083bc-fceb-4b34-82e1-9d1900952144","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2153,"total_pss":34441,"rss":106148,"native_total_heap":25528,"native_free_heap":3062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7717476-1d70-41c3-9a6b-440e5296a62a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":807227,"utime":226,"cutime":0,"cstime":0,"stime":255,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b88c6de6-6fc8-4cf9-b788-525662542b13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3313,"total_pss":33501,"rss":105420,"native_total_heap":25528,"native_free_heap":3320,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9b0d4df-3bbe-4e26-95b8-2b209680749d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:55.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":335,"total_pss":35773,"rss":107748,"native_total_heap":25528,"native_free_heap":2756,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba7a59a7-2fa3-4af4-80fb-8ba61a7ebf13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1071,"total_pss":35093,"rss":107144,"native_total_heap":25528,"native_free_heap":2823,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca6fd4-55a8-4f9a-8c1c-dfaf9bc1d3bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.36200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812399,"end_time":812414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb04cbb1-49fb-44c2-a11d-a5d52d3a18b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":231,"total_pss":35841,"rss":107748,"native_total_heap":25528,"native_free_heap":2724,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b00bf6-e251-43db-876c-c9297e3d129d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1123,"total_pss":35069,"rss":107144,"native_total_heap":25528,"native_free_heap":2843,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d97a1e-fcf6-4db1-9fbb-518530dc9a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802426,"end_time":802435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3065b94-3bc2-4d21-8d57-7b437005a0b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":801227,"utime":223,"cutime":0,"cstime":0,"stime":249,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3292b3f-f95c-419c-9f56-ce37265242d5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802400,"end_time":802419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb9cd9e-46de-42f7-a5c1-05fb79c96736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:35.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":293,"total_pss":36045,"rss":107940,"native_total_heap":25784,"native_free_heap":2762,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ad8d76-ff80-41fe-9ca2-4acc80b259b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2065,"total_pss":34493,"rss":106360,"native_total_heap":25528,"native_free_heap":3030,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb3c9f1d-e22f-4ed5-a434-efb51b46ebfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792412,"end_time":792421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe24197-4373-4f50-9400-fcf1b11ee764","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3101,"total_pss":33629,"rss":105640,"native_total_heap":25528,"native_free_heap":3236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f623fb60-f8b3-408e-9185-fd9f5d32d88b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2029,"total_pss":34517,"rss":106360,"native_total_heap":25528,"native_free_heap":3014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7b5686f-cf97-4d23-b834-c0f23d2bdf23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":825228,"utime":237,"cutime":0,"cstime":0,"stime":268,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe99b159-1a91-43b2-84d1-1ad4434ff3e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":780227,"utime":211,"cutime":0,"cstime":0,"stime":235,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fefec6de-591e-4b21-a60f-b4338ed52e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":795228,"utime":221,"cutime":0,"cstime":0,"stime":244,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json b/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json index 7348affe0..185ae4738 100644 --- a/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json +++ b/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json @@ -1 +1 @@ -[{"id":"0330e740-e542-4a0a-8e38-b284d19a2f1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922423,"end_time":922432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05d532a9-d05c-447c-83fe-e32e81c8334b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2287,"total_pss":34585,"rss":106860,"native_total_heap":25784,"native_free_heap":3117,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06040cc0-81c8-424c-aba7-f179dc16ee92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962397,"end_time":962411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"074fecb4-9bd0-4c76-959b-6d325ebbaa36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932398,"end_time":932410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"187ca111-0516-45ca-b3c4-fcf06e0b71b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932415,"end_time":932423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a5f4422-6410-4286-97ed-9f32a08ac244","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3395,"total_pss":33669,"rss":105768,"native_total_heap":25784,"native_free_heap":3337,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274df3e0-458e-45eb-8172-a135dcf77f5a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":963228,"utime":319,"cutime":0,"cstime":0,"stime":358,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bb5f23b-b684-4e34-8ce5-579faa60272c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:19.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2268,"total_pss":34369,"rss":106460,"native_total_heap":25784,"native_free_heap":3082,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d62c0b3-6070-4cba-aa92-5bdca7576ef1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1196,"total_pss":35249,"rss":107532,"native_total_heap":25784,"native_free_heap":2873,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ff5933b-f45a-4396-949f-885afae07043","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2199,"total_pss":34637,"rss":106860,"native_total_heap":25784,"native_free_heap":3085,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"434d0a9f-b079-491f-9e0e-3d1e82cded66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":972228,"utime":323,"cutime":0,"cstime":0,"stime":362,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4c285831-6ef4-4dcb-acc7-23924a3bce99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1284,"total_pss":35197,"rss":107280,"native_total_heap":25784,"native_free_heap":2910,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f3ea8f0-e427-4073-ad7d-d343d90f7689","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2356,"total_pss":34319,"rss":106460,"native_total_heap":25784,"native_free_heap":3118,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b344ee-2e34-4a18-956e-993663fdee3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1124,"total_pss":35305,"rss":107532,"native_total_heap":25784,"native_free_heap":2841,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5348b22b-2b1d-42ac-be45-264804a18add","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2392,"total_pss":34295,"rss":106460,"native_total_heap":25784,"native_free_heap":3134,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b9d9607-7f02-4046-ad46-3ce299c7da89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":948227,"utime":310,"cutime":0,"cstime":0,"stime":347,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"619d0a00-3195-44c4-8914-415611c4da8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":942228,"utime":307,"cutime":0,"cstime":0,"stime":342,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69f390b8-2b98-4774-8fc6-2d87fa49e0ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1408,"total_pss":35122,"rss":107280,"native_total_heap":25784,"native_free_heap":2962,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ba5e118-d1f2-4463-a3d3-e8926f8aa8df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2180,"total_pss":34425,"rss":106460,"native_total_heap":25784,"native_free_heap":3050,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dd283c4-0dc4-497a-a4e7-6e471b4bf0d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":196,"total_pss":36105,"rss":108356,"native_total_heap":25784,"native_free_heap":2706,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76ceade3-c6a1-4a7d-8b8e-2a91835024d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":927228,"utime":298,"cutime":0,"cstime":0,"stime":335,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7734ce09-3b0c-4432-a7a5-55b2112825c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":936227,"utime":303,"cutime":0,"cstime":0,"stime":340,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78eac305-61ed-4b82-9a8d-ee65e2a8356f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3343,"total_pss":33697,"rss":105768,"native_total_heap":25784,"native_free_heap":3321,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81cbe2e4-a293-4282-8db3-2201c9361e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1336,"total_pss":35174,"rss":107280,"native_total_heap":25784,"native_free_heap":2926,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8468ea59-5be2-44c0-948c-ded9a655ad43","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":336,"total_pss":36021,"rss":108144,"native_total_heap":25784,"native_free_heap":2758,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86a71cec-09f4-42b3-91ab-73bd6886f046","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:42.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":951232,"utime":311,"cutime":0,"cstime":0,"stime":350,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9be4fd-22fc-4d57-85d6-b29a51108111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4179,"total_pss":32961,"rss":105136,"native_total_heap":25784,"native_free_heap":3422,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96758924-c8c1-493a-837c-46e35dd2a2b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3183,"total_pss":33797,"rss":105768,"native_total_heap":25784,"native_free_heap":3252,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4e09b84-bfc8-452f-bd75-43b84ce066e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942413,"end_time":942418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab6755b8-2b3f-45b1-8154-f29f291935ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2144,"total_pss":34453,"rss":106460,"native_total_heap":25784,"native_free_heap":3034,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2b2e25-a5fe-43cc-9ff5-432472758740","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3131,"total_pss":33825,"rss":105768,"native_total_heap":25784,"native_free_heap":3237,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b32d0dea-c387-4a2c-8eaf-b7b5095ac7fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":969227,"utime":322,"cutime":0,"cstime":0,"stime":361,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b42ae6fa-d115-488d-be82-0b753e6eeb51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2323,"total_pss":34561,"rss":106860,"native_total_heap":25784,"native_free_heap":3133,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b67f2e3c-ba55-4f91-a92b-8c6d5325a4c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":954227,"utime":314,"cutime":0,"cstime":0,"stime":352,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8838df-8284-41f3-8dec-ea5c6b2016b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":232,"total_pss":36077,"rss":108356,"native_total_heap":25784,"native_free_heap":2722,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c382e9c9-885e-4d84-856d-997d235737b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952397,"end_time":952409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c480a26f-7540-4bf8-bf5a-d3cfb0aafa16","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":966227,"utime":320,"cutime":0,"cstime":0,"stime":359,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c749d7bd-be48-4628-8691-53f64a77803c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":924227,"utime":297,"cutime":0,"cstime":0,"stime":333,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7c0adc1-2fc8-4c69-8af8-55d60ad82be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942397,"end_time":942408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cbc1fcfb-8fc9-45c8-89b0-996c161beb86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2411,"total_pss":34509,"rss":106860,"native_total_heap":25784,"native_free_heap":3169,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf4bbad0-1d01-4897-a922-b099ab3f496a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":960228,"utime":316,"cutime":0,"cstime":0,"stime":356,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df2cccc5-37da-421d-9657-b470227d9b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":930227,"utime":299,"cutime":0,"cstime":0,"stime":336,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e457fb1e-7ff0-4132-976e-c42554ef39c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952413,"end_time":952421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f0e05f-a1a2-4466-9681-f6746895e166","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3271,"total_pss":33745,"rss":105768,"native_total_heap":25784,"native_free_heap":3289,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec26984e-be38-4e8c-9bd2-f736715c5fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":957227,"utime":316,"cutime":0,"cstime":0,"stime":354,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed0d5bae-9f25-4d50-bca0-0eb9966503da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":933228,"utime":302,"cutime":0,"cstime":0,"stime":339,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6a231-381b-4ef8-9eac-e12f2b14fe5c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":945227,"utime":309,"cutime":0,"cstime":0,"stime":346,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edfacf9e-1f4c-49d2-bf75-0499902370a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":408,"total_pss":35969,"rss":108144,"native_total_heap":25784,"native_free_heap":2790,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe11f317-a038-4b7d-8827-ef70096f0409","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962417,"end_time":962424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fecb6c21-ebac-4560-9bc6-72fc3d4e3907","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":939227,"utime":305,"cutime":0,"cstime":0,"stime":342,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0330e740-e542-4a0a-8e38-b284d19a2f1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922423,"end_time":922432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05d532a9-d05c-447c-83fe-e32e81c8334b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2287,"total_pss":34585,"rss":106860,"native_total_heap":25784,"native_free_heap":3117,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06040cc0-81c8-424c-aba7-f179dc16ee92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962397,"end_time":962411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"074fecb4-9bd0-4c76-959b-6d325ebbaa36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932398,"end_time":932410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"187ca111-0516-45ca-b3c4-fcf06e0b71b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932415,"end_time":932423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a5f4422-6410-4286-97ed-9f32a08ac244","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3395,"total_pss":33669,"rss":105768,"native_total_heap":25784,"native_free_heap":3337,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274df3e0-458e-45eb-8172-a135dcf77f5a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":963228,"utime":319,"cutime":0,"cstime":0,"stime":358,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bb5f23b-b684-4e34-8ce5-579faa60272c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:19.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2268,"total_pss":34369,"rss":106460,"native_total_heap":25784,"native_free_heap":3082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d62c0b3-6070-4cba-aa92-5bdca7576ef1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1196,"total_pss":35249,"rss":107532,"native_total_heap":25784,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ff5933b-f45a-4396-949f-885afae07043","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2199,"total_pss":34637,"rss":106860,"native_total_heap":25784,"native_free_heap":3085,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"434d0a9f-b079-491f-9e0e-3d1e82cded66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":972228,"utime":323,"cutime":0,"cstime":0,"stime":362,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4c285831-6ef4-4dcb-acc7-23924a3bce99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1284,"total_pss":35197,"rss":107280,"native_total_heap":25784,"native_free_heap":2910,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f3ea8f0-e427-4073-ad7d-d343d90f7689","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2356,"total_pss":34319,"rss":106460,"native_total_heap":25784,"native_free_heap":3118,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b344ee-2e34-4a18-956e-993663fdee3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1124,"total_pss":35305,"rss":107532,"native_total_heap":25784,"native_free_heap":2841,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5348b22b-2b1d-42ac-be45-264804a18add","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2392,"total_pss":34295,"rss":106460,"native_total_heap":25784,"native_free_heap":3134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b9d9607-7f02-4046-ad46-3ce299c7da89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":948227,"utime":310,"cutime":0,"cstime":0,"stime":347,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"619d0a00-3195-44c4-8914-415611c4da8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":942228,"utime":307,"cutime":0,"cstime":0,"stime":342,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69f390b8-2b98-4774-8fc6-2d87fa49e0ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1408,"total_pss":35122,"rss":107280,"native_total_heap":25784,"native_free_heap":2962,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ba5e118-d1f2-4463-a3d3-e8926f8aa8df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2180,"total_pss":34425,"rss":106460,"native_total_heap":25784,"native_free_heap":3050,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dd283c4-0dc4-497a-a4e7-6e471b4bf0d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":196,"total_pss":36105,"rss":108356,"native_total_heap":25784,"native_free_heap":2706,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76ceade3-c6a1-4a7d-8b8e-2a91835024d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":927228,"utime":298,"cutime":0,"cstime":0,"stime":335,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7734ce09-3b0c-4432-a7a5-55b2112825c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":936227,"utime":303,"cutime":0,"cstime":0,"stime":340,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78eac305-61ed-4b82-9a8d-ee65e2a8356f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3343,"total_pss":33697,"rss":105768,"native_total_heap":25784,"native_free_heap":3321,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81cbe2e4-a293-4282-8db3-2201c9361e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1336,"total_pss":35174,"rss":107280,"native_total_heap":25784,"native_free_heap":2926,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8468ea59-5be2-44c0-948c-ded9a655ad43","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":336,"total_pss":36021,"rss":108144,"native_total_heap":25784,"native_free_heap":2758,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86a71cec-09f4-42b3-91ab-73bd6886f046","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:42.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":951232,"utime":311,"cutime":0,"cstime":0,"stime":350,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9be4fd-22fc-4d57-85d6-b29a51108111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4179,"total_pss":32961,"rss":105136,"native_total_heap":25784,"native_free_heap":3422,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96758924-c8c1-493a-837c-46e35dd2a2b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3183,"total_pss":33797,"rss":105768,"native_total_heap":25784,"native_free_heap":3252,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4e09b84-bfc8-452f-bd75-43b84ce066e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942413,"end_time":942418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab6755b8-2b3f-45b1-8154-f29f291935ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2144,"total_pss":34453,"rss":106460,"native_total_heap":25784,"native_free_heap":3034,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2b2e25-a5fe-43cc-9ff5-432472758740","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3131,"total_pss":33825,"rss":105768,"native_total_heap":25784,"native_free_heap":3237,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b32d0dea-c387-4a2c-8eaf-b7b5095ac7fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":969227,"utime":322,"cutime":0,"cstime":0,"stime":361,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b42ae6fa-d115-488d-be82-0b753e6eeb51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2323,"total_pss":34561,"rss":106860,"native_total_heap":25784,"native_free_heap":3133,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b67f2e3c-ba55-4f91-a92b-8c6d5325a4c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":954227,"utime":314,"cutime":0,"cstime":0,"stime":352,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8838df-8284-41f3-8dec-ea5c6b2016b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":232,"total_pss":36077,"rss":108356,"native_total_heap":25784,"native_free_heap":2722,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c382e9c9-885e-4d84-856d-997d235737b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952397,"end_time":952409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c480a26f-7540-4bf8-bf5a-d3cfb0aafa16","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":966227,"utime":320,"cutime":0,"cstime":0,"stime":359,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c749d7bd-be48-4628-8691-53f64a77803c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":924227,"utime":297,"cutime":0,"cstime":0,"stime":333,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7c0adc1-2fc8-4c69-8af8-55d60ad82be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942397,"end_time":942408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cbc1fcfb-8fc9-45c8-89b0-996c161beb86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2411,"total_pss":34509,"rss":106860,"native_total_heap":25784,"native_free_heap":3169,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf4bbad0-1d01-4897-a922-b099ab3f496a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":960228,"utime":316,"cutime":0,"cstime":0,"stime":356,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df2cccc5-37da-421d-9657-b470227d9b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":930227,"utime":299,"cutime":0,"cstime":0,"stime":336,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e457fb1e-7ff0-4132-976e-c42554ef39c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952413,"end_time":952421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f0e05f-a1a2-4466-9681-f6746895e166","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3271,"total_pss":33745,"rss":105768,"native_total_heap":25784,"native_free_heap":3289,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec26984e-be38-4e8c-9bd2-f736715c5fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":957227,"utime":316,"cutime":0,"cstime":0,"stime":354,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed0d5bae-9f25-4d50-bca0-0eb9966503da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":933228,"utime":302,"cutime":0,"cstime":0,"stime":339,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6a231-381b-4ef8-9eac-e12f2b14fe5c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":945227,"utime":309,"cutime":0,"cstime":0,"stime":346,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edfacf9e-1f4c-49d2-bf75-0499902370a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":408,"total_pss":35969,"rss":108144,"native_total_heap":25784,"native_free_heap":2790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe11f317-a038-4b7d-8827-ef70096f0409","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962417,"end_time":962424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fecb6c21-ebac-4560-9bc6-72fc3d4e3907","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":939227,"utime":305,"cutime":0,"cstime":0,"stime":342,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json b/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json index 6356fa0fa..a55c7d2cb 100644 --- a/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json +++ b/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json @@ -1 +1 @@ -[{"id":"5775c06b-507a-484c-a145-570dfc048ee8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.80700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"799676b2-c2f2-4786-8a7f-5bcd78ec204c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.89900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d54b57a9-47d6-46e5-9dad-fa3d0fc72092","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2823445,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d77f48c1-4e4e-44d3-a1ce-15d6b7a02e65","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184195,"total_pss":22147,"rss":102472,"native_total_heap":11096,"native_free_heap":1228,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"5775c06b-507a-484c-a145-570dfc048ee8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.80700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"799676b2-c2f2-4786-8a7f-5bcd78ec204c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.89900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d54b57a9-47d6-46e5-9dad-fa3d0fc72092","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2823445,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d77f48c1-4e4e-44d3-a1ce-15d6b7a02e65","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184195,"total_pss":22147,"rss":102472,"native_total_heap":11096,"native_free_heap":1228,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json b/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json index cef30a26b..aec792a6c 100644 --- a/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json +++ b/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json @@ -1 +1 @@ -[{"id":"33aa6e63-6e71-4ba1-ba0d-f216d0885257","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.72700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5064224,"utime":45,"cutime":0,"cstime":0,"stime":17,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3da334-4512-4db6-baf2-ffbd1f8230b6","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.72500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5067222,"utime":48,"cutime":0,"cstime":0,"stime":23,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e5e1f6e-6bc0-4bb1-94e0-c9fd28e40f63","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.91500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"41e96633-6e46-475f-88d6-a7a7544b27df","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.05600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5057835,"process_start_requested_uptime":5057652,"content_provider_attach_uptime":5058171,"on_next_draw_uptime":5058552,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4497f884-f9cb-4827-b725-5e8719199fcc","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.73200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30608,"total_pss":85817,"rss":180044,"native_total_heap":22780,"native_free_heap":1135,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45892a85-9467-4e0f-8867-509ae3b201d5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.81000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4cf1f232-6119-43b9-bc8d-60924923c2a5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:11.72800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5061225,"utime":41,"cutime":0,"cstime":0,"stime":15,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"565a574a-507b-492c-8255-1e09789ac6fb","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:16.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30498,"total_pss":85980,"rss":180404,"native_total_heap":23036,"native_free_heap":1108,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58918fe3-8bb0-420f-acc0-edccc51c8325","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"599002b3-57f4-4678-afdc-1bf0f0749949","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.86300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ab900a4-c551-4b5d-b9c5-08e95b118bca","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183766,"total_pss":60312,"rss":152116,"native_total_heap":12376,"native_free_heap":1276,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8aad3d17-121e-42b8-92cc-0e7117c95816","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5058655,"end_time":5058728,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9973","content-type":"multipart/form-data; boundary=049a2cf2-2889-4b8a-b343-f4a73fbfcc9e","host":"10.0.2.2:8080","msr-req-id":"25f9030c-7ad8-46a0-a9df-20a97ddf9ab8","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:33:09 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ce1b591-303e-480f-bb36-378acfdbb12f","session_id":"6338e0bc-ee16-493a-9a5e-4abe0b54bc5a","timestamp":"2024-05-03T23:33:09.21500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (30):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=18 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=28 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_5\" prio=5 tid=29 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_6\" prio=5 tid=30 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"queued-work-looper\" prio=5 tid=31 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"binder:9819_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 9819 -----\n","process_name":"sh.measure.sample","pid":"9819"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"badbb86b-4785-4773-9b4c-6851624b585d","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:12.72600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30714,"total_pss":85251,"rss":179280,"native_total_heap":22780,"native_free_heap":1135,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3ce1ed-8214-48fb-94b6-56a94f2f2bce","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.85300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c31eb6e9-ed46-4ddd-9895-7889c604cd57","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.93200000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c3c39fe6-96cd-4ff4-abd4-e6eb006ad1c3","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5058242,"utime":18,"cutime":0,"cstime":0,"stime":7,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8b79b18-0515-4321-b57b-9cfbd0cff10f","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:10.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30786,"total_pss":85163,"rss":179280,"native_total_heap":22780,"native_free_heap":1143,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efbf004b-4e67-4790-9a3a-af7a55e461bf","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.92700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff04b40e-5d7c-420c-813e-08c18961a378","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.69200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510258,"uptime":5103188,"utime":20,"cutime":0,"cstime":0,"stime":11,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"33aa6e63-6e71-4ba1-ba0d-f216d0885257","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.72700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5064224,"utime":45,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3da334-4512-4db6-baf2-ffbd1f8230b6","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.72500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5067222,"utime":48,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e5e1f6e-6bc0-4bb1-94e0-c9fd28e40f63","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.91500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"41e96633-6e46-475f-88d6-a7a7544b27df","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.05600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5057835,"process_start_requested_uptime":5057652,"content_provider_attach_uptime":5058171,"on_next_draw_uptime":5058552,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4497f884-f9cb-4827-b725-5e8719199fcc","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.73200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30608,"total_pss":85817,"rss":180044,"native_total_heap":22780,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45892a85-9467-4e0f-8867-509ae3b201d5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.81000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4cf1f232-6119-43b9-bc8d-60924923c2a5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:11.72800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5061225,"utime":41,"cutime":0,"cstime":0,"stime":15,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"565a574a-507b-492c-8255-1e09789ac6fb","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:16.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30498,"total_pss":85980,"rss":180404,"native_total_heap":23036,"native_free_heap":1108,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58918fe3-8bb0-420f-acc0-edccc51c8325","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"599002b3-57f4-4678-afdc-1bf0f0749949","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.86300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ab900a4-c551-4b5d-b9c5-08e95b118bca","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183766,"total_pss":60312,"rss":152116,"native_total_heap":12376,"native_free_heap":1276,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8aad3d17-121e-42b8-92cc-0e7117c95816","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5058655,"end_time":5058728,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9973","content-type":"multipart/form-data; boundary=049a2cf2-2889-4b8a-b343-f4a73fbfcc9e","host":"10.0.2.2:8080","msr-req-id":"25f9030c-7ad8-46a0-a9df-20a97ddf9ab8","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:33:09 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ce1b591-303e-480f-bb36-378acfdbb12f","session_id":"6338e0bc-ee16-493a-9a5e-4abe0b54bc5a","timestamp":"2024-05-03T23:33:09.21500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (30):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=18 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=28 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_5\" prio=5 tid=29 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_6\" prio=5 tid=30 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"queued-work-looper\" prio=5 tid=31 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"binder:9819_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 9819 -----\n","process_name":"sh.measure.sample","pid":"9819"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"badbb86b-4785-4773-9b4c-6851624b585d","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:12.72600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30714,"total_pss":85251,"rss":179280,"native_total_heap":22780,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3ce1ed-8214-48fb-94b6-56a94f2f2bce","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.85300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c31eb6e9-ed46-4ddd-9895-7889c604cd57","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.93200000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c3c39fe6-96cd-4ff4-abd4-e6eb006ad1c3","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5058242,"utime":18,"cutime":0,"cstime":0,"stime":7,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8b79b18-0515-4321-b57b-9cfbd0cff10f","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:10.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30786,"total_pss":85163,"rss":179280,"native_total_heap":22780,"native_free_heap":1143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efbf004b-4e67-4790-9a3a-af7a55e461bf","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.92700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff04b40e-5d7c-420c-813e-08c18961a378","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.69200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510258,"uptime":5103188,"utime":20,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json b/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json index 5efb32cc5..6c286fce7 100644 --- a/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json +++ b/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json @@ -1 +1 @@ -[{"id":"00d72490-2ea5-4ce9-99bb-d9a824274867","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:02.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":137,"total_pss":30417,"rss":83472,"native_total_heap":26296,"native_free_heap":2705,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06e76b3c-1908-43e5-95a8-81c76ad1a70b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.68400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272426,"end_time":1272432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07f5899a-bb54-4f81-a15d-6f8baa5001fe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.05700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282429,"end_time":1282432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e5d240f-c24f-4e1b-bd91-5bce272ce5d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.85400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1293229,"utime":481,"cutime":0,"cstime":0,"stime":539,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ecfbbbe-a5c1-4f21-8a8c-7c22e3c41960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.03300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292399,"end_time":1292408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2801c4c3-caf5-4c69-87e0-76ce8117e183","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:06.85100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1281226,"utime":473,"cutime":0,"cstime":0,"stime":533,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c50c992-6b27-4817-8b53-3f60cc43ff71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:12.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1013,"total_pss":29586,"rss":83724,"native_total_heap":26296,"native_free_heap":2825,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d47d6d5-de9d-404c-86e0-1ba5d9efe602","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:38.66400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":234,"total_pss":31407,"rss":85400,"native_total_heap":26296,"native_free_heap":2717,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"349197c6-90bf-4511-87dc-7f6b1c4f5530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:00.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":209,"total_pss":31399,"rss":85804,"native_total_heap":26296,"native_free_heap":2737,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"360484c3-c0d9-4f91-a11e-72157c1ed7fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.67200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272404,"end_time":1272420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42ce2f32-f320-4199-8a6e-c87a0f9f34b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":146,"total_pss":31381,"rss":86444,"native_total_heap":26296,"native_free_heap":2681,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"493e23a8-8605-4a80-918a-8f6507c1380d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1290228,"utime":478,"cutime":0,"cstime":0,"stime":537,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54118fde-7747-48ad-9d1d-96a00a7da2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:23.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4065,"total_pss":28636,"rss":84560,"native_total_heap":26296,"native_free_heap":3365,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54a7925c-8011-416d-9641-57b76e8c6d7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:17.85200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1945,"total_pss":30275,"rss":84068,"native_total_heap":26296,"native_free_heap":2976,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56220b8c-58ce-4efa-87dc-37edc6b9acf2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.37900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1296227,"utime":482,"cutime":0,"cstime":0,"stime":541,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64ad21ac-e5df-4e9a-967a-7e20398d2de4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:21.60800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4137,"total_pss":28572,"rss":84264,"native_total_heap":26296,"native_free_heap":3402,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"663d2eae-9e6b-4ec4-95ef-c76691231639","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":925,"total_pss":29639,"rss":83748,"native_total_heap":26296,"native_free_heap":2789,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a6da2ce-b220-4d5c-b9ee-05dec2736130","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1278227,"utime":473,"cutime":0,"cstime":0,"stime":531,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b045771-2935-4a97-9f2a-87cf99e74c8f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.86200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2209,"total_pss":31085,"rss":84452,"native_total_heap":26296,"native_free_heap":3077,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b9bfd6b-1f8b-46f4-a6dc-7a24fd6a9e85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:37.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1263227,"utime":468,"cutime":0,"cstime":0,"stime":523,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76f11aeb-fc33-4f2b-baba-e4f49c8db92a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:01.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3141,"total_pss":27685,"rss":82348,"native_total_heap":26296,"native_free_heap":3251,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"772fa0ad-a50f-495a-9143-459f78e0d3c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1997,"total_pss":30248,"rss":84068,"native_total_heap":26296,"native_free_heap":2992,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f88e6ae-383b-40b0-9a70-5faeba1ff925","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:05.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3033,"total_pss":26591,"rss":78312,"native_total_heap":26296,"native_free_heap":3198,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fa7eae8-2d87-4308-b08d-ca6e692ab45f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:00.48000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1275228,"utime":472,"cutime":0,"cstime":0,"stime":530,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84804f2c-0f87-4dda-9b84-0c2dc83571f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:11.38100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1299229,"utime":482,"cutime":0,"cstime":0,"stime":542,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d46f4f9-063f-446a-ac8e-18b259d2efc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:12.85300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1287228,"utime":477,"cutime":0,"cstime":0,"stime":536,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9949aff6-ced9-4890-8c17-6908eebf16e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1137,"total_pss":29796,"rss":83892,"native_total_heap":26296,"native_free_heap":2873,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9aec42aa-a523-4a62-8c06-89db55d4466f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:13.03800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":27982,"rss":82236,"native_total_heap":26296,"native_free_heap":3391,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a033f7ae-c599-4918-b334-5bac9679d76d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.86600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262425,"end_time":1262429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a20e4a69-66f4-42c5-bdda-862255cef4c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.61200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1266231,"utime":469,"cutime":0,"cstime":0,"stime":524,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9c5ad0f-4338-482e-bb0f-f6056291f356","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3069,"total_pss":27781,"rss":81712,"native_total_heap":26296,"native_free_heap":3214,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa6dbb75-bfea-4cf0-b127-06d153b20aa7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:01.16700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1305230,"utime":485,"cutime":0,"cstime":0,"stime":544,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad1dea31-532f-449a-be23-75ddb19fba8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:07.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2929,"total_pss":28300,"rss":80364,"native_total_heap":26296,"native_free_heap":3162,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b655092c-6dcf-40a4-b4ca-48561dbc348a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.57400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302419,"end_time":1302423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b742b2a4-8032-4e41-95b6-e9bd84114dfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:19.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1225,"total_pss":30884,"rss":84736,"native_total_heap":26296,"native_free_heap":2909,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb617c07-7dda-4249-80f4-4044d7636915","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:14.04000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1311228,"utime":488,"cutime":0,"cstime":0,"stime":546,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb8d3856-f2bf-4c52-bea8-c068de59dbba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:59.47800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3245,"total_pss":26592,"rss":82452,"native_total_heap":26296,"native_free_heap":3282,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4b1385e-d73d-4adb-86fa-719798c0cfab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.04600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282404,"end_time":1282421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c63d6816-1981-4a14-bbee-8ddc249f19e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1308227,"utime":487,"cutime":0,"cstime":0,"stime":546,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf260368-e617-455e-81c7-ef51c678d39b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:11.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2157,"total_pss":30853,"rss":84480,"native_total_heap":26296,"native_free_heap":3061,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf3bfded-8e3e-4dce-87f2-0cb6dce8c2da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4230,"total_pss":27954,"rss":82236,"native_total_heap":26296,"native_free_heap":3407,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d23ed098-7ccc-4967-9bc9-d65d247c4bbe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3977,"total_pss":26236,"rss":81980,"native_total_heap":26296,"native_free_heap":3334,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcc43366-887b-40fe-8df3-ed3dc3380224","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.56500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302399,"end_time":1302413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e438f26c-42b5-4e88-bace-25d70a324213","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1272226,"utime":471,"cutime":0,"cstime":0,"stime":528,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e572eaa8-fe59-4bab-b36b-19c3eb34b48b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:10.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1085,"total_pss":28407,"rss":82740,"native_total_heap":26296,"native_free_heap":2857,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebb9bc40-6a61-423c-a7e1-53c9ae773b7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:13.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2069,"total_pss":30715,"rss":84480,"native_total_heap":26296,"native_free_heap":3029,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed9cdda9-ba4e-4a9b-b536-dd8f16c149b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.04200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292414,"end_time":1292417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaba9ac-b222-4e0c-b35c-50a61bf73731","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.37900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1302228,"utime":483,"cutime":0,"cstime":0,"stime":543,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0875844-d586-4916-b256-ce22e6cf4220","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:22.60900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1269228,"utime":471,"cutime":0,"cstime":0,"stime":527,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bba3d3-f8a0-4c2d-9ca4-8b2a3594a531","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.85400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1284229,"utime":475,"cutime":0,"cstime":0,"stime":535,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"00d72490-2ea5-4ce9-99bb-d9a824274867","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:02.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":137,"total_pss":30417,"rss":83472,"native_total_heap":26296,"native_free_heap":2705,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06e76b3c-1908-43e5-95a8-81c76ad1a70b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.68400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272426,"end_time":1272432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07f5899a-bb54-4f81-a15d-6f8baa5001fe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.05700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282429,"end_time":1282432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e5d240f-c24f-4e1b-bd91-5bce272ce5d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.85400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1293229,"utime":481,"cutime":0,"cstime":0,"stime":539,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ecfbbbe-a5c1-4f21-8a8c-7c22e3c41960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.03300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292399,"end_time":1292408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2801c4c3-caf5-4c69-87e0-76ce8117e183","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:06.85100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1281226,"utime":473,"cutime":0,"cstime":0,"stime":533,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c50c992-6b27-4817-8b53-3f60cc43ff71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:12.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1013,"total_pss":29586,"rss":83724,"native_total_heap":26296,"native_free_heap":2825,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d47d6d5-de9d-404c-86e0-1ba5d9efe602","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:38.66400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":234,"total_pss":31407,"rss":85400,"native_total_heap":26296,"native_free_heap":2717,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"349197c6-90bf-4511-87dc-7f6b1c4f5530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:00.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":209,"total_pss":31399,"rss":85804,"native_total_heap":26296,"native_free_heap":2737,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"360484c3-c0d9-4f91-a11e-72157c1ed7fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.67200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272404,"end_time":1272420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42ce2f32-f320-4199-8a6e-c87a0f9f34b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":146,"total_pss":31381,"rss":86444,"native_total_heap":26296,"native_free_heap":2681,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"493e23a8-8605-4a80-918a-8f6507c1380d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1290228,"utime":478,"cutime":0,"cstime":0,"stime":537,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54118fde-7747-48ad-9d1d-96a00a7da2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:23.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4065,"total_pss":28636,"rss":84560,"native_total_heap":26296,"native_free_heap":3365,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54a7925c-8011-416d-9641-57b76e8c6d7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:17.85200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1945,"total_pss":30275,"rss":84068,"native_total_heap":26296,"native_free_heap":2976,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56220b8c-58ce-4efa-87dc-37edc6b9acf2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.37900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1296227,"utime":482,"cutime":0,"cstime":0,"stime":541,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64ad21ac-e5df-4e9a-967a-7e20398d2de4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:21.60800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4137,"total_pss":28572,"rss":84264,"native_total_heap":26296,"native_free_heap":3402,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"663d2eae-9e6b-4ec4-95ef-c76691231639","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":925,"total_pss":29639,"rss":83748,"native_total_heap":26296,"native_free_heap":2789,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a6da2ce-b220-4d5c-b9ee-05dec2736130","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1278227,"utime":473,"cutime":0,"cstime":0,"stime":531,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b045771-2935-4a97-9f2a-87cf99e74c8f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.86200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2209,"total_pss":31085,"rss":84452,"native_total_heap":26296,"native_free_heap":3077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b9bfd6b-1f8b-46f4-a6dc-7a24fd6a9e85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:37.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1263227,"utime":468,"cutime":0,"cstime":0,"stime":523,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76f11aeb-fc33-4f2b-baba-e4f49c8db92a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:01.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3141,"total_pss":27685,"rss":82348,"native_total_heap":26296,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"772fa0ad-a50f-495a-9143-459f78e0d3c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1997,"total_pss":30248,"rss":84068,"native_total_heap":26296,"native_free_heap":2992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f88e6ae-383b-40b0-9a70-5faeba1ff925","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:05.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3033,"total_pss":26591,"rss":78312,"native_total_heap":26296,"native_free_heap":3198,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fa7eae8-2d87-4308-b08d-ca6e692ab45f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:00.48000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1275228,"utime":472,"cutime":0,"cstime":0,"stime":530,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84804f2c-0f87-4dda-9b84-0c2dc83571f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:11.38100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1299229,"utime":482,"cutime":0,"cstime":0,"stime":542,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d46f4f9-063f-446a-ac8e-18b259d2efc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:12.85300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1287228,"utime":477,"cutime":0,"cstime":0,"stime":536,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9949aff6-ced9-4890-8c17-6908eebf16e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1137,"total_pss":29796,"rss":83892,"native_total_heap":26296,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9aec42aa-a523-4a62-8c06-89db55d4466f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:13.03800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":27982,"rss":82236,"native_total_heap":26296,"native_free_heap":3391,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a033f7ae-c599-4918-b334-5bac9679d76d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.86600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262425,"end_time":1262429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a20e4a69-66f4-42c5-bdda-862255cef4c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.61200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1266231,"utime":469,"cutime":0,"cstime":0,"stime":524,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9c5ad0f-4338-482e-bb0f-f6056291f356","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3069,"total_pss":27781,"rss":81712,"native_total_heap":26296,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa6dbb75-bfea-4cf0-b127-06d153b20aa7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:01.16700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1305230,"utime":485,"cutime":0,"cstime":0,"stime":544,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad1dea31-532f-449a-be23-75ddb19fba8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:07.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2929,"total_pss":28300,"rss":80364,"native_total_heap":26296,"native_free_heap":3162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b655092c-6dcf-40a4-b4ca-48561dbc348a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.57400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302419,"end_time":1302423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b742b2a4-8032-4e41-95b6-e9bd84114dfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:19.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1225,"total_pss":30884,"rss":84736,"native_total_heap":26296,"native_free_heap":2909,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb617c07-7dda-4249-80f4-4044d7636915","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:14.04000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1311228,"utime":488,"cutime":0,"cstime":0,"stime":546,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb8d3856-f2bf-4c52-bea8-c068de59dbba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:59.47800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3245,"total_pss":26592,"rss":82452,"native_total_heap":26296,"native_free_heap":3282,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4b1385e-d73d-4adb-86fa-719798c0cfab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.04600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282404,"end_time":1282421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c63d6816-1981-4a14-bbee-8ddc249f19e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1308227,"utime":487,"cutime":0,"cstime":0,"stime":546,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf260368-e617-455e-81c7-ef51c678d39b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:11.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2157,"total_pss":30853,"rss":84480,"native_total_heap":26296,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf3bfded-8e3e-4dce-87f2-0cb6dce8c2da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4230,"total_pss":27954,"rss":82236,"native_total_heap":26296,"native_free_heap":3407,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d23ed098-7ccc-4967-9bc9-d65d247c4bbe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3977,"total_pss":26236,"rss":81980,"native_total_heap":26296,"native_free_heap":3334,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcc43366-887b-40fe-8df3-ed3dc3380224","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.56500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302399,"end_time":1302413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e438f26c-42b5-4e88-bace-25d70a324213","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1272226,"utime":471,"cutime":0,"cstime":0,"stime":528,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e572eaa8-fe59-4bab-b36b-19c3eb34b48b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:10.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1085,"total_pss":28407,"rss":82740,"native_total_heap":26296,"native_free_heap":2857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebb9bc40-6a61-423c-a7e1-53c9ae773b7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:13.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2069,"total_pss":30715,"rss":84480,"native_total_heap":26296,"native_free_heap":3029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed9cdda9-ba4e-4a9b-b536-dd8f16c149b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.04200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292414,"end_time":1292417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaba9ac-b222-4e0c-b35c-50a61bf73731","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.37900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1302228,"utime":483,"cutime":0,"cstime":0,"stime":543,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0875844-d586-4916-b256-ce22e6cf4220","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:22.60900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1269228,"utime":471,"cutime":0,"cstime":0,"stime":527,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bba3d3-f8a0-4c2d-9ca4-8b2a3594a531","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.85400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1284229,"utime":475,"cutime":0,"cstime":0,"stime":535,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json b/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json index 6c1a83f3d..0a812c702 100644 --- a/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json +++ b/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json @@ -1 +1 @@ -[{"id":"0c3b5384-c8de-44f9-90d7-0755bd2f8f6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":144,"total_pss":35813,"rss":107600,"native_total_heap":25528,"native_free_heap":2695,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c818264-8a9d-41f8-94d5-2b651e52cc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":684227,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e25bf70-6cd1-4315-9d21-3363bc0a4d3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712424,"end_time":712434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12ec620d-dc2e-4fdb-a71c-54adbd3d26d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:35.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":304,"total_pss":35677,"rss":107592,"native_total_heap":25528,"native_free_heap":2764,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"197d960d-4f8f-468c-8161-9f87bf95a219","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1336,"total_pss":33949,"rss":105464,"native_total_heap":25528,"native_free_heap":2951,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1df235a4-f1aa-478e-b716-17ce643be831","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2145,"total_pss":34291,"rss":106092,"native_total_heap":25528,"native_free_heap":3088,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e7f5eda-13e4-4ded-8e94-b858286555dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":690229,"utime":150,"cutime":0,"cstime":0,"stime":170,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26f46270-e7f0-4778-9f7f-6fd685940d44","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2300,"total_pss":33234,"rss":104020,"native_total_heap":25528,"native_free_heap":3107,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f2c3a1b-dfcb-4eeb-bbf9-f758447113b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":723227,"utime":178,"cutime":0,"cstime":0,"stime":198,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a8f5bc6-e7f1-4bf1-8ed9-2387efa8d3cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3217,"total_pss":33405,"rss":105008,"native_total_heap":25528,"native_free_heap":3292,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b00bff1-9468-4e44-b2a8-662af51d8eb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712403,"end_time":712418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"438c961a-50c4-441a-bc97-bc1dc2be31b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702413,"end_time":702422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44071cde-7ba6-4ba1-aafd-74f8149d5621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692401,"end_time":692422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44976875-769c-41c4-b0da-16ce225355ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":720228,"utime":174,"cutime":0,"cstime":0,"stime":193,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d785677-4bb5-40a8-8f4f-45e9f53fa147","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:19.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2196,"total_pss":33161,"rss":104232,"native_total_heap":25528,"native_free_heap":3071,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5509b232-3911-42d3-a2f5-50dbe587f13c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.40000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692444,"end_time":692452,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5698d1a7-6a19-4dd1-886e-c807aaa2cd0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3005,"total_pss":33533,"rss":105476,"native_total_heap":25528,"native_free_heap":3208,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592ed2d6-aa33-4941-a43d-5df23f38c4ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":699227,"utime":156,"cutime":0,"cstime":0,"stime":177,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68726e4c-87ea-4921-9a20-e5b74807d893","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":726228,"utime":179,"cutime":0,"cstime":0,"stime":200,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7921b550-c236-4879-84bc-224312fd6a53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":711228,"utime":167,"cutime":0,"cstime":0,"stime":188,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ed3e23f-3b62-487c-8442-785bce152f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":714228,"utime":171,"cutime":0,"cstime":0,"stime":189,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81b7a5e4-f07f-4235-99ef-8bdfa7bf6b11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4053,"total_pss":32697,"rss":104376,"native_total_heap":25528,"native_free_heap":3394,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8221d3cb-8165-4892-8510-0b416f8b3f57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2124,"total_pss":33208,"rss":104232,"native_total_heap":25528,"native_free_heap":3039,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8273e68f-ac99-48c1-bf74-0f8a175e5d8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":696229,"utime":156,"cutime":0,"cstime":0,"stime":175,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86e48f17-c40f-45d4-b7a5-623710d9e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2088,"total_pss":33231,"rss":104232,"native_total_heap":25528,"native_free_heap":3023,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b742af1-6a71-43cb-86c3-3b392d7bd6f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722400,"end_time":722420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b76cb16-5c8d-44e4-97be-254d97914489","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3057,"total_pss":33509,"rss":105224,"native_total_heap":25528,"native_free_heap":3224,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9215a9-e92c-4de4-81d7-0d1541fc808e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":232,"total_pss":35733,"rss":107600,"native_total_heap":25528,"native_free_heap":2732,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ade6f9d-cd4d-49fe-809b-fcc14a5a6ac9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2336,"total_pss":33898,"rss":104020,"native_total_heap":25528,"native_free_heap":3124,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a63d8d99-17af-42ae-bb65-1389b2f08d97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":687227,"utime":148,"cutime":0,"cstime":0,"stime":170,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6c0dbcc-1a85-4cf6-b774-bdcd984f0e1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:36.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":705230,"utime":163,"cutime":0,"cstime":0,"stime":183,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b866e831-60ba-4a11-ac75-ccb898a3e6f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1020,"total_pss":35677,"rss":107452,"native_total_heap":25528,"native_free_heap":2833,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc399567-a650-43ce-9ba5-70bd690060e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1108,"total_pss":35625,"rss":107452,"native_total_heap":25528,"native_free_heap":2865,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf539aef-e4a2-4f5d-9c39-9ff69d963877","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2197,"total_pss":34273,"rss":106092,"native_total_heap":25528,"native_free_heap":3105,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf9c38a8-690e-4727-be8d-f790238c9df6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1232,"total_pss":35556,"rss":107228,"native_total_heap":25528,"native_free_heap":2918,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1a13d04-4fec-45c3-8506-6c515629f2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3253,"total_pss":33381,"rss":105008,"native_total_heap":25528,"native_free_heap":3308,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c22bb48f-c52f-4868-85df-207574edea6b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3072,"total_pss":33232,"rss":103416,"native_total_heap":25528,"native_free_heap":3209,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4057041-8bd5-4377-bebb-c268bca2a0e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1180,"total_pss":35584,"rss":107228,"native_total_heap":25528,"native_free_heap":2902,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6af38be-a09d-46d1-bfa8-842e13bf6f66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":708227,"utime":164,"cutime":0,"cstime":0,"stime":184,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca3a506c-914e-4b1b-8bb7-0486022e7c5e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.38800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722429,"end_time":722440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce52f433-9347-4ae7-ae35-ffc5500a0ffb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":693227,"utime":154,"cutime":0,"cstime":0,"stime":173,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d931f7ea-d59d-450a-a5b4-c11fbfdf531c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682399,"end_time":682424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e692b45d-2147-4415-a9c5-b9f236f49fc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4141,"total_pss":32633,"rss":104376,"native_total_heap":25528,"native_free_heap":3412,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8a1ef5b-e09a-449f-ada6-d936b2725726","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":717227,"utime":172,"cutime":0,"cstime":0,"stime":193,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e90ccd04-fd94-41e6-b2c0-b889bbf8217e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":702227,"utime":157,"cutime":0,"cstime":0,"stime":179,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef05da29-81d6-4cc3-acf3-aad5f44afdad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702396,"end_time":702409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0bc8dc2-54d5-497c-a9d4-aa46c17e01a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2269,"total_pss":34217,"rss":106092,"native_total_heap":25528,"native_free_heap":3141,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f308f1a7-4970-489a-b459-31ec5775732f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3129,"total_pss":33457,"rss":105224,"native_total_heap":25528,"native_free_heap":3260,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7ebd77-1c59-4d80-8074-da58714bd43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":729227,"utime":181,"cutime":0,"cstime":0,"stime":203,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdfcf677-dd3b-485b-81b9-b7b53f2f9eb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.39500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682437,"end_time":682447,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0c3b5384-c8de-44f9-90d7-0755bd2f8f6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":144,"total_pss":35813,"rss":107600,"native_total_heap":25528,"native_free_heap":2695,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c818264-8a9d-41f8-94d5-2b651e52cc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":684227,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e25bf70-6cd1-4315-9d21-3363bc0a4d3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712424,"end_time":712434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12ec620d-dc2e-4fdb-a71c-54adbd3d26d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:35.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":304,"total_pss":35677,"rss":107592,"native_total_heap":25528,"native_free_heap":2764,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"197d960d-4f8f-468c-8161-9f87bf95a219","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1336,"total_pss":33949,"rss":105464,"native_total_heap":25528,"native_free_heap":2951,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1df235a4-f1aa-478e-b716-17ce643be831","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2145,"total_pss":34291,"rss":106092,"native_total_heap":25528,"native_free_heap":3088,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e7f5eda-13e4-4ded-8e94-b858286555dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":690229,"utime":150,"cutime":0,"cstime":0,"stime":170,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26f46270-e7f0-4778-9f7f-6fd685940d44","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2300,"total_pss":33234,"rss":104020,"native_total_heap":25528,"native_free_heap":3107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f2c3a1b-dfcb-4eeb-bbf9-f758447113b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":723227,"utime":178,"cutime":0,"cstime":0,"stime":198,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a8f5bc6-e7f1-4bf1-8ed9-2387efa8d3cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3217,"total_pss":33405,"rss":105008,"native_total_heap":25528,"native_free_heap":3292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b00bff1-9468-4e44-b2a8-662af51d8eb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712403,"end_time":712418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"438c961a-50c4-441a-bc97-bc1dc2be31b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702413,"end_time":702422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44071cde-7ba6-4ba1-aafd-74f8149d5621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692401,"end_time":692422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44976875-769c-41c4-b0da-16ce225355ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":720228,"utime":174,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d785677-4bb5-40a8-8f4f-45e9f53fa147","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:19.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2196,"total_pss":33161,"rss":104232,"native_total_heap":25528,"native_free_heap":3071,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5509b232-3911-42d3-a2f5-50dbe587f13c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.40000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692444,"end_time":692452,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5698d1a7-6a19-4dd1-886e-c807aaa2cd0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3005,"total_pss":33533,"rss":105476,"native_total_heap":25528,"native_free_heap":3208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592ed2d6-aa33-4941-a43d-5df23f38c4ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":699227,"utime":156,"cutime":0,"cstime":0,"stime":177,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68726e4c-87ea-4921-9a20-e5b74807d893","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":726228,"utime":179,"cutime":0,"cstime":0,"stime":200,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7921b550-c236-4879-84bc-224312fd6a53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":711228,"utime":167,"cutime":0,"cstime":0,"stime":188,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ed3e23f-3b62-487c-8442-785bce152f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":714228,"utime":171,"cutime":0,"cstime":0,"stime":189,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81b7a5e4-f07f-4235-99ef-8bdfa7bf6b11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4053,"total_pss":32697,"rss":104376,"native_total_heap":25528,"native_free_heap":3394,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8221d3cb-8165-4892-8510-0b416f8b3f57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2124,"total_pss":33208,"rss":104232,"native_total_heap":25528,"native_free_heap":3039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8273e68f-ac99-48c1-bf74-0f8a175e5d8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":696229,"utime":156,"cutime":0,"cstime":0,"stime":175,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86e48f17-c40f-45d4-b7a5-623710d9e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2088,"total_pss":33231,"rss":104232,"native_total_heap":25528,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b742af1-6a71-43cb-86c3-3b392d7bd6f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722400,"end_time":722420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b76cb16-5c8d-44e4-97be-254d97914489","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3057,"total_pss":33509,"rss":105224,"native_total_heap":25528,"native_free_heap":3224,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9215a9-e92c-4de4-81d7-0d1541fc808e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":232,"total_pss":35733,"rss":107600,"native_total_heap":25528,"native_free_heap":2732,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ade6f9d-cd4d-49fe-809b-fcc14a5a6ac9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2336,"total_pss":33898,"rss":104020,"native_total_heap":25528,"native_free_heap":3124,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a63d8d99-17af-42ae-bb65-1389b2f08d97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":687227,"utime":148,"cutime":0,"cstime":0,"stime":170,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6c0dbcc-1a85-4cf6-b774-bdcd984f0e1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:36.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":705230,"utime":163,"cutime":0,"cstime":0,"stime":183,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b866e831-60ba-4a11-ac75-ccb898a3e6f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1020,"total_pss":35677,"rss":107452,"native_total_heap":25528,"native_free_heap":2833,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc399567-a650-43ce-9ba5-70bd690060e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1108,"total_pss":35625,"rss":107452,"native_total_heap":25528,"native_free_heap":2865,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf539aef-e4a2-4f5d-9c39-9ff69d963877","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2197,"total_pss":34273,"rss":106092,"native_total_heap":25528,"native_free_heap":3105,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf9c38a8-690e-4727-be8d-f790238c9df6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1232,"total_pss":35556,"rss":107228,"native_total_heap":25528,"native_free_heap":2918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1a13d04-4fec-45c3-8506-6c515629f2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3253,"total_pss":33381,"rss":105008,"native_total_heap":25528,"native_free_heap":3308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c22bb48f-c52f-4868-85df-207574edea6b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3072,"total_pss":33232,"rss":103416,"native_total_heap":25528,"native_free_heap":3209,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4057041-8bd5-4377-bebb-c268bca2a0e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1180,"total_pss":35584,"rss":107228,"native_total_heap":25528,"native_free_heap":2902,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6af38be-a09d-46d1-bfa8-842e13bf6f66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":708227,"utime":164,"cutime":0,"cstime":0,"stime":184,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca3a506c-914e-4b1b-8bb7-0486022e7c5e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.38800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722429,"end_time":722440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce52f433-9347-4ae7-ae35-ffc5500a0ffb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":693227,"utime":154,"cutime":0,"cstime":0,"stime":173,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d931f7ea-d59d-450a-a5b4-c11fbfdf531c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682399,"end_time":682424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e692b45d-2147-4415-a9c5-b9f236f49fc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4141,"total_pss":32633,"rss":104376,"native_total_heap":25528,"native_free_heap":3412,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8a1ef5b-e09a-449f-ada6-d936b2725726","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":717227,"utime":172,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e90ccd04-fd94-41e6-b2c0-b889bbf8217e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":702227,"utime":157,"cutime":0,"cstime":0,"stime":179,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef05da29-81d6-4cc3-acf3-aad5f44afdad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702396,"end_time":702409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0bc8dc2-54d5-497c-a9d4-aa46c17e01a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2269,"total_pss":34217,"rss":106092,"native_total_heap":25528,"native_free_heap":3141,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f308f1a7-4970-489a-b459-31ec5775732f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3129,"total_pss":33457,"rss":105224,"native_total_heap":25528,"native_free_heap":3260,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7ebd77-1c59-4d80-8074-da58714bd43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":729227,"utime":181,"cutime":0,"cstime":0,"stime":203,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdfcf677-dd3b-485b-81b9-b7b53f2f9eb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.39500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682437,"end_time":682447,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json b/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json index 32893a716..af4c428df 100644 --- a/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json +++ b/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json @@ -1 +1 @@ -[{"id":"10d49e8c-196a-4304-aeaf-87886024df4e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":853053,"utime":25,"cutime":0,"cstime":0,"stime":8,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1460fa65-abf9-4e13-a270-6255fdb511a4","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:10.82800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5497"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1835d4eb-1759-4204-833f-340af52311b5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":873459,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"31c1e5f8-c5e9-4931-acb6-2319c7192dbf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:24.69700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4411,"total_pss":77424,"rss":165544,"native_total_heap":22524,"native_free_heap":1433,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"3504e00c-4047-467d-8463-a85db0c5a536","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.53100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"466b8078-35c3-4126-a9d2-ce2f76cadadc","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.20500000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a06fdb6-4ddc-4972-9b3f-34fb671fffb0","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.47100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a1a31a2-1825-4e3b-8100-bb9ad452a97e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:20.63100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15495,"java_free_heap":0,"total_pss":84469,"rss":175956,"native_total_heap":22524,"native_free_heap":1025,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4b21fca4-76b5-4bde-a1a3-67a3c2acbf44","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.45700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"54649b74-4273-4c7c-9e5c-7ca54da53ae5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.72100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4163,"total_pss":77485,"rss":165684,"native_total_heap":22524,"native_free_heap":1346,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56316d6c-4d6f-4f49-b33c-7d0a4f27577a","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":187032,"total_pss":56993,"rss":148908,"native_total_heap":12376,"native_free_heap":1273,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56763fe3-8b7d-462c-8ea5-6f4b385bc195","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.66900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"59e36443-0f3a-44bc-a3de-47e8b1cef511","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.19300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"654ebc02-e645-4166-837d-4b604fc63dd9","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.87800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":873354,"on_next_draw_uptime":873557,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"6886a776-83cd-43f4-b068-f9d6a5cb4bfd","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.65600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":852465,"process_start_requested_uptime":852299,"content_provider_attach_uptime":852939,"on_next_draw_uptime":853326,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"7ae7abd6-cdf3-4500-9763-8eb5d50be9e5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:18.60000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33744,"total_pss":84407,"rss":175816,"native_total_heap":22524,"native_free_heap":1034,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9241e97c-6193-4c57-a5d4-e100a0c90348","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33780,"total_pss":84364,"rss":175816,"native_total_heap":22524,"native_free_heap":1025,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"930e2e67-6feb-4728-93cc-d4977cd4186f","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9b9d8da9-6e43-4873-9f8f-71f7d46a7030","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:19.39500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":862074,"utime":59,"cutime":0,"cstime":0,"stime":24,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9ccb01ef-620b-45ff-b764-dd0b2a10734b","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:25.40800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":868088,"utime":67,"cutime":0,"cstime":0,"stime":29,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"a1118e08-f104-4ffa-b2d8-f67a72359efa","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.66300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4463,"total_pss":77392,"rss":165540,"native_total_heap":22524,"native_free_heap":1449,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ac1155ab-4ae2-4524-90fd-c7663dc48aec","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:07.23700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8967,"java_free_heap":674,"total_pss":90375,"rss":177848,"native_total_heap":33284,"native_free_heap":1372,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"c34b91e5-5629-4715-816c-6d15d9f4d2a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.39900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":865078,"utime":62,"cutime":0,"cstime":0,"stime":27,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cbf0304a-5768-4739-8529-ba04c9207a1d","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:12.52600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33977,"total_pss":83687,"rss":174576,"native_total_heap":22524,"native_free_heap":1062,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cf8bcf59-2f63-4fe2-9d5f-ebe1e119d2bf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.79400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"d013a232-0e5a-46ea-b1a7-c7d178225765","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:13.37800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":856058,"utime":52,"cutime":0,"cstime":0,"stime":19,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ea44eb24-749b-406a-941c-f115a5368c84","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:14.54100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33889,"total_pss":83741,"rss":174908,"native_total_heap":22524,"native_free_heap":1054,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"eb57bc3f-19b9-46d2-9e10-c3efebb5b302","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.38700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":859066,"utime":57,"cutime":0,"cstime":0,"stime":19,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"f9309c28-19f0-4c88-a975-051dec7c99a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.52800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"fa73d224-db06-42ff-886f-e986273e5182","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file +[{"id":"10d49e8c-196a-4304-aeaf-87886024df4e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":853053,"utime":25,"cutime":0,"cstime":0,"stime":8,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1460fa65-abf9-4e13-a270-6255fdb511a4","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:10.82800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5497"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1835d4eb-1759-4204-833f-340af52311b5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":873459,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"31c1e5f8-c5e9-4931-acb6-2319c7192dbf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:24.69700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4411,"total_pss":77424,"rss":165544,"native_total_heap":22524,"native_free_heap":1433,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"3504e00c-4047-467d-8463-a85db0c5a536","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.53100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"466b8078-35c3-4126-a9d2-ce2f76cadadc","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.20500000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a06fdb6-4ddc-4972-9b3f-34fb671fffb0","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.47100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a1a31a2-1825-4e3b-8100-bb9ad452a97e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:20.63100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15495,"java_free_heap":0,"total_pss":84469,"rss":175956,"native_total_heap":22524,"native_free_heap":1025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4b21fca4-76b5-4bde-a1a3-67a3c2acbf44","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.45700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"54649b74-4273-4c7c-9e5c-7ca54da53ae5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.72100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4163,"total_pss":77485,"rss":165684,"native_total_heap":22524,"native_free_heap":1346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56316d6c-4d6f-4f49-b33c-7d0a4f27577a","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":187032,"total_pss":56993,"rss":148908,"native_total_heap":12376,"native_free_heap":1273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56763fe3-8b7d-462c-8ea5-6f4b385bc195","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.66900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"59e36443-0f3a-44bc-a3de-47e8b1cef511","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.19300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"654ebc02-e645-4166-837d-4b604fc63dd9","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.87800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":873354,"on_next_draw_uptime":873557,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"6886a776-83cd-43f4-b068-f9d6a5cb4bfd","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.65600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":852465,"process_start_requested_uptime":852299,"content_provider_attach_uptime":852939,"on_next_draw_uptime":853326,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"7ae7abd6-cdf3-4500-9763-8eb5d50be9e5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:18.60000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33744,"total_pss":84407,"rss":175816,"native_total_heap":22524,"native_free_heap":1034,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9241e97c-6193-4c57-a5d4-e100a0c90348","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33780,"total_pss":84364,"rss":175816,"native_total_heap":22524,"native_free_heap":1025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"930e2e67-6feb-4728-93cc-d4977cd4186f","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9b9d8da9-6e43-4873-9f8f-71f7d46a7030","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:19.39500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":862074,"utime":59,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9ccb01ef-620b-45ff-b764-dd0b2a10734b","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:25.40800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":868088,"utime":67,"cutime":0,"cstime":0,"stime":29,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"a1118e08-f104-4ffa-b2d8-f67a72359efa","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.66300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4463,"total_pss":77392,"rss":165540,"native_total_heap":22524,"native_free_heap":1449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ac1155ab-4ae2-4524-90fd-c7663dc48aec","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:07.23700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8967,"java_free_heap":674,"total_pss":90375,"rss":177848,"native_total_heap":33284,"native_free_heap":1372,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"c34b91e5-5629-4715-816c-6d15d9f4d2a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.39900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":865078,"utime":62,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cbf0304a-5768-4739-8529-ba04c9207a1d","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:12.52600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33977,"total_pss":83687,"rss":174576,"native_total_heap":22524,"native_free_heap":1062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cf8bcf59-2f63-4fe2-9d5f-ebe1e119d2bf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.79400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"d013a232-0e5a-46ea-b1a7-c7d178225765","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:13.37800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":856058,"utime":52,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ea44eb24-749b-406a-941c-f115a5368c84","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:14.54100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33889,"total_pss":83741,"rss":174908,"native_total_heap":22524,"native_free_heap":1054,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"eb57bc3f-19b9-46d2-9e10-c3efebb5b302","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.38700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":859066,"utime":57,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"f9309c28-19f0-4c88-a975-051dec7c99a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.52800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"fa73d224-db06-42ff-886f-e986273e5182","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json b/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json index 0f8a45ad5..ce3850004 100644 --- a/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json +++ b/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json @@ -1 +1 @@ -[{"id":"00926847-134e-4014-817c-27245d112ff6","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:15.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5124758,"utime":676,"cutime":0,"cstime":0,"stime":32,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"02e4674b-5af1-4da7-b8ac-fc8fb33d8435","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.56700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5130063,"utime":54,"cutime":0,"cstime":0,"stime":18,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0776a2f7-0897-4130-90d2-741c7118906b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.79700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116262,"end_time":5116294,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a25d864-c607-4d14-8e1f-44b91b1fe5fe","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.97900000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5128127,"end_time":5129475,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:34:20 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"148b6929-fa3e-4d9d-9380-c10d9c5cec2d","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:08.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27464,"total_pss":93134,"rss":184640,"native_total_heap":23292,"native_free_heap":1163,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21c2f643-b8e3-4ef1-8048-080aab3bffd4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5127088,"utime":17,"cutime":0,"cstime":0,"stime":4,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"277c9543-b71a-4473-af48-31e21d572927","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a61a915-df6b-4557-bfbe-4dff623af5e8","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:17.93100000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10176_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=19 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000076e9c /system/lib64/libbinder.so (android::IPCThreadState::transact(int, unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+548) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 00000000000769e0 /system/lib64/libbinder.so (android::BpBinder::transact(unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+172) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000d5560 /system/lib64/libgui.so (android::BpSurfaceComposer::setTransactionState(android::FrameTimelineInfo const\u0026, android::Vector\u003candroid::ComposerState\u003e const\u0026, android::Vector\u003candroid::DisplayState\u003e const\u0026, unsigned int, android::sp\u003candroid::IBinder\u003e const\u0026, android::InputWindowCommands const\u0026, long, bool, android::client_cache_t const\u0026, bool, std::__1::vector\u003candroid::ListenerCallbacks, std::__1::allocator\u003candroid::ListenerCallbacks\u003e \u003e const\u0026, unsigned long)+864) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000e11cc /system/lib64/libgui.so (android::SurfaceComposerClient::Transaction::apply(bool, bool)+2000) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000c5268 /system/lib64/libgui.so (android::BLASTBufferQueue::acquireNextBufferLocked(std::__1::optional\u003candroid::SurfaceComposerClient::Transaction*\u003e)+10068) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #07 pc 00000000000f3304 /system/lib64/libgui.so (android::BLASTBufferQueue::onFrameAvailable(android::BufferItem const\u0026)+472) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #08 pc 00000000000a9ae0 /system/lib64/libgui.so (android::ConsumerBase::onFrameAvailable(android::BufferItem const\u0026)+172) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #09 pc 000000000008df88 /system/lib64/libgui.so (android::BufferQueue::ProxyConsumerListener::onFrameAvailable(android::BufferItem const\u0026)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #10 pc 00000000000e72f8 /system/lib64/libgui.so (android::BufferQueueProducer::queueBuffer(int, android::IGraphicBufferProducer::QueueBufferInput const\u0026, android::IGraphicBufferProducer::QueueBufferOutput*)+2200) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #11 pc 000000000012b9c0 /system/lib64/libgui.so (android::Surface::queueBuffer(ANativeWindowBuffer*, int)+1540) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #12 pc 0000000000127c10 /system/lib64/libgui.so (android::Surface::hook_queueBuffer(ANativeWindow*, ANativeWindowBuffer*, int)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #13 pc 000000000000acd4 /vendor/lib64/egl/libEGL_emulation.so (egl_window_surface_t::swapBuffers()+472) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #14 pc 000000000000f524 /vendor/lib64/egl/libEGL_emulation.so (eglSwapBuffers+448) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #15 pc 000000000001fb9c /system/lib64/libEGL.so (android::eglSwapBuffersWithDamageKHRImpl(void*, void*, int*, int)+524) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #16 pc 000000000001c4a8 /system/lib64/libEGL.so (eglSwapBuffersWithDamageKHR+72) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #17 pc 0000000000529984 /system/lib64/libhwui.so (android::uirenderer::skiapipeline::SkiaOpenGLPipeline::swapBuffers(android::uirenderer::renderthread::Frame const\u0026, bool, SkRect const\u0026, android::uirenderer::FrameInfo*, bool*)+244) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #18 pc 0000000000420988 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::draw()+1032) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #19 pc 000000000041ff78 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::prepareAndDraw(android::uirenderer::RenderNode*)+280) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #20 pc 000000000051be64 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::dispatchFrameCallbacks()+156) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #21 pc 000000000057c668 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+644) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #22 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #23 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #24 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=21 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=22 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=23 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"binder:10176_5\" prio=5 tid=28 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10176 -----\n","process_name":"sh.measure.sample","pid":"10176"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e2c20f7-b9ce-47d1-a852-beffdaa2be16","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:21.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25063,"total_pss":94875,"rss":185312,"native_total_heap":24828,"native_free_heap":1452,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"342a7151-80f7-464f-8027-2297e696ff0a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.14300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127606,"end_time":5127639,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ee25a66-92df-46e8-b84d-a2ba62097ce0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137254,"end_time":5137278,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"40a8609b-12d8-40ef-8fd7-af2fef9210fb","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.28900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183782,"total_pss":63383,"rss":158032,"native_total_heap":12376,"native_free_heap":1278,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"435b3cfe-e98c-4bf0-a9ea-a142d0f1f15e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:06.50600000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10135"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43d5852d-7780-442b-9206-7457f469287c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.01200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127443,"end_time":5127508,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44de666b-7798-4dcc-b677-ea6a041dba57","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.56700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5133063,"utime":63,"cutime":0,"cstime":0,"stime":24,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"470c8c33-1f3a-490e-97fd-146530bb84e8","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127569,"end_time":5127602,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4890105e-999e-4454-8b8f-a9130b324c06","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:10.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27392,"total_pss":93209,"rss":184640,"native_total_heap":23292,"native_free_heap":1119,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dee517a-ea88-4d59-81d6-0414e2987b91","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.60300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"530be7f8-e5d4-4b1d-ae42-7a6d306ba78a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137326,"end_time":5137360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5644d2a2-fbf4-43db-a51d-25ed1f222082","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.98000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":549.9536,"y":1324.8999,"touch_down_time":5130394,"touch_up_time":5130476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"569b08aa-01a6-4176-af9c-3222e904ac49","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:07.43800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_infinite_loop","width":398,"height":132,"x":577.96875,"y":1216.908,"touch_down_time":5116845,"touch_up_time":5116931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59372e03-674a-4142-afb2-50cd62e11078","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27304,"total_pss":93885,"rss":185240,"native_total_heap":23292,"native_free_heap":1148,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dc1b948-b948-473c-8c4b-d102f8942e46","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.93200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137387,"end_time":5137429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f69effc-782e-4d69-986f-e982d0f76b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.82500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5126724,"process_start_requested_uptime":5126623,"content_provider_attach_uptime":5127018,"on_next_draw_uptime":5127321,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e1236ed-387b-4869-90aa-d41a97bb4093","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5121758,"utime":458,"cutime":0,"cstime":0,"stime":23,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8177760e-7313-4b39-b33d-9c54c7a207a6","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"876bdecc-fc21-457d-8091-269d427eaa69","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.58600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":546.95435,"y":1460.94,"touch_down_time":5128001,"touch_up_time":5128078},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92587b02-8767-4459-a7ab-2f9e4f5ba95b","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c636dbb-3ffd-498c-99a5-bbfbad5e15c5","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":24300,"java_free_heap":0,"total_pss":99105,"rss":191340,"native_total_heap":26620,"native_free_heap":2879,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a312d7ad-f09f-429c-89c1-92bc9a54882a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.06100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127520,"end_time":5127558,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aaec9271-2fe5-4343-b34b-5233bd61ba0c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad241194-3e97-4e4e-b745-d0297e57b0e0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:25.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24923,"total_pss":95587,"rss":185920,"native_total_heap":24828,"native_free_heap":1436,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a7b52f-8519-4606-a0f6-12be3fca42e2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6062492-ab01-4dd2-a57c-274aacd25451","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.64700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8640f17-d75b-4b58-a429-ff1b1babf1b5","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.67600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116125,"end_time":5116172,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9545c0c-85e7-43c6-8ea8-1bee9e6b4b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.17900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127644,"end_time":5127675,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccca3be6-98e6-4160-824c-4be207a9d8b2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.57100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24975,"total_pss":95547,"rss":185920,"native_total_heap":24828,"native_free_heap":1452,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d37ae9dd-60ee-49b5-b8c9-7c867deefd57","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.72200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116178,"end_time":5116219,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3c6e777-8dcc-4da7-9b7a-824a73ebc51b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.50300000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5115343,"process_start_requested_uptime":5115194,"content_provider_attach_uptime":5115704,"on_next_draw_uptime":5115999,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5deeb88-2d33-41a3-b773-b6fa1b72006c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.82400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137295,"end_time":5137321,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d76ffce0-540b-4057-b968-a9550a43bcf2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.61500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dc040ff0-ca59-4153-9bf6-3120b4eae7c3","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116304,"end_time":5116323,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd414050-899c-454f-8fdb-97fd592da7d4","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:14.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27252,"total_pss":94169,"rss":187164,"native_total_heap":25596,"native_free_heap":3243,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddfa33c1-b36b-43eb-9c62-30049efee1cc","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.63700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e043ab2e-0eb5-45fa-934d-0d1fb5309e6e","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183734,"total_pss":63702,"rss":171692,"native_total_heap":21872,"native_free_heap":1299,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5275fff-d53d-4b64-9bc6-4dc8d57bada1","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.96700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137440,"end_time":5137463,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a8988b-67c8-479e-8b5b-fa12e29192cd","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:26.56900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5136066,"utime":65,"cutime":0,"cstime":0,"stime":26,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb58c908-f66e-4c2d-9876-0441bfa214df","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.76000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116223,"end_time":5116257,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1d2ce6a-3247-444f-9061-6323c0276861","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:09.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5118758,"utime":189,"cutime":0,"cstime":0,"stime":17,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbb2c897-3dfd-47de-a180-3c293ebdae5d","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25884,"total_pss":96896,"rss":187708,"native_total_heap":24060,"native_free_heap":1171,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"00926847-134e-4014-817c-27245d112ff6","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:15.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5124758,"utime":676,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"02e4674b-5af1-4da7-b8ac-fc8fb33d8435","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.56700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5130063,"utime":54,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0776a2f7-0897-4130-90d2-741c7118906b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.79700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116262,"end_time":5116294,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a25d864-c607-4d14-8e1f-44b91b1fe5fe","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.97900000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5128127,"end_time":5129475,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:34:20 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"148b6929-fa3e-4d9d-9380-c10d9c5cec2d","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:08.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27464,"total_pss":93134,"rss":184640,"native_total_heap":23292,"native_free_heap":1163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21c2f643-b8e3-4ef1-8048-080aab3bffd4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5127088,"utime":17,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"277c9543-b71a-4473-af48-31e21d572927","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a61a915-df6b-4557-bfbe-4dff623af5e8","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:17.93100000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10176_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=19 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000076e9c /system/lib64/libbinder.so (android::IPCThreadState::transact(int, unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+548) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 00000000000769e0 /system/lib64/libbinder.so (android::BpBinder::transact(unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+172) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000d5560 /system/lib64/libgui.so (android::BpSurfaceComposer::setTransactionState(android::FrameTimelineInfo const\u0026, android::Vector\u003candroid::ComposerState\u003e const\u0026, android::Vector\u003candroid::DisplayState\u003e const\u0026, unsigned int, android::sp\u003candroid::IBinder\u003e const\u0026, android::InputWindowCommands const\u0026, long, bool, android::client_cache_t const\u0026, bool, std::__1::vector\u003candroid::ListenerCallbacks, std::__1::allocator\u003candroid::ListenerCallbacks\u003e \u003e const\u0026, unsigned long)+864) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000e11cc /system/lib64/libgui.so (android::SurfaceComposerClient::Transaction::apply(bool, bool)+2000) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000c5268 /system/lib64/libgui.so (android::BLASTBufferQueue::acquireNextBufferLocked(std::__1::optional\u003candroid::SurfaceComposerClient::Transaction*\u003e)+10068) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #07 pc 00000000000f3304 /system/lib64/libgui.so (android::BLASTBufferQueue::onFrameAvailable(android::BufferItem const\u0026)+472) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #08 pc 00000000000a9ae0 /system/lib64/libgui.so (android::ConsumerBase::onFrameAvailable(android::BufferItem const\u0026)+172) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #09 pc 000000000008df88 /system/lib64/libgui.so (android::BufferQueue::ProxyConsumerListener::onFrameAvailable(android::BufferItem const\u0026)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #10 pc 00000000000e72f8 /system/lib64/libgui.so (android::BufferQueueProducer::queueBuffer(int, android::IGraphicBufferProducer::QueueBufferInput const\u0026, android::IGraphicBufferProducer::QueueBufferOutput*)+2200) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #11 pc 000000000012b9c0 /system/lib64/libgui.so (android::Surface::queueBuffer(ANativeWindowBuffer*, int)+1540) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #12 pc 0000000000127c10 /system/lib64/libgui.so (android::Surface::hook_queueBuffer(ANativeWindow*, ANativeWindowBuffer*, int)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #13 pc 000000000000acd4 /vendor/lib64/egl/libEGL_emulation.so (egl_window_surface_t::swapBuffers()+472) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #14 pc 000000000000f524 /vendor/lib64/egl/libEGL_emulation.so (eglSwapBuffers+448) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #15 pc 000000000001fb9c /system/lib64/libEGL.so (android::eglSwapBuffersWithDamageKHRImpl(void*, void*, int*, int)+524) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #16 pc 000000000001c4a8 /system/lib64/libEGL.so (eglSwapBuffersWithDamageKHR+72) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #17 pc 0000000000529984 /system/lib64/libhwui.so (android::uirenderer::skiapipeline::SkiaOpenGLPipeline::swapBuffers(android::uirenderer::renderthread::Frame const\u0026, bool, SkRect const\u0026, android::uirenderer::FrameInfo*, bool*)+244) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #18 pc 0000000000420988 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::draw()+1032) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #19 pc 000000000041ff78 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::prepareAndDraw(android::uirenderer::RenderNode*)+280) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #20 pc 000000000051be64 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::dispatchFrameCallbacks()+156) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #21 pc 000000000057c668 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+644) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #22 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #23 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #24 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=21 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=22 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=23 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"binder:10176_5\" prio=5 tid=28 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10176 -----\n","process_name":"sh.measure.sample","pid":"10176"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e2c20f7-b9ce-47d1-a852-beffdaa2be16","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:21.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25063,"total_pss":94875,"rss":185312,"native_total_heap":24828,"native_free_heap":1452,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"342a7151-80f7-464f-8027-2297e696ff0a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.14300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127606,"end_time":5127639,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ee25a66-92df-46e8-b84d-a2ba62097ce0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137254,"end_time":5137278,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"40a8609b-12d8-40ef-8fd7-af2fef9210fb","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.28900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183782,"total_pss":63383,"rss":158032,"native_total_heap":12376,"native_free_heap":1278,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"435b3cfe-e98c-4bf0-a9ea-a142d0f1f15e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:06.50600000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10135"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43d5852d-7780-442b-9206-7457f469287c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.01200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127443,"end_time":5127508,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44de666b-7798-4dcc-b677-ea6a041dba57","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.56700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5133063,"utime":63,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"470c8c33-1f3a-490e-97fd-146530bb84e8","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127569,"end_time":5127602,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4890105e-999e-4454-8b8f-a9130b324c06","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:10.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27392,"total_pss":93209,"rss":184640,"native_total_heap":23292,"native_free_heap":1119,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dee517a-ea88-4d59-81d6-0414e2987b91","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.60300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"530be7f8-e5d4-4b1d-ae42-7a6d306ba78a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137326,"end_time":5137360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5644d2a2-fbf4-43db-a51d-25ed1f222082","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.98000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":549.9536,"y":1324.8999,"touch_down_time":5130394,"touch_up_time":5130476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"569b08aa-01a6-4176-af9c-3222e904ac49","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:07.43800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_infinite_loop","width":398,"height":132,"x":577.96875,"y":1216.908,"touch_down_time":5116845,"touch_up_time":5116931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59372e03-674a-4142-afb2-50cd62e11078","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27304,"total_pss":93885,"rss":185240,"native_total_heap":23292,"native_free_heap":1148,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dc1b948-b948-473c-8c4b-d102f8942e46","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.93200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137387,"end_time":5137429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f69effc-782e-4d69-986f-e982d0f76b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.82500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5126724,"process_start_requested_uptime":5126623,"content_provider_attach_uptime":5127018,"on_next_draw_uptime":5127321,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e1236ed-387b-4869-90aa-d41a97bb4093","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5121758,"utime":458,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8177760e-7313-4b39-b33d-9c54c7a207a6","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"876bdecc-fc21-457d-8091-269d427eaa69","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.58600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":546.95435,"y":1460.94,"touch_down_time":5128001,"touch_up_time":5128078},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92587b02-8767-4459-a7ab-2f9e4f5ba95b","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c636dbb-3ffd-498c-99a5-bbfbad5e15c5","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":24300,"java_free_heap":0,"total_pss":99105,"rss":191340,"native_total_heap":26620,"native_free_heap":2879,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a312d7ad-f09f-429c-89c1-92bc9a54882a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.06100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127520,"end_time":5127558,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aaec9271-2fe5-4343-b34b-5233bd61ba0c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad241194-3e97-4e4e-b745-d0297e57b0e0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:25.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24923,"total_pss":95587,"rss":185920,"native_total_heap":24828,"native_free_heap":1436,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a7b52f-8519-4606-a0f6-12be3fca42e2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6062492-ab01-4dd2-a57c-274aacd25451","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.64700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8640f17-d75b-4b58-a429-ff1b1babf1b5","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.67600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116125,"end_time":5116172,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9545c0c-85e7-43c6-8ea8-1bee9e6b4b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.17900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127644,"end_time":5127675,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccca3be6-98e6-4160-824c-4be207a9d8b2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.57100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24975,"total_pss":95547,"rss":185920,"native_total_heap":24828,"native_free_heap":1452,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d37ae9dd-60ee-49b5-b8c9-7c867deefd57","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.72200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116178,"end_time":5116219,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3c6e777-8dcc-4da7-9b7a-824a73ebc51b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.50300000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5115343,"process_start_requested_uptime":5115194,"content_provider_attach_uptime":5115704,"on_next_draw_uptime":5115999,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5deeb88-2d33-41a3-b773-b6fa1b72006c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.82400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137295,"end_time":5137321,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d76ffce0-540b-4057-b968-a9550a43bcf2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.61500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dc040ff0-ca59-4153-9bf6-3120b4eae7c3","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116304,"end_time":5116323,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd414050-899c-454f-8fdb-97fd592da7d4","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:14.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27252,"total_pss":94169,"rss":187164,"native_total_heap":25596,"native_free_heap":3243,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddfa33c1-b36b-43eb-9c62-30049efee1cc","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.63700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e043ab2e-0eb5-45fa-934d-0d1fb5309e6e","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183734,"total_pss":63702,"rss":171692,"native_total_heap":21872,"native_free_heap":1299,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5275fff-d53d-4b64-9bc6-4dc8d57bada1","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.96700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137440,"end_time":5137463,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a8988b-67c8-479e-8b5b-fa12e29192cd","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:26.56900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5136066,"utime":65,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb58c908-f66e-4c2d-9876-0441bfa214df","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.76000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116223,"end_time":5116257,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1d2ce6a-3247-444f-9061-6323c0276861","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:09.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5118758,"utime":189,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbb2c897-3dfd-47de-a180-3c293ebdae5d","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25884,"total_pss":96896,"rss":187708,"native_total_heap":24060,"native_free_heap":1171,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json b/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json index 8e705b5cd..3e164d522 100644 --- a/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json +++ b/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json @@ -1 +1 @@ -[{"id":"0738870a-d804-4a9d-a394-9473e684a5f0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":345,"total_pss":27074,"rss":78884,"native_total_heap":23548,"native_free_heap":1832,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e93a633-b0a4-4b3f-87a9-5a29aed90f43","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":326672,"utime":127,"cutime":0,"cstime":0,"stime":153,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1003ef46-4ce8-434c-86ea-7b2d03af77af","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":344676,"utime":139,"cutime":0,"cstime":0,"stime":161,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"154a5e7d-8c83-4c0f-830d-897581b21691","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1329,"total_pss":26599,"rss":79068,"native_total_heap":23548,"native_free_heap":2004,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a19bbcf-4119-4656-9206-db92615cbf24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":350674,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a3290e1-2710-48ab-a2fe-9bd54c767834","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":332672,"utime":130,"cutime":0,"cstime":0,"stime":155,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23b88315-f146-48cc-9160-40a7e000c498","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2101,"total_pss":26998,"rss":82480,"native_total_heap":23548,"native_free_heap":2087,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"248c5f6a-4442-46b2-b18a-c381439c63e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":634,"total_pss":25984,"rss":77812,"native_total_heap":23292,"native_free_heap":1860,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34c11d07-4118-467c-844a-514369edc3f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:44.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":353673,"utime":144,"cutime":0,"cstime":0,"stime":166,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a0c56bf-ff35-4a87-8aee-2a1f3c0cdd0e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":133,"total_pss":26856,"rss":78436,"native_total_heap":23548,"native_free_heap":1747,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a860fde-5658-4c1b-b8ed-15c357cbe54c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314935,"end_time":314949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d45491c-c32c-4bc9-9364-0df91390703f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":320673,"utime":122,"cutime":0,"cstime":0,"stime":146,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426a2a9c-686e-4a48-b040-39dae2497ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:21.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2189,"total_pss":27632,"rss":83388,"native_total_heap":23548,"native_free_heap":2124,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"48f60b70-6af2-4dbc-8f57-5258471afe22","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1634,"total_pss":26402,"rss":79172,"native_total_heap":23292,"native_free_heap":2032,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d84469e-b3fc-48e2-b8ae-8b5749c3bcdb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1530,"total_pss":26452,"rss":79412,"native_total_heap":23292,"native_free_heap":1995,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f69fd78-1366-47db-89d2-0e06731e3026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":314675,"utime":114,"cutime":0,"cstime":0,"stime":144,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa18260-bbaf-49a9-a39d-78a14ed2f1d7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1318,"total_pss":25356,"rss":77060,"native_total_heap":23292,"native_free_heap":1911,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52592692-6932-4116-a76b-39f096257750","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324906,"end_time":324920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6068d775-a8e9-4b16-8635-6bbd30039b32","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":335674,"utime":132,"cutime":0,"cstime":0,"stime":158,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"651398be-94c4-48f2-b908-d0afb8fa2410","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.89400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344938,"end_time":344946,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"779bfc04-d7b7-4b59-bf26-eb9905b710b2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:02.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":311676,"utime":113,"cutime":0,"cstime":0,"stime":143,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4174bf-a07e-4715-a669-4b4c60dec984","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:38.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":347675,"utime":142,"cutime":0,"cstime":0,"stime":164,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7be23409-6d9e-4af4-b15e-e7ad019d8713","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2261,"total_pss":27582,"rss":83236,"native_total_heap":23548,"native_free_heap":2155,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d6ad8f1-5e66-4b0a-9161-e7d331704d35","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1422,"total_pss":25345,"rss":77060,"native_total_heap":23292,"native_free_heap":1943,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e167da4-a1d3-44c7-8710-0c652bd31875","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334938,"end_time":334943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8153d6bf-4c6b-46a7-b8c3-4e9c77426e5e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344910,"end_time":344927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"853d6b66-49a8-4408-ab78-a3a77765cb0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1225,"total_pss":26290,"rss":77736,"native_total_heap":23548,"native_free_heap":1967,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bff4c2d-c936-4d96-adc8-4571bf375cf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":169,"total_pss":26816,"rss":78196,"native_total_heap":23548,"native_free_heap":1763,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c19db80-cb67-4c50-a349-fb68d3c7406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:08.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":317673,"utime":119,"cutime":0,"cstime":0,"stime":146,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"908381eb-856c-4bc0-9a85-eb2aa75db312","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":241,"total_pss":27134,"rss":78884,"native_total_heap":23548,"native_free_heap":1800,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"967e5720-c7ef-4a35-8c66-a245da051ef6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1494,"total_pss":25334,"rss":77020,"native_total_heap":23292,"native_free_heap":1979,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b7d60a3-2665-45ba-a90e-4cd6e7427b53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1013,"total_pss":26213,"rss":77736,"native_total_heap":23548,"native_free_heap":1883,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0321717-a74e-4acd-b1fa-f820a02b79f4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":323675,"utime":124,"cutime":0,"cstime":0,"stime":149,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7d3f963-e0c6-47ff-93c5-a629f428740d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3145,"total_pss":23040,"rss":74980,"native_total_heap":23292,"native_free_heap":2192,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac1cd526-8718-463c-a06f-44c117a6cc0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":308674,"utime":111,"cutime":0,"cstime":0,"stime":140,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b00ea233-cbd2-47c5-928c-239ed84b7798","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304936,"end_time":304949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7065567-ebba-4507-aeba-762b9606bec6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334913,"end_time":334930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc2832f8-fa69-4c75-be5f-b59c349ae658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324927,"end_time":324931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c416e3ba-42bb-4214-9486-c9a1b3847830","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3233,"total_pss":22781,"rss":74304,"native_total_heap":23292,"native_free_heap":2233,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8b10c3a-1d2b-4f9d-a622-71c8a3c0cbeb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2313,"total_pss":27710,"rss":83236,"native_total_heap":23548,"native_free_heap":2171,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc0e49b4-56b4-4638-9f89-abf33132b86e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2049,"total_pss":22780,"rss":74068,"native_total_heap":23548,"native_free_heap":2071,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfdcea81-9e29-4006-b101-1ced54196380","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":546,"total_pss":25981,"rss":77852,"native_total_heap":23292,"native_free_heap":1828,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d58046b7-d413-4f3a-b41a-767f95670f7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314909,"end_time":314926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaee431c-2ac3-4428-a93a-992fd949a673","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3285,"total_pss":23625,"rss":75572,"native_total_heap":23292,"native_free_heap":2248,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec8ee5fb-592f-4a4d-ad08-9cf918f8001b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:56.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":305675,"utime":110,"cutime":0,"cstime":0,"stime":138,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f224b14a-3ff9-4645-8292-a170f8c30b10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:32.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":341674,"utime":136,"cutime":0,"cstime":0,"stime":161,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2fc1d2c-4c16-4d45-8f7d-832bc5cded25","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:31.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1189,"total_pss":26316,"rss":77736,"native_total_heap":23548,"native_free_heap":1952,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f51d3184-a5f0-4353-8a6c-f26725ba18bb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":329676,"utime":129,"cutime":0,"cstime":0,"stime":155,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f81454f0-0263-4835-80b2-9cb300fb8026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:33.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1117,"total_pss":26258,"rss":77736,"native_total_heap":23548,"native_free_heap":1920,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8f91ac0-349a-48b6-98a2-8bf88baacffe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":338673,"utime":134,"cutime":0,"cstime":0,"stime":158,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0738870a-d804-4a9d-a394-9473e684a5f0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":345,"total_pss":27074,"rss":78884,"native_total_heap":23548,"native_free_heap":1832,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e93a633-b0a4-4b3f-87a9-5a29aed90f43","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":326672,"utime":127,"cutime":0,"cstime":0,"stime":153,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1003ef46-4ce8-434c-86ea-7b2d03af77af","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":344676,"utime":139,"cutime":0,"cstime":0,"stime":161,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"154a5e7d-8c83-4c0f-830d-897581b21691","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1329,"total_pss":26599,"rss":79068,"native_total_heap":23548,"native_free_heap":2004,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a19bbcf-4119-4656-9206-db92615cbf24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":350674,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a3290e1-2710-48ab-a2fe-9bd54c767834","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":332672,"utime":130,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23b88315-f146-48cc-9160-40a7e000c498","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2101,"total_pss":26998,"rss":82480,"native_total_heap":23548,"native_free_heap":2087,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"248c5f6a-4442-46b2-b18a-c381439c63e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":634,"total_pss":25984,"rss":77812,"native_total_heap":23292,"native_free_heap":1860,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34c11d07-4118-467c-844a-514369edc3f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:44.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":353673,"utime":144,"cutime":0,"cstime":0,"stime":166,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a0c56bf-ff35-4a87-8aee-2a1f3c0cdd0e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":133,"total_pss":26856,"rss":78436,"native_total_heap":23548,"native_free_heap":1747,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a860fde-5658-4c1b-b8ed-15c357cbe54c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314935,"end_time":314949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d45491c-c32c-4bc9-9364-0df91390703f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":320673,"utime":122,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426a2a9c-686e-4a48-b040-39dae2497ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:21.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2189,"total_pss":27632,"rss":83388,"native_total_heap":23548,"native_free_heap":2124,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"48f60b70-6af2-4dbc-8f57-5258471afe22","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1634,"total_pss":26402,"rss":79172,"native_total_heap":23292,"native_free_heap":2032,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d84469e-b3fc-48e2-b8ae-8b5749c3bcdb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1530,"total_pss":26452,"rss":79412,"native_total_heap":23292,"native_free_heap":1995,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f69fd78-1366-47db-89d2-0e06731e3026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":314675,"utime":114,"cutime":0,"cstime":0,"stime":144,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa18260-bbaf-49a9-a39d-78a14ed2f1d7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1318,"total_pss":25356,"rss":77060,"native_total_heap":23292,"native_free_heap":1911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52592692-6932-4116-a76b-39f096257750","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324906,"end_time":324920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6068d775-a8e9-4b16-8635-6bbd30039b32","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":335674,"utime":132,"cutime":0,"cstime":0,"stime":158,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"651398be-94c4-48f2-b908-d0afb8fa2410","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.89400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344938,"end_time":344946,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"779bfc04-d7b7-4b59-bf26-eb9905b710b2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:02.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":311676,"utime":113,"cutime":0,"cstime":0,"stime":143,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4174bf-a07e-4715-a669-4b4c60dec984","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:38.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":347675,"utime":142,"cutime":0,"cstime":0,"stime":164,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7be23409-6d9e-4af4-b15e-e7ad019d8713","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2261,"total_pss":27582,"rss":83236,"native_total_heap":23548,"native_free_heap":2155,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d6ad8f1-5e66-4b0a-9161-e7d331704d35","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1422,"total_pss":25345,"rss":77060,"native_total_heap":23292,"native_free_heap":1943,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e167da4-a1d3-44c7-8710-0c652bd31875","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334938,"end_time":334943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8153d6bf-4c6b-46a7-b8c3-4e9c77426e5e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344910,"end_time":344927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"853d6b66-49a8-4408-ab78-a3a77765cb0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1225,"total_pss":26290,"rss":77736,"native_total_heap":23548,"native_free_heap":1967,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bff4c2d-c936-4d96-adc8-4571bf375cf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":169,"total_pss":26816,"rss":78196,"native_total_heap":23548,"native_free_heap":1763,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c19db80-cb67-4c50-a349-fb68d3c7406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:08.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":317673,"utime":119,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"908381eb-856c-4bc0-9a85-eb2aa75db312","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":241,"total_pss":27134,"rss":78884,"native_total_heap":23548,"native_free_heap":1800,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"967e5720-c7ef-4a35-8c66-a245da051ef6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1494,"total_pss":25334,"rss":77020,"native_total_heap":23292,"native_free_heap":1979,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b7d60a3-2665-45ba-a90e-4cd6e7427b53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1013,"total_pss":26213,"rss":77736,"native_total_heap":23548,"native_free_heap":1883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0321717-a74e-4acd-b1fa-f820a02b79f4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":323675,"utime":124,"cutime":0,"cstime":0,"stime":149,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7d3f963-e0c6-47ff-93c5-a629f428740d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3145,"total_pss":23040,"rss":74980,"native_total_heap":23292,"native_free_heap":2192,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac1cd526-8718-463c-a06f-44c117a6cc0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":308674,"utime":111,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b00ea233-cbd2-47c5-928c-239ed84b7798","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304936,"end_time":304949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7065567-ebba-4507-aeba-762b9606bec6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334913,"end_time":334930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc2832f8-fa69-4c75-be5f-b59c349ae658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324927,"end_time":324931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c416e3ba-42bb-4214-9486-c9a1b3847830","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3233,"total_pss":22781,"rss":74304,"native_total_heap":23292,"native_free_heap":2233,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8b10c3a-1d2b-4f9d-a622-71c8a3c0cbeb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2313,"total_pss":27710,"rss":83236,"native_total_heap":23548,"native_free_heap":2171,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc0e49b4-56b4-4638-9f89-abf33132b86e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2049,"total_pss":22780,"rss":74068,"native_total_heap":23548,"native_free_heap":2071,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfdcea81-9e29-4006-b101-1ced54196380","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":546,"total_pss":25981,"rss":77852,"native_total_heap":23292,"native_free_heap":1828,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d58046b7-d413-4f3a-b41a-767f95670f7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314909,"end_time":314926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaee431c-2ac3-4428-a93a-992fd949a673","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3285,"total_pss":23625,"rss":75572,"native_total_heap":23292,"native_free_heap":2248,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec8ee5fb-592f-4a4d-ad08-9cf918f8001b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:56.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":305675,"utime":110,"cutime":0,"cstime":0,"stime":138,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f224b14a-3ff9-4645-8292-a170f8c30b10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:32.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":341674,"utime":136,"cutime":0,"cstime":0,"stime":161,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2fc1d2c-4c16-4d45-8f7d-832bc5cded25","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:31.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1189,"total_pss":26316,"rss":77736,"native_total_heap":23548,"native_free_heap":1952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f51d3184-a5f0-4353-8a6c-f26725ba18bb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":329676,"utime":129,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f81454f0-0263-4835-80b2-9cb300fb8026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:33.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1117,"total_pss":26258,"rss":77736,"native_total_heap":23548,"native_free_heap":1920,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8f91ac0-349a-48b6-98a2-8bf88baacffe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":338673,"utime":134,"cutime":0,"cstime":0,"stime":158,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json b/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json index 7106ff73a..4515f85a3 100644 --- a/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json +++ b/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json @@ -1 +1 @@ -[{"id":"0055ed69-4797-4715-ba2c-725b80191596","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.19400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":648246,"utime":126,"cutime":0,"cstime":0,"stime":142,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"016efe71-76ff-43fb-be6c-8b9bf8d3fd98","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":666227,"utime":136,"cutime":0,"cstime":0,"stime":157,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0244f110-d0fe-4729-b613-90f49c221aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2145,"total_pss":33936,"rss":103864,"native_total_heap":25528,"native_free_heap":3098,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0d4d4436-791b-425a-bfca-4616a42499fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662418,"end_time":662426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0f5de9f9-fe56-415d-9b4e-a72ecfb99722","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1249,"total_pss":34947,"rss":105060,"native_total_heap":25528,"native_free_heap":2944,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bf5f0d-a78c-4dd1-8fb7-218ff8af67ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642421,"end_time":642429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19136c8b-2994-46e5-9893-5d43d75fdcb3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":285,"total_pss":35763,"rss":105884,"native_total_heap":25528,"native_free_heap":2788,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d4cde4-74bc-437b-bc80-8d96268365d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":636228,"utime":118,"cutime":0,"cstime":0,"stime":133,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37fc675a-52c9-4943-b53d-1f3e5eb7f763","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":678227,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ad8c12-a887-4185-a901-0334cd68d355","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.18200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3005,"total_pss":33231,"rss":103248,"native_total_heap":25528,"native_free_heap":3213,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39d3c258-1b58-4db7-93da-bb3a8c114c71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":213,"total_pss":35883,"rss":105884,"native_total_heap":25528,"native_free_heap":2756,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a442b6c-b40a-4e93-8491-ec9c5c8262a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2021,"total_pss":34235,"rss":104152,"native_total_heap":25528,"native_free_heap":3045,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b8d4784-fa05-433d-bab3-4377dede6051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":651227,"utime":129,"cutime":0,"cstime":0,"stime":146,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eb9fa46-50d1-4785-b0fc-3e07bd7f1673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2093,"total_pss":33964,"rss":103864,"native_total_heap":25528,"native_free_heap":3077,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"53092ead-6e83-4d04-9cae-ccfc958da257","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":654227,"utime":131,"cutime":0,"cstime":0,"stime":150,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f29131-0f92-4203-9622-0c84b1d8f5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":681228,"utime":143,"cutime":0,"cstime":0,"stime":167,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d3a15dd-4b81-403f-8931-14cb70f0b3f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":669227,"utime":139,"cutime":0,"cstime":0,"stime":159,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e80efec-5c6d-4bbd-bf6a-2d62ffb28796","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2233,"total_pss":33884,"rss":103864,"native_total_heap":25528,"native_free_heap":3130,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6305ba47-5ce7-40b0-8d83-d83bf2b3e454","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":663228,"utime":135,"cutime":0,"cstime":0,"stime":155,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e4a9c9b-3b34-4caa-a651-60e7499b02f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672420,"end_time":672428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e9df4b-0678-4ceb-aa58-70081c000346","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3217,"total_pss":33184,"rss":102980,"native_total_heap":25528,"native_free_heap":3301,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73e5dd9c-c8d0-49ae-a6cb-b2f1b3b29673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3356,"total_pss":33054,"rss":103168,"native_total_heap":25528,"native_free_heap":3329,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df43128-72d3-423e-8017-be114ca35a91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3077,"total_pss":33183,"rss":102980,"native_total_heap":25528,"native_free_heap":3249,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f60e0d4-85a0-4017-a2c3-b657649112aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.39600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632421,"end_time":632448,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8320a3bf-a1e2-4f91-94d0-e4b0e70b71f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1285,"total_pss":34915,"rss":105060,"native_total_heap":25528,"native_free_heap":2960,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96fe17f6-0e93-461d-bf89-ff271de52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3289,"total_pss":33137,"rss":102980,"native_total_heap":25528,"native_free_heap":3333,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b22778d-eb60-4313-a5a4-44e074d88af8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4192,"total_pss":32318,"rss":102316,"native_total_heap":25528,"native_free_heap":3413,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bc8d05e-a5f5-4c88-845b-8981d5cce78e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4104,"total_pss":32370,"rss":102528,"native_total_heap":25528,"native_free_heap":3381,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c176674-cf1a-47fe-b46c-20afc91e72c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":675228,"utime":142,"cutime":0,"cstime":0,"stime":163,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e00a369-be5e-453e-bc90-6424322dc935","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":633227,"utime":116,"cutime":0,"cstime":0,"stime":132,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac0bcdd4-c6f1-49e5-8042-0ce7dc6f487e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":657227,"utime":132,"cutime":0,"cstime":0,"stime":151,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2ba4885-401c-4775-9d07-99da138542a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642398,"end_time":642415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b672a5c4-e412-4708-88ed-fee6ab21bbda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":642230,"utime":120,"cutime":0,"cstime":0,"stime":137,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8e0cf54-7566-48c0-8147-e8a726ad787b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2305,"total_pss":33895,"rss":103864,"native_total_heap":25528,"native_free_heap":3166,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b959a645-9da1-4888-8d3f-c0955bbcec4b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3160,"total_pss":33180,"rss":103416,"native_total_heap":25528,"native_free_heap":3245,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd5ab1d-97e6-4fe2-9611-ba67746257bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672399,"end_time":672415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6775dfb-c17c-42e4-8ae8-a7ee70c69e05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1073,"total_pss":35047,"rss":105272,"native_total_heap":25528,"native_free_heap":2876,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d539cf86-d76d-4c26-872e-8e2db7ee6ebc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3180,"total_pss":33158,"rss":103416,"native_total_heap":25528,"native_free_heap":3261,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5677669-d5ff-423c-8695-f978dff1cc1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":161,"total_pss":35907,"rss":105828,"native_total_heap":25528,"native_free_heap":2740,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da0cd16b-e8a7-4fd4-a389-25609e712ff0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652418,"end_time":652430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddd5b881-8d8f-49eb-9250-be385b7bf7b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":645228,"utime":125,"cutime":0,"cstime":0,"stime":140,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1780a4f-2266-44fe-813b-8e3958382126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652397,"end_time":652410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e42e419d-ef44-427a-9c0f-bfc672e09d5f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":672227,"utime":140,"cutime":0,"cstime":0,"stime":160,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e468dfa3-a2d8-4cf3-8f24-bd5272fa0797","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3284,"total_pss":33106,"rss":103168,"native_total_heap":25528,"native_free_heap":3293,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7c2fc45-93f4-4021-952f-7a2578effde7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662399,"end_time":662411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e89b2f98-1b39-489b-83d6-9de7f6eeac52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":660228,"utime":133,"cutime":0,"cstime":0,"stime":152,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecf6a9e8-f5eb-4956-81c3-046584f2f833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3181,"total_pss":33127,"rss":102980,"native_total_heap":25528,"native_free_heap":3281,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bc34c1-73fb-45ef-a4f4-fbf1fa6c1b2e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1161,"total_pss":34995,"rss":105272,"native_total_heap":25528,"native_free_heap":2907,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f56a9997-f592-4ddf-a8c2-cefe2415eeba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1037,"total_pss":35075,"rss":105272,"native_total_heap":25528,"native_free_heap":2855,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eff299-8dac-4524-94e6-093f4107a460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":639228,"utime":119,"cutime":0,"cstime":0,"stime":136,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0055ed69-4797-4715-ba2c-725b80191596","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.19400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":648246,"utime":126,"cutime":0,"cstime":0,"stime":142,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"016efe71-76ff-43fb-be6c-8b9bf8d3fd98","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":666227,"utime":136,"cutime":0,"cstime":0,"stime":157,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0244f110-d0fe-4729-b613-90f49c221aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2145,"total_pss":33936,"rss":103864,"native_total_heap":25528,"native_free_heap":3098,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0d4d4436-791b-425a-bfca-4616a42499fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662418,"end_time":662426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0f5de9f9-fe56-415d-9b4e-a72ecfb99722","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1249,"total_pss":34947,"rss":105060,"native_total_heap":25528,"native_free_heap":2944,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bf5f0d-a78c-4dd1-8fb7-218ff8af67ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642421,"end_time":642429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19136c8b-2994-46e5-9893-5d43d75fdcb3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":285,"total_pss":35763,"rss":105884,"native_total_heap":25528,"native_free_heap":2788,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d4cde4-74bc-437b-bc80-8d96268365d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":636228,"utime":118,"cutime":0,"cstime":0,"stime":133,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37fc675a-52c9-4943-b53d-1f3e5eb7f763","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":678227,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ad8c12-a887-4185-a901-0334cd68d355","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.18200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3005,"total_pss":33231,"rss":103248,"native_total_heap":25528,"native_free_heap":3213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39d3c258-1b58-4db7-93da-bb3a8c114c71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":213,"total_pss":35883,"rss":105884,"native_total_heap":25528,"native_free_heap":2756,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a442b6c-b40a-4e93-8491-ec9c5c8262a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2021,"total_pss":34235,"rss":104152,"native_total_heap":25528,"native_free_heap":3045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b8d4784-fa05-433d-bab3-4377dede6051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":651227,"utime":129,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eb9fa46-50d1-4785-b0fc-3e07bd7f1673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2093,"total_pss":33964,"rss":103864,"native_total_heap":25528,"native_free_heap":3077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"53092ead-6e83-4d04-9cae-ccfc958da257","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":654227,"utime":131,"cutime":0,"cstime":0,"stime":150,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f29131-0f92-4203-9622-0c84b1d8f5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":681228,"utime":143,"cutime":0,"cstime":0,"stime":167,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d3a15dd-4b81-403f-8931-14cb70f0b3f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":669227,"utime":139,"cutime":0,"cstime":0,"stime":159,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e80efec-5c6d-4bbd-bf6a-2d62ffb28796","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2233,"total_pss":33884,"rss":103864,"native_total_heap":25528,"native_free_heap":3130,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6305ba47-5ce7-40b0-8d83-d83bf2b3e454","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":663228,"utime":135,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e4a9c9b-3b34-4caa-a651-60e7499b02f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672420,"end_time":672428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e9df4b-0678-4ceb-aa58-70081c000346","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3217,"total_pss":33184,"rss":102980,"native_total_heap":25528,"native_free_heap":3301,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73e5dd9c-c8d0-49ae-a6cb-b2f1b3b29673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3356,"total_pss":33054,"rss":103168,"native_total_heap":25528,"native_free_heap":3329,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df43128-72d3-423e-8017-be114ca35a91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3077,"total_pss":33183,"rss":102980,"native_total_heap":25528,"native_free_heap":3249,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f60e0d4-85a0-4017-a2c3-b657649112aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.39600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632421,"end_time":632448,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8320a3bf-a1e2-4f91-94d0-e4b0e70b71f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1285,"total_pss":34915,"rss":105060,"native_total_heap":25528,"native_free_heap":2960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96fe17f6-0e93-461d-bf89-ff271de52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3289,"total_pss":33137,"rss":102980,"native_total_heap":25528,"native_free_heap":3333,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b22778d-eb60-4313-a5a4-44e074d88af8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4192,"total_pss":32318,"rss":102316,"native_total_heap":25528,"native_free_heap":3413,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bc8d05e-a5f5-4c88-845b-8981d5cce78e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4104,"total_pss":32370,"rss":102528,"native_total_heap":25528,"native_free_heap":3381,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c176674-cf1a-47fe-b46c-20afc91e72c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":675228,"utime":142,"cutime":0,"cstime":0,"stime":163,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e00a369-be5e-453e-bc90-6424322dc935","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":633227,"utime":116,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac0bcdd4-c6f1-49e5-8042-0ce7dc6f487e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":657227,"utime":132,"cutime":0,"cstime":0,"stime":151,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2ba4885-401c-4775-9d07-99da138542a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642398,"end_time":642415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b672a5c4-e412-4708-88ed-fee6ab21bbda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":642230,"utime":120,"cutime":0,"cstime":0,"stime":137,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8e0cf54-7566-48c0-8147-e8a726ad787b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2305,"total_pss":33895,"rss":103864,"native_total_heap":25528,"native_free_heap":3166,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b959a645-9da1-4888-8d3f-c0955bbcec4b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3160,"total_pss":33180,"rss":103416,"native_total_heap":25528,"native_free_heap":3245,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd5ab1d-97e6-4fe2-9611-ba67746257bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672399,"end_time":672415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6775dfb-c17c-42e4-8ae8-a7ee70c69e05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1073,"total_pss":35047,"rss":105272,"native_total_heap":25528,"native_free_heap":2876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d539cf86-d76d-4c26-872e-8e2db7ee6ebc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3180,"total_pss":33158,"rss":103416,"native_total_heap":25528,"native_free_heap":3261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5677669-d5ff-423c-8695-f978dff1cc1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":161,"total_pss":35907,"rss":105828,"native_total_heap":25528,"native_free_heap":2740,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da0cd16b-e8a7-4fd4-a389-25609e712ff0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652418,"end_time":652430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddd5b881-8d8f-49eb-9250-be385b7bf7b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":645228,"utime":125,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1780a4f-2266-44fe-813b-8e3958382126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652397,"end_time":652410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e42e419d-ef44-427a-9c0f-bfc672e09d5f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":672227,"utime":140,"cutime":0,"cstime":0,"stime":160,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e468dfa3-a2d8-4cf3-8f24-bd5272fa0797","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3284,"total_pss":33106,"rss":103168,"native_total_heap":25528,"native_free_heap":3293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7c2fc45-93f4-4021-952f-7a2578effde7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662399,"end_time":662411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e89b2f98-1b39-489b-83d6-9de7f6eeac52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":660228,"utime":133,"cutime":0,"cstime":0,"stime":152,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecf6a9e8-f5eb-4956-81c3-046584f2f833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3181,"total_pss":33127,"rss":102980,"native_total_heap":25528,"native_free_heap":3281,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bc34c1-73fb-45ef-a4f4-fbf1fa6c1b2e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1161,"total_pss":34995,"rss":105272,"native_total_heap":25528,"native_free_heap":2907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f56a9997-f592-4ddf-a8c2-cefe2415eeba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1037,"total_pss":35075,"rss":105272,"native_total_heap":25528,"native_free_heap":2855,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eff299-8dac-4524-94e6-093f4107a460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":639228,"utime":119,"cutime":0,"cstime":0,"stime":136,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json b/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json index cd8d40708..9ef244b6a 100644 --- a/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json +++ b/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json @@ -1 +1 @@ -[{"id":"03bf6ce3-ca47-49d8-92c6-5758a924321d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1335,"total_pss":34962,"rss":106936,"native_total_heap":25528,"native_free_heap":2928,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11e9e739-4658-4773-8f26-4d28252875db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762397,"end_time":762412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"25e81f46-6ce4-4999-a41a-533e636ae065","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742396,"end_time":742405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c382394-8934-4922-9137-f11a28a51809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2267,"total_pss":34146,"rss":106072,"native_total_heap":25528,"native_free_heap":3097,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"36f7475a-1f2f-4e5e-b5bd-c977fcb0eaed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":765228,"utime":202,"cutime":0,"cstime":0,"stime":227,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ea547b-868f-4555-af8c-17b6aac3220e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2355,"total_pss":34094,"rss":106072,"native_total_heap":25528,"native_free_heap":3134,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3af029-9407-4cc3-81da-d9048dd6b692","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":777228,"utime":210,"cutime":0,"cstime":0,"stime":233,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e0602e9-4be9-41cf-ae75-ce658de3e1a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1213,"total_pss":35146,"rss":107108,"native_total_heap":25528,"native_free_heap":2937,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f58bdd4-2f4e-4ef6-aa38-c76c74b840bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742410,"end_time":742419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"430ac282-1f6d-4043-bd08-d361b18cf9cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772412,"end_time":772418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"453091e9-abdb-43ee-b937-e4b0186f1340","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2179,"total_pss":34202,"rss":106072,"native_total_heap":25528,"native_free_heap":3066,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45766c0d-f27f-409a-aaed-9af873f1f258","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":771228,"utime":206,"cutime":0,"cstime":0,"stime":229,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"49d8849c-ea34-4543-bb29-8dbddd3cecce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":735228,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d3a9b20-58d5-4f9f-95b5-0d40568229cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":732228,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50e9b25a-a512-4a17-9d84-3e39ffa123ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1283,"total_pss":34965,"rss":106936,"native_total_heap":25528,"native_free_heap":2912,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52b8cc9d-9f54-4410-a429-b471946fe40b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732413,"end_time":732421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"570102c6-2f7d-4b25-86fd-8bdadc5aca05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3251,"total_pss":33306,"rss":105236,"native_total_heap":25528,"native_free_heap":3269,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ed0091c-79a9-4ca0-97ff-fa8ac51f8651","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":738227,"utime":186,"cutime":0,"cstime":0,"stime":209,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f71d9a4-63e7-487c-93bb-19344f023795","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762416,"end_time":762427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ae082f4-ea55-44df-bad2-623b79338432","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1001,"total_pss":35274,"rss":107108,"native_total_heap":25528,"native_free_heap":2853,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b220d36-3d96-4703-8bd6-032ef3474bcc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3127,"total_pss":33382,"rss":105236,"native_total_heap":25528,"native_free_heap":3217,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d01e49b-d124-4d62-aa1a-6b638ce0b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":753228,"utime":196,"cutime":0,"cstime":0,"stime":219,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"706e1d4d-06b2-46fb-babb-9b8b828a75aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4247,"total_pss":32482,"rss":104624,"native_total_heap":25528,"native_free_heap":3421,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"708d0374-029a-467a-85e4-c52c70c35db8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3039,"total_pss":33434,"rss":105236,"native_total_heap":25528,"native_free_heap":3181,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e468f2-b869-45b3-8c4b-f3390b8005a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":756228,"utime":197,"cutime":0,"cstime":0,"stime":221,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7157a4d5-db82-4e59-ac50-0e058dbfab41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:18.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":747232,"utime":193,"cutime":0,"cstime":0,"stime":214,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7719f05f-3fb1-469e-9f0d-52ca4f90d051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":744231,"utime":191,"cutime":0,"cstime":0,"stime":211,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80bb7e60-c385-46af-804e-a3af31aade78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1985,"total_pss":34446,"rss":106288,"native_total_heap":25528,"native_free_heap":3020,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c744b64-ec76-4f36-a7b6-6cef0414cb05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3339,"total_pss":33254,"rss":105236,"native_total_heap":25528,"native_free_heap":3301,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90b67bff-bff5-426b-9f9f-0713ac8c3677","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752398,"end_time":752411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93035519-c8cd-45cc-be33-3682c64288a7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":762227,"utime":200,"cutime":0,"cstime":0,"stime":224,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"932231b1-0a46-4629-9b8e-adfc6a33ac92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732396,"end_time":732404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"973b45aa-dc91-4d72-9167-831a6ce250b0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":768227,"utime":203,"cutime":0,"cstime":0,"stime":228,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99732c60-eeef-4335-a3d1-7f90d71668c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2057,"total_pss":34347,"rss":106092,"native_total_heap":25528,"native_free_heap":3057,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ef7f996-993a-4068-8d01-e72c58517efa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772400,"end_time":772408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f528111-83f9-462e-94d5-daac1df292cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":759228,"utime":199,"cutime":0,"cstime":0,"stime":223,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b31a3e76-58e5-4140-b90c-4141b2d75742","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3199,"total_pss":33334,"rss":105236,"native_total_heap":25528,"native_free_heap":3249,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdec286c-928b-4651-b0ef-38fe6eb7b008","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1073,"total_pss":35222,"rss":107108,"native_total_heap":25528,"native_free_heap":2885,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be5d69f5-2336-4745-8694-a82063c2144e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":233,"total_pss":35970,"rss":107716,"native_total_heap":25528,"native_free_heap":2767,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c28bc4ac-9fa6-453f-8e51-8cc7da693f80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":750227,"utime":194,"cutime":0,"cstime":0,"stime":217,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7ed037d-2714-4183-9b66-9e330718663a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4123,"total_pss":32566,"rss":104624,"native_total_heap":25528,"native_free_heap":3368,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9094c5c-ddc2-4e1e-9410-f30b0d5cfbfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":213,"total_pss":35978,"rss":107972,"native_total_heap":25528,"native_free_heap":2747,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd4cde7f-8019-4c73-9f5f-10a551ce9f67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":741227,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2109f5e-3fc3-40fb-a331-7bad798645e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1109,"total_pss":35198,"rss":107108,"native_total_heap":25528,"native_free_heap":2901,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddadf882-03b7-41e9-8653-1a1fa4f47aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1285,"total_pss":35094,"rss":107108,"native_total_heap":25528,"native_free_heap":2969,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5563e8b-8d02-4daa-8bf8-41289c5747a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2143,"total_pss":34230,"rss":106072,"native_total_heap":25528,"native_free_heap":3045,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea2c324f-0db2-4992-8633-22dc68b437fb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2055,"total_pss":34278,"rss":106328,"native_total_heap":25528,"native_free_heap":3013,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea9f1529-0a1c-4f75-b570-ffc430df2a78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":774228,"utime":208,"cutime":0,"cstime":0,"stime":231,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6c268-da1c-4588-a11a-fcc21c0452f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752416,"end_time":752424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f97808fd-fb86-4ead-a37e-ec255a5dc253","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4159,"total_pss":32538,"rss":104624,"native_total_heap":25528,"native_free_heap":3384,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03bf6ce3-ca47-49d8-92c6-5758a924321d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1335,"total_pss":34962,"rss":106936,"native_total_heap":25528,"native_free_heap":2928,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11e9e739-4658-4773-8f26-4d28252875db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762397,"end_time":762412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"25e81f46-6ce4-4999-a41a-533e636ae065","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742396,"end_time":742405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c382394-8934-4922-9137-f11a28a51809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2267,"total_pss":34146,"rss":106072,"native_total_heap":25528,"native_free_heap":3097,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"36f7475a-1f2f-4e5e-b5bd-c977fcb0eaed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":765228,"utime":202,"cutime":0,"cstime":0,"stime":227,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ea547b-868f-4555-af8c-17b6aac3220e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2355,"total_pss":34094,"rss":106072,"native_total_heap":25528,"native_free_heap":3134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3af029-9407-4cc3-81da-d9048dd6b692","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":777228,"utime":210,"cutime":0,"cstime":0,"stime":233,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e0602e9-4be9-41cf-ae75-ce658de3e1a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1213,"total_pss":35146,"rss":107108,"native_total_heap":25528,"native_free_heap":2937,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f58bdd4-2f4e-4ef6-aa38-c76c74b840bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742410,"end_time":742419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"430ac282-1f6d-4043-bd08-d361b18cf9cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772412,"end_time":772418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"453091e9-abdb-43ee-b937-e4b0186f1340","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2179,"total_pss":34202,"rss":106072,"native_total_heap":25528,"native_free_heap":3066,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45766c0d-f27f-409a-aaed-9af873f1f258","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":771228,"utime":206,"cutime":0,"cstime":0,"stime":229,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"49d8849c-ea34-4543-bb29-8dbddd3cecce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":735228,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d3a9b20-58d5-4f9f-95b5-0d40568229cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":732228,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50e9b25a-a512-4a17-9d84-3e39ffa123ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1283,"total_pss":34965,"rss":106936,"native_total_heap":25528,"native_free_heap":2912,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52b8cc9d-9f54-4410-a429-b471946fe40b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732413,"end_time":732421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"570102c6-2f7d-4b25-86fd-8bdadc5aca05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3251,"total_pss":33306,"rss":105236,"native_total_heap":25528,"native_free_heap":3269,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ed0091c-79a9-4ca0-97ff-fa8ac51f8651","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":738227,"utime":186,"cutime":0,"cstime":0,"stime":209,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f71d9a4-63e7-487c-93bb-19344f023795","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762416,"end_time":762427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ae082f4-ea55-44df-bad2-623b79338432","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1001,"total_pss":35274,"rss":107108,"native_total_heap":25528,"native_free_heap":2853,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b220d36-3d96-4703-8bd6-032ef3474bcc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3127,"total_pss":33382,"rss":105236,"native_total_heap":25528,"native_free_heap":3217,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d01e49b-d124-4d62-aa1a-6b638ce0b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":753228,"utime":196,"cutime":0,"cstime":0,"stime":219,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"706e1d4d-06b2-46fb-babb-9b8b828a75aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4247,"total_pss":32482,"rss":104624,"native_total_heap":25528,"native_free_heap":3421,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"708d0374-029a-467a-85e4-c52c70c35db8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3039,"total_pss":33434,"rss":105236,"native_total_heap":25528,"native_free_heap":3181,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e468f2-b869-45b3-8c4b-f3390b8005a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":756228,"utime":197,"cutime":0,"cstime":0,"stime":221,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7157a4d5-db82-4e59-ac50-0e058dbfab41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:18.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":747232,"utime":193,"cutime":0,"cstime":0,"stime":214,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7719f05f-3fb1-469e-9f0d-52ca4f90d051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":744231,"utime":191,"cutime":0,"cstime":0,"stime":211,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80bb7e60-c385-46af-804e-a3af31aade78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1985,"total_pss":34446,"rss":106288,"native_total_heap":25528,"native_free_heap":3020,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c744b64-ec76-4f36-a7b6-6cef0414cb05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3339,"total_pss":33254,"rss":105236,"native_total_heap":25528,"native_free_heap":3301,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90b67bff-bff5-426b-9f9f-0713ac8c3677","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752398,"end_time":752411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93035519-c8cd-45cc-be33-3682c64288a7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":762227,"utime":200,"cutime":0,"cstime":0,"stime":224,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"932231b1-0a46-4629-9b8e-adfc6a33ac92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732396,"end_time":732404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"973b45aa-dc91-4d72-9167-831a6ce250b0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":768227,"utime":203,"cutime":0,"cstime":0,"stime":228,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99732c60-eeef-4335-a3d1-7f90d71668c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2057,"total_pss":34347,"rss":106092,"native_total_heap":25528,"native_free_heap":3057,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ef7f996-993a-4068-8d01-e72c58517efa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772400,"end_time":772408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f528111-83f9-462e-94d5-daac1df292cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":759228,"utime":199,"cutime":0,"cstime":0,"stime":223,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b31a3e76-58e5-4140-b90c-4141b2d75742","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3199,"total_pss":33334,"rss":105236,"native_total_heap":25528,"native_free_heap":3249,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdec286c-928b-4651-b0ef-38fe6eb7b008","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1073,"total_pss":35222,"rss":107108,"native_total_heap":25528,"native_free_heap":2885,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be5d69f5-2336-4745-8694-a82063c2144e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":233,"total_pss":35970,"rss":107716,"native_total_heap":25528,"native_free_heap":2767,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c28bc4ac-9fa6-453f-8e51-8cc7da693f80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":750227,"utime":194,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7ed037d-2714-4183-9b66-9e330718663a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4123,"total_pss":32566,"rss":104624,"native_total_heap":25528,"native_free_heap":3368,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9094c5c-ddc2-4e1e-9410-f30b0d5cfbfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":213,"total_pss":35978,"rss":107972,"native_total_heap":25528,"native_free_heap":2747,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd4cde7f-8019-4c73-9f5f-10a551ce9f67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":741227,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2109f5e-3fc3-40fb-a331-7bad798645e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1109,"total_pss":35198,"rss":107108,"native_total_heap":25528,"native_free_heap":2901,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddadf882-03b7-41e9-8653-1a1fa4f47aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1285,"total_pss":35094,"rss":107108,"native_total_heap":25528,"native_free_heap":2969,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5563e8b-8d02-4daa-8bf8-41289c5747a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2143,"total_pss":34230,"rss":106072,"native_total_heap":25528,"native_free_heap":3045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea2c324f-0db2-4992-8633-22dc68b437fb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2055,"total_pss":34278,"rss":106328,"native_total_heap":25528,"native_free_heap":3013,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea9f1529-0a1c-4f75-b570-ffc430df2a78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":774228,"utime":208,"cutime":0,"cstime":0,"stime":231,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6c268-da1c-4588-a11a-fcc21c0452f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752416,"end_time":752424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f97808fd-fb86-4ead-a37e-ec255a5dc253","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4159,"total_pss":32538,"rss":104624,"native_total_heap":25528,"native_free_heap":3384,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json b/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json index e0563def4..0ec8df0cd 100644 --- a/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json +++ b/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json @@ -1 +1 @@ -[{"id":"01e1fce1-1f3b-4aec-b06e-a6d0d0f08d68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":500,"total_pss":27484,"rss":79232,"native_total_heap":23548,"native_free_heap":1839,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0511d700-a0e9-4dfe-956e-d576e8797873","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404912,"end_time":404936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06ebaf0c-2274-4532-84c0-feed9515bc05","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:07.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1067,"total_pss":26513,"rss":79412,"native_total_heap":23548,"native_free_heap":1950,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b195177-f8e8-4942-ad45-d53945b56821","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":443675,"utime":191,"cutime":0,"cstime":0,"stime":213,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20f14560-b8e9-4fbf-a2af-3da9c8e1f596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":428675,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d0c583-166a-49f9-bb8e-19b7bed952aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434905,"end_time":434916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"264e9b4a-59de-4af9-beab-9773933db0cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2887,"total_pss":26343,"rss":79004,"native_total_heap":23548,"native_free_heap":2206,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ee1b6b8-8b14-4554-aecf-9287bcad7b39","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":871,"total_pss":26652,"rss":79580,"native_total_heap":23548,"native_free_heap":1866,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30480cf3-898b-4498-8a2d-f726e48c827a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":407673,"utime":171,"cutime":0,"cstime":0,"stime":196,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"364d1857-8543-4011-9ddd-1a58f28c91c8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2959,"total_pss":26297,"rss":79004,"native_total_heap":23548,"native_free_heap":2242,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa2d0aa-564e-42c3-a127-9af953b65135","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3063,"total_pss":26345,"rss":78936,"native_total_heap":23548,"native_free_heap":2274,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b30bd73-adf6-4630-a81b-33df9df0a4fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414903,"end_time":414910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43893c45-2f4e-492a-96fd-15c396d33921","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:44.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":413672,"utime":173,"cutime":0,"cstime":0,"stime":198,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"495cdf75-38c5-4c4f-9625-8917ccaa205f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":419675,"utime":178,"cutime":0,"cstime":0,"stime":200,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b7ebd90-eb55-476b-aa75-3144b0f052a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:19.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3323,"total_pss":24485,"rss":77432,"native_total_heap":23548,"native_free_heap":2294,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bee2e2f-ae0a-4a98-a254-0b2768d9acb4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":783,"total_pss":26700,"rss":79580,"native_total_heap":23548,"native_free_heap":1834,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"536cffaa-a46b-48de-99e9-f419ded436e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404943,"end_time":404950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"591ed21f-d368-4a57-8a76-c891b06f7fff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1855,"total_pss":25740,"rss":78612,"native_total_heap":23548,"native_free_heap":2038,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f4fb9f8-4913-4e8c-ab63-b7c2ac89850e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414914,"end_time":414924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60b91c8a-d94c-40ca-872a-003d7e97ba98","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":696,"total_pss":27412,"rss":78944,"native_total_heap":23548,"native_free_heap":1923,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60d623c2-2d26-4add-b442-7583e8a4bf06","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:02.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":431675,"utime":184,"cutime":0,"cstime":0,"stime":206,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"616f81cd-61a9-46de-b9e8-b06260b6a2d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.90300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444944,"end_time":444955,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66533d73-e335-413c-9a49-ec614c73d680","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434922,"end_time":434926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f228c96-345a-4345-87b1-4deca1e348e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.63600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":907,"total_pss":26624,"rss":79580,"native_total_heap":23548,"native_free_heap":1882,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771e52d8-4974-4614-9306-9b6859f92a15","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:56.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":425675,"utime":182,"cutime":0,"cstime":0,"stime":203,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d305b0-bfff-4039-ad4c-1d72b9ec7474","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":440678,"utime":189,"cutime":0,"cstime":0,"stime":211,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a6e6ec7-faba-4b93-b2c7-f6cba8e74145","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444919,"end_time":444933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95899d5c-4ff4-4e24-b66b-02b0f1b620be","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1767,"total_pss":25798,"rss":78644,"native_total_heap":23548,"native_free_heap":2002,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95a7638b-76b7-4bc7-bbda-b7c3c49e38c7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":422676,"utime":179,"cutime":0,"cstime":0,"stime":201,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a839af3-0869-4e50-bbbb-fb681608b8db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":416676,"utime":176,"cutime":0,"cstime":0,"stime":199,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d883cdb-f8b0-4352-964c-8da7b56266fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":608,"total_pss":27436,"rss":78944,"native_total_heap":23548,"native_free_heap":1892,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4639f58-fde5-4609-8c04-60ea77619a3a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1927,"total_pss":25688,"rss":78612,"native_total_heap":23548,"native_free_heap":2070,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec73881-4fba-419b-92d9-45c421428c85","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:20.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":449673,"utime":198,"cutime":0,"cstime":0,"stime":217,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aeedcb4f-0fb9-4761-9c9d-a68cd4ed43aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":520,"total_pss":27488,"rss":79232,"native_total_heap":23548,"native_free_heap":1855,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af94028b-667d-48c7-9c8b-d9755de555ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424912,"end_time":424929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d63f14-e356-4107-8ecc-cf4656eff1a9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424935,"end_time":424943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2003750-4a74-4323-94f0-6d37a34bfe76","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":410672,"utime":172,"cutime":0,"cstime":0,"stime":197,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd0ec457-b488-455c-8d6e-b803f78810c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2067,"total_pss":27196,"rss":80208,"native_total_heap":23548,"native_free_heap":2122,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beda0bf3-ab73-44bb-a26c-4470f1d512eb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3099,"total_pss":26317,"rss":78936,"native_total_heap":23548,"native_free_heap":2290,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c11c6dc0-4911-40eb-ba3d-6f59d6dfd815","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":446673,"utime":197,"cutime":0,"cstime":0,"stime":215,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfcedb28-e3f2-4d60-b818-a8334e6f5e65","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2851,"total_pss":26371,"rss":79004,"native_total_heap":23548,"native_free_heap":2190,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9439a4e-3b35-4335-bb17-a96cdbd866d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":396,"total_pss":27536,"rss":79232,"native_total_heap":23548,"native_free_heap":1803,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd2279d0-2111-4a16-9488-d0dab8957da9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:08.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":437674,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd369795-fc0d-4e9c-ac68-eae2612becd9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":434673,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb7faa1-384c-4099-8b8d-238b2724d72e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":404673,"utime":168,"cutime":0,"cstime":0,"stime":193,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef419d0e-01f4-4aca-aa1c-2d3ce1522f6e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3235,"total_pss":24537,"rss":77432,"native_total_heap":23548,"native_free_heap":2262,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efe00642-8424-4480-b60c-b6e21a08089f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3375,"total_pss":24462,"rss":77432,"native_total_heap":23548,"native_free_heap":2315,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa2a32d8-1575-4155-bd2c-a6077c12f02b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1979,"total_pss":25854,"rss":78568,"native_total_heap":23548,"native_free_heap":2086,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc20628-4dcf-4319-830e-1569fea462b4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1380,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":1975,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fd1ceb48-13ca-40f6-8cf7-2a6e5c2c7c7d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":995,"total_pss":26562,"rss":79412,"native_total_heap":23548,"native_free_heap":1918,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"01e1fce1-1f3b-4aec-b06e-a6d0d0f08d68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":500,"total_pss":27484,"rss":79232,"native_total_heap":23548,"native_free_heap":1839,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0511d700-a0e9-4dfe-956e-d576e8797873","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404912,"end_time":404936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06ebaf0c-2274-4532-84c0-feed9515bc05","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:07.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1067,"total_pss":26513,"rss":79412,"native_total_heap":23548,"native_free_heap":1950,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b195177-f8e8-4942-ad45-d53945b56821","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":443675,"utime":191,"cutime":0,"cstime":0,"stime":213,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20f14560-b8e9-4fbf-a2af-3da9c8e1f596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":428675,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d0c583-166a-49f9-bb8e-19b7bed952aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434905,"end_time":434916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"264e9b4a-59de-4af9-beab-9773933db0cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2887,"total_pss":26343,"rss":79004,"native_total_heap":23548,"native_free_heap":2206,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ee1b6b8-8b14-4554-aecf-9287bcad7b39","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":871,"total_pss":26652,"rss":79580,"native_total_heap":23548,"native_free_heap":1866,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30480cf3-898b-4498-8a2d-f726e48c827a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":407673,"utime":171,"cutime":0,"cstime":0,"stime":196,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"364d1857-8543-4011-9ddd-1a58f28c91c8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2959,"total_pss":26297,"rss":79004,"native_total_heap":23548,"native_free_heap":2242,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa2d0aa-564e-42c3-a127-9af953b65135","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3063,"total_pss":26345,"rss":78936,"native_total_heap":23548,"native_free_heap":2274,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b30bd73-adf6-4630-a81b-33df9df0a4fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414903,"end_time":414910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43893c45-2f4e-492a-96fd-15c396d33921","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:44.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":413672,"utime":173,"cutime":0,"cstime":0,"stime":198,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"495cdf75-38c5-4c4f-9625-8917ccaa205f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":419675,"utime":178,"cutime":0,"cstime":0,"stime":200,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b7ebd90-eb55-476b-aa75-3144b0f052a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:19.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3323,"total_pss":24485,"rss":77432,"native_total_heap":23548,"native_free_heap":2294,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bee2e2f-ae0a-4a98-a254-0b2768d9acb4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":783,"total_pss":26700,"rss":79580,"native_total_heap":23548,"native_free_heap":1834,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"536cffaa-a46b-48de-99e9-f419ded436e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404943,"end_time":404950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"591ed21f-d368-4a57-8a76-c891b06f7fff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1855,"total_pss":25740,"rss":78612,"native_total_heap":23548,"native_free_heap":2038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f4fb9f8-4913-4e8c-ab63-b7c2ac89850e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414914,"end_time":414924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60b91c8a-d94c-40ca-872a-003d7e97ba98","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":696,"total_pss":27412,"rss":78944,"native_total_heap":23548,"native_free_heap":1923,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60d623c2-2d26-4add-b442-7583e8a4bf06","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:02.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":431675,"utime":184,"cutime":0,"cstime":0,"stime":206,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"616f81cd-61a9-46de-b9e8-b06260b6a2d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.90300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444944,"end_time":444955,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66533d73-e335-413c-9a49-ec614c73d680","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434922,"end_time":434926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f228c96-345a-4345-87b1-4deca1e348e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.63600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":907,"total_pss":26624,"rss":79580,"native_total_heap":23548,"native_free_heap":1882,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771e52d8-4974-4614-9306-9b6859f92a15","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:56.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":425675,"utime":182,"cutime":0,"cstime":0,"stime":203,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d305b0-bfff-4039-ad4c-1d72b9ec7474","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":440678,"utime":189,"cutime":0,"cstime":0,"stime":211,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a6e6ec7-faba-4b93-b2c7-f6cba8e74145","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444919,"end_time":444933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95899d5c-4ff4-4e24-b66b-02b0f1b620be","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1767,"total_pss":25798,"rss":78644,"native_total_heap":23548,"native_free_heap":2002,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95a7638b-76b7-4bc7-bbda-b7c3c49e38c7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":422676,"utime":179,"cutime":0,"cstime":0,"stime":201,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a839af3-0869-4e50-bbbb-fb681608b8db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":416676,"utime":176,"cutime":0,"cstime":0,"stime":199,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d883cdb-f8b0-4352-964c-8da7b56266fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":608,"total_pss":27436,"rss":78944,"native_total_heap":23548,"native_free_heap":1892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4639f58-fde5-4609-8c04-60ea77619a3a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1927,"total_pss":25688,"rss":78612,"native_total_heap":23548,"native_free_heap":2070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec73881-4fba-419b-92d9-45c421428c85","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:20.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":449673,"utime":198,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aeedcb4f-0fb9-4761-9c9d-a68cd4ed43aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":520,"total_pss":27488,"rss":79232,"native_total_heap":23548,"native_free_heap":1855,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af94028b-667d-48c7-9c8b-d9755de555ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424912,"end_time":424929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d63f14-e356-4107-8ecc-cf4656eff1a9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424935,"end_time":424943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2003750-4a74-4323-94f0-6d37a34bfe76","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":410672,"utime":172,"cutime":0,"cstime":0,"stime":197,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd0ec457-b488-455c-8d6e-b803f78810c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2067,"total_pss":27196,"rss":80208,"native_total_heap":23548,"native_free_heap":2122,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beda0bf3-ab73-44bb-a26c-4470f1d512eb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3099,"total_pss":26317,"rss":78936,"native_total_heap":23548,"native_free_heap":2290,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c11c6dc0-4911-40eb-ba3d-6f59d6dfd815","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":446673,"utime":197,"cutime":0,"cstime":0,"stime":215,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfcedb28-e3f2-4d60-b818-a8334e6f5e65","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2851,"total_pss":26371,"rss":79004,"native_total_heap":23548,"native_free_heap":2190,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9439a4e-3b35-4335-bb17-a96cdbd866d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":396,"total_pss":27536,"rss":79232,"native_total_heap":23548,"native_free_heap":1803,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd2279d0-2111-4a16-9488-d0dab8957da9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:08.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":437674,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd369795-fc0d-4e9c-ac68-eae2612becd9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":434673,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb7faa1-384c-4099-8b8d-238b2724d72e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":404673,"utime":168,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef419d0e-01f4-4aca-aa1c-2d3ce1522f6e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3235,"total_pss":24537,"rss":77432,"native_total_heap":23548,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efe00642-8424-4480-b60c-b6e21a08089f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3375,"total_pss":24462,"rss":77432,"native_total_heap":23548,"native_free_heap":2315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa2a32d8-1575-4155-bd2c-a6077c12f02b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1979,"total_pss":25854,"rss":78568,"native_total_heap":23548,"native_free_heap":2086,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc20628-4dcf-4319-830e-1569fea462b4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1380,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":1975,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fd1ceb48-13ca-40f6-8cf7-2a6e5c2c7c7d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":995,"total_pss":26562,"rss":79412,"native_total_heap":23548,"native_free_heap":1918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json b/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json index 51f85227d..42532530b 100644 --- a/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json +++ b/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json @@ -1 +1 @@ -[{"id":"01e4336b-c5ce-4998-95f7-22e7048181ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:57.36700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1113226,"utime":404,"cutime":0,"cstime":0,"stime":448,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06076861-9ff6-4e52-b89d-cda88315db3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.38900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072416,"end_time":1072425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06c1cffe-eeb2-45eb-97d4-064f19c8fbb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":250,"total_pss":29581,"rss":85700,"native_total_heap":26040,"native_free_heap":2705,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a50c405-ea22-4d15-937e-24670d13e43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":26903,"rss":91220,"native_total_heap":26040,"native_free_heap":3251,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e05f96-a97d-42b9-9db8-b760dede82a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:45.56400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":410,"total_pss":30818,"rss":86860,"native_total_heap":26040,"native_free_heap":2774,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"186252ee-7db5-4c1d-806e-436e81944fa5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1110228,"utime":400,"cutime":0,"cstime":0,"stime":444,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1deca286-9615-48f1-91ad-9eb96e4eb458","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072395,"end_time":1072412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"224d712c-646f-48fb-aa59-0fdd79094afe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32007,"rss":105300,"native_total_heap":26040,"native_free_heap":3420,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f8b531b-eb8c-4bba-a2de-afce2706dbd5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1098229,"utime":394,"cutime":0,"cstime":0,"stime":437,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"301d36fa-38b5-420b-8cec-98fdce08d483","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1080226,"utime":388,"cutime":0,"cstime":0,"stime":428,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"327d5b50-56d2-4c0a-a669-e692f19e088b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.18500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082420,"end_time":1082438,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43ab643b-b385-4634-85a8-60e1fefbcd49","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092414,"end_time":1092417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45852df8-f1a8-49a5-b3f3-34091c72011b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:47.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":27193,"rss":82036,"native_total_heap":26040,"native_free_heap":3084,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"488cfbf0-222e-4e1c-851a-d4af4e3fccfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.09700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092399,"end_time":1092409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e798e5a-a54a-40f2-b6a6-6781df3c0bd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":29981,"rss":86100,"native_total_heap":26040,"native_free_heap":2927,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eab53a0-dff9-4569-b627-33d133c8df75","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:45.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2358,"total_pss":26944,"rss":82028,"native_total_heap":26040,"native_free_heap":3115,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"551c7ac9-3b33-46ab-a7bf-2ba0740e991f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:34.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":27037,"rss":83328,"native_total_heap":26040,"native_free_heap":3167,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5bf2cc97-288f-40a7-bca4-4a616f26b37b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.67800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112401,"end_time":1112419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6163161d-394d-46d5-a893-c57ef96a21e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102422,"end_time":1102427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"622e945a-6ee2-4373-9b3b-33bfc896d341","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.20600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082447,"end_time":1082459,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63159f0f-5077-44c2-8252-0ae1a9f7ce1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:08.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3414,"total_pss":27203,"rss":99600,"native_total_heap":26040,"native_free_heap":3319,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67247eb6-8fd3-4167-968d-37cfc5a00a74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":462,"total_pss":30782,"rss":86860,"native_total_heap":26040,"native_free_heap":2794,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c10741e-0dbc-41e7-bc65-04e85c5de0bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:46.91400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1089226,"utime":391,"cutime":0,"cstime":0,"stime":432,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75b9983a-b8c7-4e39-8a18-9200ceb06dd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:24.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":29933,"rss":86064,"native_total_heap":26040,"native_free_heap":2964,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4f8205-3236-451d-9434-7f808fc6dc8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":198,"total_pss":29643,"rss":85744,"native_total_heap":26040,"native_free_heap":2689,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ead0ce5-2a99-45b8-a28a-567e2e2244a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.97500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1083227,"utime":390,"cutime":0,"cstime":0,"stime":429,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f3e9880-b83f-412e-b2a5-99cd4e857bc1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:10.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":27029,"rss":93248,"native_total_heap":26040,"native_free_heap":3287,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ca35788-a58e-4ecd-ae37-08c8f1ce5c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":30051,"rss":86100,"native_total_heap":26040,"native_free_heap":2879,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93dc0fdf-8a8b-411f-a04a-149d9aebed6d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:40.56600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1101228,"utime":396,"cutime":0,"cstime":0,"stime":440,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"992367fb-07a2-48ad-b506-a02e820e2e8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:23.65100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1095226,"utime":393,"cutime":0,"cstime":0,"stime":436,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99e7253d-f05d-4066-8354-67423f81d2fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1116232,"utime":405,"cutime":0,"cstime":0,"stime":448,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c3f4b27-041b-4cff-8078-ab2387937126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:58.36700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3568,"total_pss":28001,"rss":86024,"native_total_heap":26040,"native_free_heap":3367,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e06c967-c3ea-4d93-a12a-e83a90f09428","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1074226,"utime":387,"cutime":0,"cstime":0,"stime":425,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4539b2a-cb2f-4619-a160-3513562c264c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:42.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1071232,"utime":382,"cutime":0,"cstime":0,"stime":424,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a786aa0c-9599-4625-bc41-d92dcbcbe3fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":260,"total_pss":35671,"rss":108660,"native_total_heap":26040,"native_free_heap":2751,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2f4e15-21b0-42ff-aa05-f7c1ce8a535f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.70000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112423,"end_time":1112440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8cdcc1-017d-4c76-a9a3-b8df9de6ea14","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:32.97300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3202,"total_pss":26290,"rss":83580,"native_total_heap":26040,"native_free_heap":3235,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af4c5d99-bd91-41a4-81e2-ed5e86c32cba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.75400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102400,"end_time":1102417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c30e20e1-9d24-4ae7-9065-d554ead1b275","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:28.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1286,"total_pss":30004,"rss":86100,"native_total_heap":26040,"native_free_heap":2911,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c56ed51e-7421-4ad5-a891-dfd7122f39dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:59.48600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":29536,"rss":85700,"native_total_heap":26040,"native_free_heap":2742,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd305590-ab63-4809-b2f9-b6ff740f8ed9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:52.25800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1498,"total_pss":30076,"rss":86136,"native_total_heap":26040,"native_free_heap":2996,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b12aef-dec8-4892-91ba-0a6ea7f4b464","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":27343,"rss":82660,"native_total_heap":26040,"native_free_heap":3047,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d367a53f-ec23-45ca-b066-3b96043e4ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1104227,"utime":398,"cutime":0,"cstime":0,"stime":441,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dabb4712-abe6-4786-8aac-23e29ebf4451","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.91600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1092228,"utime":391,"cutime":0,"cstime":0,"stime":433,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd8921b4-db49-45ce-a61e-fb5b2df22c0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3482,"total_pss":30741,"rss":105052,"native_total_heap":26040,"native_free_heap":3335,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e16c401b-afc6-4046-8250-dc8a8734b5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:09.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1077226,"utime":387,"cutime":0,"cstime":0,"stime":426,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edeb4743-7f22-42f2-8ff7-fb070c044344","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":28594,"rss":84580,"native_total_heap":26040,"native_free_heap":3131,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef73cbc0-a3d5-427c-a785-ece791363801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1086227,"utime":391,"cutime":0,"cstime":0,"stime":431,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fce0882f-e0fa-4c12-bc7f-1bd010583c25","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:58.48600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1107226,"utime":399,"cutime":0,"cstime":0,"stime":443,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8bf2fb-28cf-4366-800d-2223b1ae9749","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":208,"total_pss":35695,"rss":108660,"native_total_heap":26040,"native_free_heap":2735,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"01e4336b-c5ce-4998-95f7-22e7048181ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:57.36700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1113226,"utime":404,"cutime":0,"cstime":0,"stime":448,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06076861-9ff6-4e52-b89d-cda88315db3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.38900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072416,"end_time":1072425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06c1cffe-eeb2-45eb-97d4-064f19c8fbb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":250,"total_pss":29581,"rss":85700,"native_total_heap":26040,"native_free_heap":2705,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a50c405-ea22-4d15-937e-24670d13e43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":26903,"rss":91220,"native_total_heap":26040,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e05f96-a97d-42b9-9db8-b760dede82a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:45.56400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":410,"total_pss":30818,"rss":86860,"native_total_heap":26040,"native_free_heap":2774,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"186252ee-7db5-4c1d-806e-436e81944fa5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1110228,"utime":400,"cutime":0,"cstime":0,"stime":444,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1deca286-9615-48f1-91ad-9eb96e4eb458","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072395,"end_time":1072412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"224d712c-646f-48fb-aa59-0fdd79094afe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32007,"rss":105300,"native_total_heap":26040,"native_free_heap":3420,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f8b531b-eb8c-4bba-a2de-afce2706dbd5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1098229,"utime":394,"cutime":0,"cstime":0,"stime":437,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"301d36fa-38b5-420b-8cec-98fdce08d483","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1080226,"utime":388,"cutime":0,"cstime":0,"stime":428,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"327d5b50-56d2-4c0a-a669-e692f19e088b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.18500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082420,"end_time":1082438,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43ab643b-b385-4634-85a8-60e1fefbcd49","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092414,"end_time":1092417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45852df8-f1a8-49a5-b3f3-34091c72011b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:47.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":27193,"rss":82036,"native_total_heap":26040,"native_free_heap":3084,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"488cfbf0-222e-4e1c-851a-d4af4e3fccfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.09700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092399,"end_time":1092409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e798e5a-a54a-40f2-b6a6-6781df3c0bd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":29981,"rss":86100,"native_total_heap":26040,"native_free_heap":2927,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eab53a0-dff9-4569-b627-33d133c8df75","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:45.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2358,"total_pss":26944,"rss":82028,"native_total_heap":26040,"native_free_heap":3115,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"551c7ac9-3b33-46ab-a7bf-2ba0740e991f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:34.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":27037,"rss":83328,"native_total_heap":26040,"native_free_heap":3167,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5bf2cc97-288f-40a7-bca4-4a616f26b37b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.67800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112401,"end_time":1112419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6163161d-394d-46d5-a893-c57ef96a21e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102422,"end_time":1102427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"622e945a-6ee2-4373-9b3b-33bfc896d341","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.20600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082447,"end_time":1082459,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63159f0f-5077-44c2-8252-0ae1a9f7ce1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:08.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3414,"total_pss":27203,"rss":99600,"native_total_heap":26040,"native_free_heap":3319,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67247eb6-8fd3-4167-968d-37cfc5a00a74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":462,"total_pss":30782,"rss":86860,"native_total_heap":26040,"native_free_heap":2794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c10741e-0dbc-41e7-bc65-04e85c5de0bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:46.91400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1089226,"utime":391,"cutime":0,"cstime":0,"stime":432,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75b9983a-b8c7-4e39-8a18-9200ceb06dd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:24.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":29933,"rss":86064,"native_total_heap":26040,"native_free_heap":2964,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4f8205-3236-451d-9434-7f808fc6dc8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":198,"total_pss":29643,"rss":85744,"native_total_heap":26040,"native_free_heap":2689,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ead0ce5-2a99-45b8-a28a-567e2e2244a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.97500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1083227,"utime":390,"cutime":0,"cstime":0,"stime":429,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f3e9880-b83f-412e-b2a5-99cd4e857bc1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:10.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":27029,"rss":93248,"native_total_heap":26040,"native_free_heap":3287,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ca35788-a58e-4ecd-ae37-08c8f1ce5c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":30051,"rss":86100,"native_total_heap":26040,"native_free_heap":2879,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93dc0fdf-8a8b-411f-a04a-149d9aebed6d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:40.56600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1101228,"utime":396,"cutime":0,"cstime":0,"stime":440,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"992367fb-07a2-48ad-b506-a02e820e2e8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:23.65100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1095226,"utime":393,"cutime":0,"cstime":0,"stime":436,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99e7253d-f05d-4066-8354-67423f81d2fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1116232,"utime":405,"cutime":0,"cstime":0,"stime":448,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c3f4b27-041b-4cff-8078-ab2387937126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:58.36700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3568,"total_pss":28001,"rss":86024,"native_total_heap":26040,"native_free_heap":3367,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e06c967-c3ea-4d93-a12a-e83a90f09428","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1074226,"utime":387,"cutime":0,"cstime":0,"stime":425,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4539b2a-cb2f-4619-a160-3513562c264c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:42.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1071232,"utime":382,"cutime":0,"cstime":0,"stime":424,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a786aa0c-9599-4625-bc41-d92dcbcbe3fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":260,"total_pss":35671,"rss":108660,"native_total_heap":26040,"native_free_heap":2751,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2f4e15-21b0-42ff-aa05-f7c1ce8a535f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.70000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112423,"end_time":1112440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8cdcc1-017d-4c76-a9a3-b8df9de6ea14","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:32.97300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3202,"total_pss":26290,"rss":83580,"native_total_heap":26040,"native_free_heap":3235,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af4c5d99-bd91-41a4-81e2-ed5e86c32cba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.75400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102400,"end_time":1102417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c30e20e1-9d24-4ae7-9065-d554ead1b275","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:28.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1286,"total_pss":30004,"rss":86100,"native_total_heap":26040,"native_free_heap":2911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c56ed51e-7421-4ad5-a891-dfd7122f39dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:59.48600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":29536,"rss":85700,"native_total_heap":26040,"native_free_heap":2742,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd305590-ab63-4809-b2f9-b6ff740f8ed9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:52.25800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1498,"total_pss":30076,"rss":86136,"native_total_heap":26040,"native_free_heap":2996,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b12aef-dec8-4892-91ba-0a6ea7f4b464","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":27343,"rss":82660,"native_total_heap":26040,"native_free_heap":3047,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d367a53f-ec23-45ca-b066-3b96043e4ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1104227,"utime":398,"cutime":0,"cstime":0,"stime":441,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dabb4712-abe6-4786-8aac-23e29ebf4451","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.91600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1092228,"utime":391,"cutime":0,"cstime":0,"stime":433,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd8921b4-db49-45ce-a61e-fb5b2df22c0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3482,"total_pss":30741,"rss":105052,"native_total_heap":26040,"native_free_heap":3335,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e16c401b-afc6-4046-8250-dc8a8734b5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:09.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1077226,"utime":387,"cutime":0,"cstime":0,"stime":426,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edeb4743-7f22-42f2-8ff7-fb070c044344","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":28594,"rss":84580,"native_total_heap":26040,"native_free_heap":3131,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef73cbc0-a3d5-427c-a785-ece791363801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1086227,"utime":391,"cutime":0,"cstime":0,"stime":431,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fce0882f-e0fa-4c12-bc7f-1bd010583c25","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:58.48600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1107226,"utime":399,"cutime":0,"cstime":0,"stime":443,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8bf2fb-28cf-4366-800d-2223b1ae9749","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":208,"total_pss":35695,"rss":108660,"native_total_heap":26040,"native_free_heap":2735,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json b/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json index 19aa4691e..31bc4b892 100644 --- a/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json +++ b/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json @@ -1 +1 @@ -[{"id":"0b9d0a7d-ee6d-43a4-8e96-c2a048715c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.23500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172408,"end_time":1172412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14c13612-d42d-4b39-aa0e-4b68061eff7c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:50.05000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1167228,"utime":432,"cutime":0,"cstime":0,"stime":480,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b164fdb-f6e5-4897-801e-f0a1bf725936","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.36000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1878,"total_pss":30040,"rss":86612,"native_total_heap":26040,"native_free_heap":2955,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21f8cffa-aaed-4dbe-96c7-5479867434cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":926,"total_pss":29373,"rss":82860,"native_total_heap":26040,"native_free_heap":2794,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22b1285c-a1a6-4fc8-ac64-0828e42944e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1138,"total_pss":29289,"rss":83364,"native_total_heap":26040,"native_free_heap":2878,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e694999-a390-4d57-b0c4-4db616f51f53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:22.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2054,"total_pss":29970,"rss":86612,"native_total_heap":26040,"native_free_heap":3023,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f57f5ce-f985-45fe-a909-4d375b966ce2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:44.67200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1185228,"utime":437,"cutime":0,"cstime":0,"stime":486,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"477d89df-dbd9-460e-91f9-13c66bea0e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:53.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1998,"total_pss":27867,"rss":85520,"native_total_heap":26040,"native_free_heap":2998,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b63ed64-d20e-4b5c-b06d-2b5be0d07891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:45.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4158,"total_pss":29422,"rss":83904,"native_total_heap":26040,"native_free_heap":3399,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d103c92-fe71-4050-b2fd-242c4cb5e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:43.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":210,"total_pss":31421,"rss":85008,"native_total_heap":26040,"native_free_heap":2725,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa31d7b-48c0-4e01-99ee-af6e8e3c2ac6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:56.04900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1173226,"utime":434,"cutime":0,"cstime":0,"stime":482,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5859179c-2abf-426f-bba4-89d1781c3156","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192410,"end_time":1192413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f98923b-7180-48e9-b768-8079f057820c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:47.48600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1197229,"utime":442,"cutime":0,"cstime":0,"stime":493,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61ce89fb-e364-4178-97d9-d41d2b5c5e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:24.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1950,"total_pss":29992,"rss":86612,"native_total_heap":26040,"native_free_heap":2991,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62d3e39a-61c1-41c4-be5e-7f1de54efa32","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:13.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2162,"total_pss":29937,"rss":86612,"native_total_heap":26040,"native_free_heap":3075,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"631ba88e-481b-41a5-9baf-4c5b1e6a61ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.61500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202419,"end_time":1202426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6747c8dd-781a-437c-abcd-4e56c68c0ed1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:57.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1226,"total_pss":27864,"rss":82568,"native_total_heap":26040,"native_free_heap":2915,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d8801e6-825e-4178-9a34-19f9ce4b7077","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182430,"end_time":1182435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77e131af-04b6-4f9c-bb10-4f767dd15718","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:46.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3110,"total_pss":29220,"rss":85884,"native_total_heap":26040,"native_free_heap":3227,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"795f3a0a-1549-424c-837c-4d08a0ba44e8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2210,"total_pss":29639,"rss":87740,"native_total_heap":26040,"native_free_heap":3067,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87421f2f-71ea-4690-8971-66ccf47d5ee7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.60300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202398,"end_time":1202414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89e321ff-3939-4569-becd-e5897e6f3be8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:23.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1209228,"utime":446,"cutime":0,"cstime":0,"stime":499,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8edeb9a0-12b2-484b-8645-9cda762c13d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.54800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212416,"end_time":1212425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f8178be-0926-445a-b8d3-3913cbfdec9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.36200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1206239,"utime":445,"cutime":0,"cstime":0,"stime":498,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ba5fbe5-109e-4790-b63f-d150f8b21b95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:12.41600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1203227,"utime":444,"cutime":0,"cstime":0,"stime":497,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a614f711-2067-40cb-be30-0b69e983468a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.53500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212398,"end_time":1212412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a769aff2-f9a9-48e3-91e2-5202f9a501b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1176229,"utime":435,"cutime":0,"cstime":0,"stime":483,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a877b36e-867e-47b6-9f3f-3caccd2c7ce5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2950,"total_pss":29260,"rss":85800,"native_total_heap":26040,"native_free_heap":3158,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acf54f06-5daa-45ce-8981-02b664df11b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:51.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2086,"total_pss":28480,"rss":86248,"native_total_heap":26040,"native_free_heap":3014,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af2bc913-acf4-462f-823b-64657243334a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1200226,"utime":442,"cutime":0,"cstime":0,"stime":494,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b298866b-fd70-47e3-aabd-ff46802a776c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1962,"total_pss":28405,"rss":86032,"native_total_heap":26040,"native_free_heap":2982,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8398b5d-4354-4832-b568-498829914111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:46.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4034,"total_pss":26395,"rss":81188,"native_total_heap":26040,"native_free_heap":3347,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c91d6217-6074-4fb4-a75f-61489b2a3ced","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:41.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1086,"total_pss":27904,"rss":81704,"native_total_heap":26040,"native_free_heap":2862,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca8cef14-164d-4d61-a075-b8f71f4d36a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182400,"end_time":1182418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22b707a-181a-4c64-a8fe-91465b98b123","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.37000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2074,"total_pss":29941,"rss":86612,"native_total_heap":26040,"native_free_heap":3043,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6aa96b6-431a-4ecd-abc9-f776146a9005","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2914,"total_pss":29258,"rss":85812,"native_total_heap":26040,"native_free_heap":3143,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbcd2af9-9721-4260-ae9c-7cd8e75cdf1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3162,"total_pss":29184,"rss":85884,"native_total_heap":26040,"native_free_heap":3247,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddba719a-032b-45ae-a14f-3efec6884836","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1182230,"utime":436,"cutime":0,"cstime":0,"stime":484,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de3e0cde-0d62-4f40-8953-35c4dc4fd30e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:47.58100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1191229,"utime":440,"cutime":0,"cstime":0,"stime":489,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de5e415d-2c9b-4fef-b950-c9b849806d1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:49.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2158,"total_pss":28623,"rss":86764,"native_total_heap":26040,"native_free_heap":3051,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de9e850e-04bc-4a7f-a872-7154d06b4d1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3962,"total_pss":26234,"rss":81052,"native_total_heap":26040,"native_free_heap":3315,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e18b804f-0457-437a-8cf2-9d45ec3fb7b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.22300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172396,"end_time":1172401,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3723997-3498-4682-9cce-42afb216c5ff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:42.73900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1179226,"utime":435,"cutime":0,"cstime":0,"stime":484,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6543071-e6ba-444a-9547-7f6f2a168e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.75800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192399,"end_time":1192406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f18079f6-9a9a-45e0-9e6c-afc29e76790a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1194228,"utime":441,"cutime":0,"cstime":0,"stime":491,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f31c7f62-07c6-404c-a463-8d7849c66f47","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4086,"total_pss":26542,"rss":81160,"native_total_heap":26040,"native_free_heap":3362,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f42a69a7-a21a-4144-8e42-640c7e3ed7bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:48.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3038,"total_pss":29272,"rss":85884,"native_total_heap":26040,"native_free_heap":3195,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eec829-b21a-4f62-9af3-3808b5d4cc1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1188226,"utime":439,"cutime":0,"cstime":0,"stime":488,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7951e8-bbcc-4656-9e30-3fa9204d077d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:43.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":998,"total_pss":28142,"rss":82060,"native_total_heap":26040,"native_free_heap":2831,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc52a7c-b873-4db7-99ae-539c37a923a8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1212229,"utime":448,"cutime":0,"cstime":0,"stime":500,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0b9d0a7d-ee6d-43a4-8e96-c2a048715c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.23500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172408,"end_time":1172412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14c13612-d42d-4b39-aa0e-4b68061eff7c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:50.05000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1167228,"utime":432,"cutime":0,"cstime":0,"stime":480,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b164fdb-f6e5-4897-801e-f0a1bf725936","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.36000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1878,"total_pss":30040,"rss":86612,"native_total_heap":26040,"native_free_heap":2955,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21f8cffa-aaed-4dbe-96c7-5479867434cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":926,"total_pss":29373,"rss":82860,"native_total_heap":26040,"native_free_heap":2794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22b1285c-a1a6-4fc8-ac64-0828e42944e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1138,"total_pss":29289,"rss":83364,"native_total_heap":26040,"native_free_heap":2878,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e694999-a390-4d57-b0c4-4db616f51f53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:22.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2054,"total_pss":29970,"rss":86612,"native_total_heap":26040,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f57f5ce-f985-45fe-a909-4d375b966ce2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:44.67200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1185228,"utime":437,"cutime":0,"cstime":0,"stime":486,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"477d89df-dbd9-460e-91f9-13c66bea0e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:53.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1998,"total_pss":27867,"rss":85520,"native_total_heap":26040,"native_free_heap":2998,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b63ed64-d20e-4b5c-b06d-2b5be0d07891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:45.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4158,"total_pss":29422,"rss":83904,"native_total_heap":26040,"native_free_heap":3399,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d103c92-fe71-4050-b2fd-242c4cb5e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:43.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":210,"total_pss":31421,"rss":85008,"native_total_heap":26040,"native_free_heap":2725,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa31d7b-48c0-4e01-99ee-af6e8e3c2ac6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:56.04900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1173226,"utime":434,"cutime":0,"cstime":0,"stime":482,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5859179c-2abf-426f-bba4-89d1781c3156","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192410,"end_time":1192413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f98923b-7180-48e9-b768-8079f057820c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:47.48600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1197229,"utime":442,"cutime":0,"cstime":0,"stime":493,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61ce89fb-e364-4178-97d9-d41d2b5c5e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:24.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1950,"total_pss":29992,"rss":86612,"native_total_heap":26040,"native_free_heap":2991,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62d3e39a-61c1-41c4-be5e-7f1de54efa32","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:13.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2162,"total_pss":29937,"rss":86612,"native_total_heap":26040,"native_free_heap":3075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"631ba88e-481b-41a5-9baf-4c5b1e6a61ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.61500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202419,"end_time":1202426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6747c8dd-781a-437c-abcd-4e56c68c0ed1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:57.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1226,"total_pss":27864,"rss":82568,"native_total_heap":26040,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d8801e6-825e-4178-9a34-19f9ce4b7077","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182430,"end_time":1182435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77e131af-04b6-4f9c-bb10-4f767dd15718","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:46.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3110,"total_pss":29220,"rss":85884,"native_total_heap":26040,"native_free_heap":3227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"795f3a0a-1549-424c-837c-4d08a0ba44e8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2210,"total_pss":29639,"rss":87740,"native_total_heap":26040,"native_free_heap":3067,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87421f2f-71ea-4690-8971-66ccf47d5ee7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.60300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202398,"end_time":1202414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89e321ff-3939-4569-becd-e5897e6f3be8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:23.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1209228,"utime":446,"cutime":0,"cstime":0,"stime":499,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8edeb9a0-12b2-484b-8645-9cda762c13d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.54800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212416,"end_time":1212425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f8178be-0926-445a-b8d3-3913cbfdec9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.36200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1206239,"utime":445,"cutime":0,"cstime":0,"stime":498,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ba5fbe5-109e-4790-b63f-d150f8b21b95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:12.41600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1203227,"utime":444,"cutime":0,"cstime":0,"stime":497,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a614f711-2067-40cb-be30-0b69e983468a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.53500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212398,"end_time":1212412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a769aff2-f9a9-48e3-91e2-5202f9a501b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1176229,"utime":435,"cutime":0,"cstime":0,"stime":483,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a877b36e-867e-47b6-9f3f-3caccd2c7ce5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2950,"total_pss":29260,"rss":85800,"native_total_heap":26040,"native_free_heap":3158,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acf54f06-5daa-45ce-8981-02b664df11b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:51.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2086,"total_pss":28480,"rss":86248,"native_total_heap":26040,"native_free_heap":3014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af2bc913-acf4-462f-823b-64657243334a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1200226,"utime":442,"cutime":0,"cstime":0,"stime":494,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b298866b-fd70-47e3-aabd-ff46802a776c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1962,"total_pss":28405,"rss":86032,"native_total_heap":26040,"native_free_heap":2982,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8398b5d-4354-4832-b568-498829914111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:46.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4034,"total_pss":26395,"rss":81188,"native_total_heap":26040,"native_free_heap":3347,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c91d6217-6074-4fb4-a75f-61489b2a3ced","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:41.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1086,"total_pss":27904,"rss":81704,"native_total_heap":26040,"native_free_heap":2862,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca8cef14-164d-4d61-a075-b8f71f4d36a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182400,"end_time":1182418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22b707a-181a-4c64-a8fe-91465b98b123","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.37000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2074,"total_pss":29941,"rss":86612,"native_total_heap":26040,"native_free_heap":3043,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6aa96b6-431a-4ecd-abc9-f776146a9005","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2914,"total_pss":29258,"rss":85812,"native_total_heap":26040,"native_free_heap":3143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbcd2af9-9721-4260-ae9c-7cd8e75cdf1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3162,"total_pss":29184,"rss":85884,"native_total_heap":26040,"native_free_heap":3247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddba719a-032b-45ae-a14f-3efec6884836","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1182230,"utime":436,"cutime":0,"cstime":0,"stime":484,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de3e0cde-0d62-4f40-8953-35c4dc4fd30e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:47.58100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1191229,"utime":440,"cutime":0,"cstime":0,"stime":489,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de5e415d-2c9b-4fef-b950-c9b849806d1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:49.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2158,"total_pss":28623,"rss":86764,"native_total_heap":26040,"native_free_heap":3051,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de9e850e-04bc-4a7f-a872-7154d06b4d1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3962,"total_pss":26234,"rss":81052,"native_total_heap":26040,"native_free_heap":3315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e18b804f-0457-437a-8cf2-9d45ec3fb7b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.22300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172396,"end_time":1172401,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3723997-3498-4682-9cce-42afb216c5ff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:42.73900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1179226,"utime":435,"cutime":0,"cstime":0,"stime":484,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6543071-e6ba-444a-9547-7f6f2a168e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.75800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192399,"end_time":1192406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f18079f6-9a9a-45e0-9e6c-afc29e76790a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1194228,"utime":441,"cutime":0,"cstime":0,"stime":491,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f31c7f62-07c6-404c-a463-8d7849c66f47","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4086,"total_pss":26542,"rss":81160,"native_total_heap":26040,"native_free_heap":3362,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f42a69a7-a21a-4144-8e42-640c7e3ed7bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:48.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3038,"total_pss":29272,"rss":85884,"native_total_heap":26040,"native_free_heap":3195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eec829-b21a-4f62-9af3-3808b5d4cc1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1188226,"utime":439,"cutime":0,"cstime":0,"stime":488,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7951e8-bbcc-4656-9e30-3fa9204d077d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:43.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":998,"total_pss":28142,"rss":82060,"native_total_heap":26040,"native_free_heap":2831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc52a7c-b873-4db7-99ae-539c37a923a8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1212229,"utime":448,"cutime":0,"cstime":0,"stime":500,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json b/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json index 143aed8f2..68332a7bb 100644 --- a/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json +++ b/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json @@ -1 +1 @@ -[{"id":"0af481c5-aee8-4324-8f4d-962f7581f7d9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.70700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"102098a9-8135-46cd-8ca2-65c326688b90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.79900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2885386,"on_next_draw_uptime":2885578,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26d7c168-6bc4-4707-9c01-b05eb3f9fcee","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"333d50dd-96fb-4ffe-99c4-24ab2493fd29","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2885385,"utime":44,"cutime":0,"cstime":0,"stime":58,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33e1f864-17e1-41fb-8a23-199c2f913450","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.38300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3434a2bf-51ee-434d-9f82-30cfd9e37d1b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.98300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3518691e-0f78-4b72-833d-d324cc5a75a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.68700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2885456,"end_time":2885468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"3624","content-type":"multipart/form-data; boundary=dea6be73-4666-4508-a98a-8b6e5455b161","host":"10.0.2.2:8080","msr-req-id":"fd99afe8-35f4-4e3d-9e79-55756c1f5dcf","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:14:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aad4497-51c7-4ea7-b6f9-c47425f842d8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1106,"total_pss":43073,"rss":124004,"native_total_heap":25272,"native_free_heap":1427,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4311fd1a-07c9-480b-a374-e7a43c950b62","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3182,"total_pss":35297,"rss":114304,"native_total_heap":24760,"native_free_heap":2460,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44d0e98c-537b-405c-bf82-40e5d830c507","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2891385,"utime":57,"cutime":0,"cstime":0,"stime":72,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bf61eeb-88b9-4e54-82c8-52bdf0d320a2","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.06100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2889529,"end_time":2890842,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:14:58 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"746e79fc-9a3d-40ee-a81f-17ccd31e7d42","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.65600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":560.9619,"y":1475.9125,"touch_down_time":2889366,"touch_up_time":2889436},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92782de9-653f-4c4c-b40c-239b5d53f348","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:59.68000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a116fa31-7261-4118-89cc-b8b9c3b31ef4","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.61000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a966eff4-f131-4cc8-aa37-1ea6f4ae7db8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4e9c211-b2dc-4552-b33d-4456f60e705f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:54.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2762,"total_pss":36107,"rss":114760,"native_total_heap":24760,"native_free_heap":2063,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf9ffed-481b-4583-a47a-06db381d5605","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2895450,"utime":58,"cutime":0,"cstime":0,"stime":75,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b9ad68-39d9-414c-b278-e51ec32d655e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:55.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2888385,"utime":49,"cutime":0,"cstime":0,"stime":62,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5095f04-8978-409b-b877-26013f77ed1f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.99000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec6427aa-0b80-42ef-9e75-7d55eb4c0d90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.61200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2674,"total_pss":36383,"rss":115040,"native_total_heap":24760,"native_free_heap":1903,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed81710e-05e3-44e1-a23c-3047f2d1a639","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6933a9a-6d1b-4994-bfa9-9e73d1dabd4b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.39400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe334e36-a794-4192-b09e-e456be253ddf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0af481c5-aee8-4324-8f4d-962f7581f7d9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.70700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"102098a9-8135-46cd-8ca2-65c326688b90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.79900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2885386,"on_next_draw_uptime":2885578,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26d7c168-6bc4-4707-9c01-b05eb3f9fcee","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"333d50dd-96fb-4ffe-99c4-24ab2493fd29","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2885385,"utime":44,"cutime":0,"cstime":0,"stime":58,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33e1f864-17e1-41fb-8a23-199c2f913450","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.38300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3434a2bf-51ee-434d-9f82-30cfd9e37d1b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.98300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3518691e-0f78-4b72-833d-d324cc5a75a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.68700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2885456,"end_time":2885468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"3624","content-type":"multipart/form-data; boundary=dea6be73-4666-4508-a98a-8b6e5455b161","host":"10.0.2.2:8080","msr-req-id":"fd99afe8-35f4-4e3d-9e79-55756c1f5dcf","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:14:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aad4497-51c7-4ea7-b6f9-c47425f842d8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1106,"total_pss":43073,"rss":124004,"native_total_heap":25272,"native_free_heap":1427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4311fd1a-07c9-480b-a374-e7a43c950b62","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3182,"total_pss":35297,"rss":114304,"native_total_heap":24760,"native_free_heap":2460,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44d0e98c-537b-405c-bf82-40e5d830c507","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2891385,"utime":57,"cutime":0,"cstime":0,"stime":72,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bf61eeb-88b9-4e54-82c8-52bdf0d320a2","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.06100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2889529,"end_time":2890842,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:14:58 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"746e79fc-9a3d-40ee-a81f-17ccd31e7d42","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.65600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":560.9619,"y":1475.9125,"touch_down_time":2889366,"touch_up_time":2889436},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92782de9-653f-4c4c-b40c-239b5d53f348","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:59.68000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a116fa31-7261-4118-89cc-b8b9c3b31ef4","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.61000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a966eff4-f131-4cc8-aa37-1ea6f4ae7db8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4e9c211-b2dc-4552-b33d-4456f60e705f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:54.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2762,"total_pss":36107,"rss":114760,"native_total_heap":24760,"native_free_heap":2063,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf9ffed-481b-4583-a47a-06db381d5605","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2895450,"utime":58,"cutime":0,"cstime":0,"stime":75,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b9ad68-39d9-414c-b278-e51ec32d655e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:55.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2888385,"utime":49,"cutime":0,"cstime":0,"stime":62,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5095f04-8978-409b-b877-26013f77ed1f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.99000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec6427aa-0b80-42ef-9e75-7d55eb4c0d90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.61200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2674,"total_pss":36383,"rss":115040,"native_total_heap":24760,"native_free_heap":1903,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed81710e-05e3-44e1-a23c-3047f2d1a639","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6933a9a-6d1b-4994-bfa9-9e73d1dabd4b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.39400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe334e36-a794-4192-b09e-e456be253ddf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json b/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json index 0a14c952e..4f171251d 100644 --- a/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json +++ b/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json @@ -1 +1 @@ -[{"id":"001a6e52-e9d9-4ad0-af86-a4d5142cb875","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.99200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":124031,"end_time":124044,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0947da85-13ca-48ab-84ff-8a5fc659f1f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:08.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":137674,"utime":9,"cutime":0,"cstime":0,"stime":16,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c3a1df9-b8bc-4ba3-97d7-8284e7d5d950","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2651,"total_pss":24205,"rss":69608,"native_total_heap":22268,"native_free_heap":1434,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31954472-a3a2-4730-85f0-d1e8a3be24dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":14532,"java_free_heap":0,"total_pss":24852,"rss":75512,"native_total_heap":22268,"native_free_heap":950,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33edf9f5-7c4e-4876-b1ce-729039f53055","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33987,"total_pss":45515,"rss":114948,"native_total_heap":23992,"native_free_heap":1038,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3547b7ce-dca1-482d-8c78-a1e9e8401b47","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":140674,"utime":10,"cutime":0,"cstime":0,"stime":17,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e3842ac-4c2e-474a-afd8-6a8fb4f45b9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421d8b17-7bdb-41ab-a4e7-d0b0d86f2cb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.84800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45065b27-34f5-4aec-a47f-c0731b0b630f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.96400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":154949,"end_time":155016,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46ade2bb-f271-4e23-ad18-a84f7a47ca80","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":146675,"utime":14,"cutime":0,"cstime":0,"stime":19,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54ecbd63-7871-4c04-a8b2-be52e97efc2b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34752,"total_pss":29033,"rss":87224,"native_total_heap":22268,"native_free_heap":957,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55e7df52-cd5e-47af-a93e-2224d5e8c596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5632655f-4c73-4661-a3b4-26373d92c7be","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134137,"end_time":134157,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f625784-7f0c-40ec-949a-d50f708d436b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33787,"total_pss":30482,"rss":85636,"native_total_heap":23992,"native_free_heap":1064,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fbf78ee-ed68-48d1-8f0b-791d489066cb","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:03.73600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":132788,"utime":15,"cutime":0,"cstime":0,"stime":27,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"602b17a9-abea-4812-b3d8-cf863aff7536","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:55.29400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":123373,"process_start_requested_uptime":123145,"content_provider_attach_uptime":123644,"on_next_draw_uptime":124345,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63e21faa-2d95-4dc0-b99b-8d8f6d06b251","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34825,"total_pss":24096,"rss":81312,"native_total_heap":22268,"native_free_heap":956,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"645aebc4-6235-417a-93aa-afc42403f5d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2599,"total_pss":20866,"rss":63828,"native_total_heap":22268,"native_free_heap":1418,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64631ca0-a48d-4375-a13c-907c0c172a17","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":134677,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6efdace1-410d-49d2-87ed-cd095c6dca9c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.25200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7028cc2a-1694-450c-90a1-7f8bc2a94114","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":129790,"utime":14,"cutime":0,"cstime":0,"stime":23,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71490771-2818-40b3-9824-347879b6a68d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2495,"total_pss":22056,"rss":70160,"native_total_heap":22268,"native_free_heap":1382,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7213d846-11ee-4a45-8519-f3d174939c72","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:04.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":16672,"java_free_heap":0,"total_pss":44631,"rss":104308,"native_total_heap":33880,"native_free_heap":1575,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d63171-2af2-4789-9382-864ddb796746","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:26.63300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":155685,"utime":17,"cutime":0,"cstime":0,"stime":27,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c1a87d-38bb-4ed0-b4a7-912e6a4e4e3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:20.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":149678,"utime":14,"cutime":0,"cstime":0,"stime":21,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7acd505c-bd18-4516-93fc-872407111800","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.98500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":135787,"end_time":136037,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"806ad69d-3c17-4a6d-9c03-0f1242d71766","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:02.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32679,"total_pss":28685,"rss":91652,"native_total_heap":24504,"native_free_heap":1520,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b69c71a-039b-417d-b6c9-85bfb81e1f06","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.26900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bbf9d25-f1d9-42cd-840a-8e4ae8cec5db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34913,"total_pss":32062,"rss":105036,"native_total_heap":22268,"native_free_heap":993,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"953d1314-15c5-448b-a274-cc288b6d76fb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1651,"total_pss":22492,"rss":70956,"native_total_heap":22268,"native_free_heap":1292,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97e6b0d5-c723-4830-9cc7-dfa1b0fc8f24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2371,"total_pss":21095,"rss":65444,"native_total_heap":22268,"native_free_heap":1329,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991698ee-f49c-4744-84ec-d9f74e8a1a53","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:06.83400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5473"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9930357b-af02-4e31-87f0-67dfddcf32bd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:56.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35320,"total_pss":24919,"rss":85704,"native_total_heap":22268,"native_free_heap":1014,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a7f4c07-e4ad-4eb8-8563-b5e4527bb36f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.87600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144919,"end_time":144928,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac880a50-6c23-475e-a0e2-ecff72de7c26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.85900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144904,"end_time":144911,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3e931b0-f899-40ec-9932-8004e8741bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.54600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":134512,"process_start_requested_uptime":134373,"content_provider_attach_uptime":134614,"on_next_draw_uptime":135568,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcee7111-79f4-42ac-802d-92cec9aa0d10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:13.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34707,"total_pss":23910,"rss":75500,"native_total_heap":22268,"native_free_heap":936,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6a8e60f-9db4-4848-88b2-44922cf14f13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":152673,"utime":15,"cutime":0,"cstime":0,"stime":22,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9dcf233-98b1-47fb-bf19-28a089cd2e43","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.13800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134171,"end_time":134190,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf5a58ad-8096-4a2c-8a5e-fbe8947a7985","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.10000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":136137,"end_time":136152,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26dcdec-9c15-419b-9180-049bda6b4562","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":158675,"utime":18,"cutime":0,"cstime":0,"stime":28,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d409c5a8-0eb1-4b03-898d-adac15f7f417","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1563,"total_pss":23721,"rss":70728,"native_total_heap":22268,"native_free_heap":1261,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d74f47b9-4eb5-42c0-88be-fdf05ac78826","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:14.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":143673,"utime":11,"cutime":0,"cstime":0,"stime":18,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d787b6dd-4e59-43e9-a544-942d6ef73b4f","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.50600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa2bf1f-0505-4180-9d74-13e21877549a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2423,"total_pss":22966,"rss":68768,"native_total_heap":22268,"native_free_heap":1350,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e2457b48-26d3-440e-98f9-b14c7097fc3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.98900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":155031,"end_time":155041,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5172dd0-5c25-4a93-a177-11a51de19407","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185404,"total_pss":26164,"rss":102788,"native_total_heap":11352,"native_free_heap":1172,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4211aa-5adc-40c2-8b80-f7016c4152c1","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.10100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":416.9641,"y":1695.8936,"touch_down_time":127088,"touch_up_time":127143},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f96c4979-598e-4c5b-90fb-61d9bf4b9812","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:57.73500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":126787,"utime":8,"cutime":0,"cstime":0,"stime":12,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcb55a4d-5cfe-46a4-b48a-d8a339283c5a","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.19300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"001a6e52-e9d9-4ad0-af86-a4d5142cb875","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.99200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":124031,"end_time":124044,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0947da85-13ca-48ab-84ff-8a5fc659f1f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:08.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":137674,"utime":9,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c3a1df9-b8bc-4ba3-97d7-8284e7d5d950","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2651,"total_pss":24205,"rss":69608,"native_total_heap":22268,"native_free_heap":1434,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31954472-a3a2-4730-85f0-d1e8a3be24dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":14532,"java_free_heap":0,"total_pss":24852,"rss":75512,"native_total_heap":22268,"native_free_heap":950,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33edf9f5-7c4e-4876-b1ce-729039f53055","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33987,"total_pss":45515,"rss":114948,"native_total_heap":23992,"native_free_heap":1038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3547b7ce-dca1-482d-8c78-a1e9e8401b47","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":140674,"utime":10,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e3842ac-4c2e-474a-afd8-6a8fb4f45b9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421d8b17-7bdb-41ab-a4e7-d0b0d86f2cb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.84800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45065b27-34f5-4aec-a47f-c0731b0b630f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.96400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":154949,"end_time":155016,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46ade2bb-f271-4e23-ad18-a84f7a47ca80","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":146675,"utime":14,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54ecbd63-7871-4c04-a8b2-be52e97efc2b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34752,"total_pss":29033,"rss":87224,"native_total_heap":22268,"native_free_heap":957,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55e7df52-cd5e-47af-a93e-2224d5e8c596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5632655f-4c73-4661-a3b4-26373d92c7be","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134137,"end_time":134157,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f625784-7f0c-40ec-949a-d50f708d436b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33787,"total_pss":30482,"rss":85636,"native_total_heap":23992,"native_free_heap":1064,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fbf78ee-ed68-48d1-8f0b-791d489066cb","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:03.73600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":132788,"utime":15,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"602b17a9-abea-4812-b3d8-cf863aff7536","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:55.29400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":123373,"process_start_requested_uptime":123145,"content_provider_attach_uptime":123644,"on_next_draw_uptime":124345,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63e21faa-2d95-4dc0-b99b-8d8f6d06b251","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34825,"total_pss":24096,"rss":81312,"native_total_heap":22268,"native_free_heap":956,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"645aebc4-6235-417a-93aa-afc42403f5d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2599,"total_pss":20866,"rss":63828,"native_total_heap":22268,"native_free_heap":1418,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64631ca0-a48d-4375-a13c-907c0c172a17","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":134677,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6efdace1-410d-49d2-87ed-cd095c6dca9c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.25200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7028cc2a-1694-450c-90a1-7f8bc2a94114","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":129790,"utime":14,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71490771-2818-40b3-9824-347879b6a68d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2495,"total_pss":22056,"rss":70160,"native_total_heap":22268,"native_free_heap":1382,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7213d846-11ee-4a45-8519-f3d174939c72","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:04.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":16672,"java_free_heap":0,"total_pss":44631,"rss":104308,"native_total_heap":33880,"native_free_heap":1575,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d63171-2af2-4789-9382-864ddb796746","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:26.63300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":155685,"utime":17,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c1a87d-38bb-4ed0-b4a7-912e6a4e4e3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:20.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":149678,"utime":14,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7acd505c-bd18-4516-93fc-872407111800","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.98500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":135787,"end_time":136037,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"806ad69d-3c17-4a6d-9c03-0f1242d71766","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:02.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32679,"total_pss":28685,"rss":91652,"native_total_heap":24504,"native_free_heap":1520,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b69c71a-039b-417d-b6c9-85bfb81e1f06","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.26900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bbf9d25-f1d9-42cd-840a-8e4ae8cec5db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34913,"total_pss":32062,"rss":105036,"native_total_heap":22268,"native_free_heap":993,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"953d1314-15c5-448b-a274-cc288b6d76fb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1651,"total_pss":22492,"rss":70956,"native_total_heap":22268,"native_free_heap":1292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97e6b0d5-c723-4830-9cc7-dfa1b0fc8f24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2371,"total_pss":21095,"rss":65444,"native_total_heap":22268,"native_free_heap":1329,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991698ee-f49c-4744-84ec-d9f74e8a1a53","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:06.83400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5473"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9930357b-af02-4e31-87f0-67dfddcf32bd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:56.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35320,"total_pss":24919,"rss":85704,"native_total_heap":22268,"native_free_heap":1014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a7f4c07-e4ad-4eb8-8563-b5e4527bb36f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.87600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144919,"end_time":144928,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac880a50-6c23-475e-a0e2-ecff72de7c26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.85900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144904,"end_time":144911,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3e931b0-f899-40ec-9932-8004e8741bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.54600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":134512,"process_start_requested_uptime":134373,"content_provider_attach_uptime":134614,"on_next_draw_uptime":135568,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcee7111-79f4-42ac-802d-92cec9aa0d10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:13.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34707,"total_pss":23910,"rss":75500,"native_total_heap":22268,"native_free_heap":936,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6a8e60f-9db4-4848-88b2-44922cf14f13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":152673,"utime":15,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9dcf233-98b1-47fb-bf19-28a089cd2e43","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.13800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134171,"end_time":134190,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf5a58ad-8096-4a2c-8a5e-fbe8947a7985","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.10000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":136137,"end_time":136152,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26dcdec-9c15-419b-9180-049bda6b4562","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":158675,"utime":18,"cutime":0,"cstime":0,"stime":28,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d409c5a8-0eb1-4b03-898d-adac15f7f417","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1563,"total_pss":23721,"rss":70728,"native_total_heap":22268,"native_free_heap":1261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d74f47b9-4eb5-42c0-88be-fdf05ac78826","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:14.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":143673,"utime":11,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d787b6dd-4e59-43e9-a544-942d6ef73b4f","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.50600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa2bf1f-0505-4180-9d74-13e21877549a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2423,"total_pss":22966,"rss":68768,"native_total_heap":22268,"native_free_heap":1350,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e2457b48-26d3-440e-98f9-b14c7097fc3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.98900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":155031,"end_time":155041,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5172dd0-5c25-4a93-a177-11a51de19407","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185404,"total_pss":26164,"rss":102788,"native_total_heap":11352,"native_free_heap":1172,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4211aa-5adc-40c2-8b80-f7016c4152c1","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.10100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":416.9641,"y":1695.8936,"touch_down_time":127088,"touch_up_time":127143},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f96c4979-598e-4c5b-90fb-61d9bf4b9812","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:57.73500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":126787,"utime":8,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcb55a4d-5cfe-46a4-b48a-d8a339283c5a","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.19300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json b/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json index 1b4d3c189..ead00e8b7 100644 --- a/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json +++ b/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json @@ -1 +1 @@ -[{"id":"06a51574-d12a-4261-a27a-9b53c62a126e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:59.05800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35405,"total_pss":50191,"rss":142588,"native_total_heap":22396,"native_free_heap":1061,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"14b6285f-2732-4299-b5ff-525e813b8e8f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5691017,"utime":7,"cutime":0,"cstime":0,"stime":10,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"33d82139-64d9-4ba4-bc33-6f8deb7624d7","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35457,"total_pss":50143,"rss":142588,"native_total_heap":22396,"native_free_heap":1075,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"35c795ab-0e59-477e-bffc-352dbc1d2227","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"44a055be-1f0c-4c53-8f9e-fa706dd7910e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:54.06100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5688019,"utime":5,"cutime":0,"cstime":0,"stime":9,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"56b7c3cc-149c-41aa-9442-ed7e52511977","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.29100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5685204,"end_time":5685248,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"13281","content-type":"multipart/form-data; boundary=baab675c-c7ef-40e4-b37f-cd36596d5e10","host":"10.0.2.2:8080","msr-req-id":"c0aa4d6b-3ee6-46af-a48e-67e783bc94d9","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57807965-f4b4-47c3-b7c7-af226228784c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32630,"rss":140352,"native_total_heap":22396,"native_free_heap":1099,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57e62c86-530c-451a-a9f1-d0012f96b73f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.10500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5685063,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"67dec5f7-e14a-4930-90b5-ca4ce68c3190","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.19100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5684996,"process_start_requested_uptime":5684924,"content_provider_attach_uptime":5685013,"on_next_draw_uptime":5685149,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"74f6201d-1a96-4f02-b6b1-6b4d53537b2e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:55.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35530,"total_pss":49835,"rss":142528,"native_total_heap":22396,"native_free_heap":1050,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9a5ae1bf-c42b-4d0e-9705-1e544599e0d5","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:53.06000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35618,"total_pss":49764,"rss":142324,"native_total_heap":22396,"native_free_heap":1081,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ca4264c3-3814-4b77-8fa8-d6bbb2516273","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f7451de2-7388-4451-97e0-a48b00c57016","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:51.22700000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14672"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"06a51574-d12a-4261-a27a-9b53c62a126e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:59.05800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35405,"total_pss":50191,"rss":142588,"native_total_heap":22396,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"14b6285f-2732-4299-b5ff-525e813b8e8f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5691017,"utime":7,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"33d82139-64d9-4ba4-bc33-6f8deb7624d7","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35457,"total_pss":50143,"rss":142588,"native_total_heap":22396,"native_free_heap":1075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"35c795ab-0e59-477e-bffc-352dbc1d2227","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"44a055be-1f0c-4c53-8f9e-fa706dd7910e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:54.06100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5688019,"utime":5,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"56b7c3cc-149c-41aa-9442-ed7e52511977","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.29100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5685204,"end_time":5685248,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"13281","content-type":"multipart/form-data; boundary=baab675c-c7ef-40e4-b37f-cd36596d5e10","host":"10.0.2.2:8080","msr-req-id":"c0aa4d6b-3ee6-46af-a48e-67e783bc94d9","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57807965-f4b4-47c3-b7c7-af226228784c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32630,"rss":140352,"native_total_heap":22396,"native_free_heap":1099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57e62c86-530c-451a-a9f1-d0012f96b73f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.10500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5685063,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"67dec5f7-e14a-4930-90b5-ca4ce68c3190","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.19100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5684996,"process_start_requested_uptime":5684924,"content_provider_attach_uptime":5685013,"on_next_draw_uptime":5685149,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"74f6201d-1a96-4f02-b6b1-6b4d53537b2e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:55.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35530,"total_pss":49835,"rss":142528,"native_total_heap":22396,"native_free_heap":1050,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9a5ae1bf-c42b-4d0e-9705-1e544599e0d5","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:53.06000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35618,"total_pss":49764,"rss":142324,"native_total_heap":22396,"native_free_heap":1081,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ca4264c3-3814-4b77-8fa8-d6bbb2516273","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f7451de2-7388-4451-97e0-a48b00c57016","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:51.22700000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14672"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json b/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json index f0da0f8a2..d87a44821 100644 --- a/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json +++ b/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json @@ -1 +1 @@ -[{"id":"036fde4d-0a8d-4476-a0d5-46f68b00bcbd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":123791,"utime":2,"cutime":0,"cstime":0,"stime":1,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e6ad906-9805-47c6-ab31-48f696583145","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":22068,"rss":96220,"native_total_heap":11096,"native_free_heap":1237,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"793e310d-8ab5-4917-bcfa-c57a4e033b2b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"addd5a90-25ed-4c97-96ad-a711759b0c5c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.89600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6ac6566-bd96-4d27-b74f-fd60058e34b2","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"036fde4d-0a8d-4476-a0d5-46f68b00bcbd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":123791,"utime":2,"cutime":0,"cstime":0,"stime":1,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e6ad906-9805-47c6-ab31-48f696583145","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":22068,"rss":96220,"native_total_heap":11096,"native_free_heap":1237,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"793e310d-8ab5-4917-bcfa-c57a4e033b2b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"addd5a90-25ed-4c97-96ad-a711759b0c5c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.89600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6ac6566-bd96-4d27-b74f-fd60058e34b2","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json b/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json index 4c4ea9c55..b566a5b23 100644 --- a/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json +++ b/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json @@ -1 +1 @@ -[{"id":"06c2b921-2e92-471b-bdbe-932d73f298fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1147,"total_pss":24552,"rss":76280,"native_total_heap":23548,"native_free_heap":1882,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"089f7166-43b6-4f63-b4f5-b636fdda2b93","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3105,"total_pss":23992,"rss":75736,"native_total_heap":23548,"native_free_heap":2221,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0af832b4-8bf7-43f6-831e-cec298c462f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484906,"end_time":484915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"150b1421-8935-46ba-bdbc-54a5cca55950","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":492228,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1976a0a4-e071-4b79-b598-e817b51118ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":455674,"utime":201,"cutime":0,"cstime":0,"stime":219,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3feafc4e-a206-48ce-b795-f4484efe6e46","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.88700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474933,"end_time":474939,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"452750ed-cee8-4d2f-9f4f-90df859d1a9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2343,"total_pss":24332,"rss":77076,"native_total_heap":23548,"native_free_heap":2143,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f362754-57ff-430f-93f2-4b56cac2bae8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474906,"end_time":474923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fef5ecf-7275-47c5-bf0d-2db2d104545f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1167,"total_pss":24530,"rss":76280,"native_total_heap":23548,"native_free_heap":1903,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"581ebbd9-9199-46d8-a750-4b8f500cf0c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:49.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3317,"total_pss":23919,"rss":75596,"native_total_heap":23548,"native_free_heap":2310,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"586fb977-913e-4e95-90e8-cfe079f8c65b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2043,"total_pss":24517,"rss":77164,"native_total_heap":23548,"native_free_heap":2018,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59214346-6851-4767-be64-1cae2616df03","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1271,"total_pss":25250,"rss":77860,"native_total_heap":23548,"native_free_heap":1935,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b89b08b-292d-4e47-832d-06cf1b8eb8ab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:38.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":467674,"utime":209,"cutime":0,"cstime":0,"stime":226,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d151e02-cc4a-48b7-b274-ee0cf499b706","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":482677,"utime":217,"cutime":0,"cstime":0,"stime":236,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e823fc5-8f68-4f48-8b92-e6498498944c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3141,"total_pss":23972,"rss":75596,"native_total_heap":23548,"native_free_heap":2241,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a7f973e-eda2-4bb8-9665-9f3df471a2ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.86700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464906,"end_time":464919,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e894cd-e495-4013-8659-47c21017ece0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3111,"total_pss":23587,"rss":76508,"native_total_heap":23548,"native_free_heap":2210,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"72adc11f-3f15-4ac7-a3a3-60a694be0fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34812,"total_pss":30721,"rss":85552,"native_total_heap":22268,"native_free_heap":951,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7669ea4a-bba7-44d4-b9a9-db45964ef5d6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2131,"total_pss":24463,"rss":77164,"native_total_heap":23548,"native_free_heap":2059,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7973895d-5622-4aaa-b35e-2dc01a0f1642","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484919,"end_time":484927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7c381122-203c-4ce9-aa3d-14204c831242","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:32.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":461676,"utime":205,"cutime":0,"cstime":0,"stime":221,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ce4746c-fe79-4f6b-a699-57c4407211e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.09400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":535.979,"y":1583.9044,"touch_down_time":497057,"touch_up_time":497122},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80e4bccd-aecc-487a-83fc-c77c9c3de79d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1059,"total_pss":24604,"rss":76280,"native_total_heap":23548,"native_free_heap":1850,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80ee3a75-b17a-4b61-8f7c-7290c9b6be34","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:50.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":479674,"utime":217,"cutime":0,"cstime":0,"stime":235,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86c61823-ade1-4249-b975-5b93187f463d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.62900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":476681,"utime":213,"cutime":0,"cstime":0,"stime":230,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89dd2437-82eb-422f-8960-f04a8b93d29a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3229,"total_pss":23916,"rss":75596,"native_total_heap":23548,"native_free_heap":2273,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a937cc-b8f8-477e-962a-7076f0dfc165","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34900,"total_pss":27522,"rss":86864,"native_total_heap":22268,"native_free_heap":983,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96dddad1-d163-4c41-a7a7-8f94557c50e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:44.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":473676,"utime":211,"cutime":0,"cstime":0,"stime":229,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c9b36f7-1a6a-40e2-8d53-467b6a914358","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:02:03.78500000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5656"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a22ed868-d842-4cc9-b8c6-f7dad06ff9c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.70100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":492062,"process_start_requested_uptime":491451,"content_provider_attach_uptime":492196,"on_next_draw_uptime":492750,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b17022a0-0a12-41bf-b3ce-0bf5b5ffa12c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.52700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492497,"end_time":492578,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9bdd26d-b65c-4bd0-98b1-ec75bcd20a86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb206c54-ed71-473d-9191-d62ec86ce30e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.63900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":323,"total_pss":25432,"rss":77128,"native_total_heap":23548,"native_free_heap":1765,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7642fce-d485-4f9b-9669-0c6b67de52e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:31.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2203,"total_pss":24407,"rss":77076,"native_total_heap":23548,"native_free_heap":2091,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd0f03a4-3b11-47a1-92c5-51144d06d751","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2255,"total_pss":24387,"rss":77076,"native_total_heap":23548,"native_free_heap":2111,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d18c7bc2-9f51-45aa-85b2-e20615cd4b0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.34100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26a714f-b1d2-49a1-b11d-58939a957aa2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":28161,"rss":98520,"native_total_heap":11352,"native_free_heap":1251,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d42f13c9-d0f8-48d2-9c38-08a2d5f12a3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d568b490-bf9a-49c6-9ee4-be68fc3091cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.86500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454907,"end_time":454917,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8c15221-8fba-44d3-a150-9af52612f793","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454922,"end_time":454925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f222e4-e8b8-4585-a23b-8630fdf34709","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":470673,"utime":210,"cutime":0,"cstime":0,"stime":227,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9ac0c74-3258-4eea-bf8a-e3527cf37093","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.88500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464924,"end_time":464937,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea69afb3-ad93-4343-86ac-531414bead50","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":458677,"utime":203,"cutime":0,"cstime":0,"stime":220,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0ba537c-59cb-4058-9810-ac0fa5b36497","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.61900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":452672,"utime":200,"cutime":0,"cstime":0,"stime":217,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f14c16c7-ce68-40ff-9b73-d4ac1dc5758c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:06.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":495231,"utime":9,"cutime":0,"cstime":0,"stime":14,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f167816c-5d04-482b-ac46-7cb90f7b07a2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1343,"total_pss":25205,"rss":77860,"native_total_heap":23548,"native_free_heap":1971,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8b12787-765f-4a14-b621-3faa72c5ea55","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3163,"total_pss":24175,"rss":77700,"native_total_heap":23548,"native_free_heap":2226,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f99e4d0f-cfac-42ed-9589-a22406fac8e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa3c9bc6-4413-46b7-970c-ce000547c715","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.56100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492597,"end_time":492613,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"feafea75-e848-4337-b95a-9f7f1011583e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":464675,"utime":207,"cutime":0,"cstime":0,"stime":223,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"06c2b921-2e92-471b-bdbe-932d73f298fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1147,"total_pss":24552,"rss":76280,"native_total_heap":23548,"native_free_heap":1882,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"089f7166-43b6-4f63-b4f5-b636fdda2b93","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3105,"total_pss":23992,"rss":75736,"native_total_heap":23548,"native_free_heap":2221,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0af832b4-8bf7-43f6-831e-cec298c462f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484906,"end_time":484915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"150b1421-8935-46ba-bdbc-54a5cca55950","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":492228,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1976a0a4-e071-4b79-b598-e817b51118ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":455674,"utime":201,"cutime":0,"cstime":0,"stime":219,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3feafc4e-a206-48ce-b795-f4484efe6e46","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.88700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474933,"end_time":474939,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"452750ed-cee8-4d2f-9f4f-90df859d1a9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2343,"total_pss":24332,"rss":77076,"native_total_heap":23548,"native_free_heap":2143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f362754-57ff-430f-93f2-4b56cac2bae8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474906,"end_time":474923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fef5ecf-7275-47c5-bf0d-2db2d104545f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1167,"total_pss":24530,"rss":76280,"native_total_heap":23548,"native_free_heap":1903,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"581ebbd9-9199-46d8-a750-4b8f500cf0c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:49.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3317,"total_pss":23919,"rss":75596,"native_total_heap":23548,"native_free_heap":2310,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"586fb977-913e-4e95-90e8-cfe079f8c65b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2043,"total_pss":24517,"rss":77164,"native_total_heap":23548,"native_free_heap":2018,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59214346-6851-4767-be64-1cae2616df03","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1271,"total_pss":25250,"rss":77860,"native_total_heap":23548,"native_free_heap":1935,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b89b08b-292d-4e47-832d-06cf1b8eb8ab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:38.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":467674,"utime":209,"cutime":0,"cstime":0,"stime":226,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d151e02-cc4a-48b7-b274-ee0cf499b706","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":482677,"utime":217,"cutime":0,"cstime":0,"stime":236,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e823fc5-8f68-4f48-8b92-e6498498944c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3141,"total_pss":23972,"rss":75596,"native_total_heap":23548,"native_free_heap":2241,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a7f973e-eda2-4bb8-9665-9f3df471a2ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.86700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464906,"end_time":464919,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e894cd-e495-4013-8659-47c21017ece0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3111,"total_pss":23587,"rss":76508,"native_total_heap":23548,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"72adc11f-3f15-4ac7-a3a3-60a694be0fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34812,"total_pss":30721,"rss":85552,"native_total_heap":22268,"native_free_heap":951,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7669ea4a-bba7-44d4-b9a9-db45964ef5d6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2131,"total_pss":24463,"rss":77164,"native_total_heap":23548,"native_free_heap":2059,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7973895d-5622-4aaa-b35e-2dc01a0f1642","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484919,"end_time":484927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7c381122-203c-4ce9-aa3d-14204c831242","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:32.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":461676,"utime":205,"cutime":0,"cstime":0,"stime":221,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ce4746c-fe79-4f6b-a699-57c4407211e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.09400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":535.979,"y":1583.9044,"touch_down_time":497057,"touch_up_time":497122},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80e4bccd-aecc-487a-83fc-c77c9c3de79d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1059,"total_pss":24604,"rss":76280,"native_total_heap":23548,"native_free_heap":1850,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80ee3a75-b17a-4b61-8f7c-7290c9b6be34","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:50.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":479674,"utime":217,"cutime":0,"cstime":0,"stime":235,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86c61823-ade1-4249-b975-5b93187f463d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.62900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":476681,"utime":213,"cutime":0,"cstime":0,"stime":230,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89dd2437-82eb-422f-8960-f04a8b93d29a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3229,"total_pss":23916,"rss":75596,"native_total_heap":23548,"native_free_heap":2273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a937cc-b8f8-477e-962a-7076f0dfc165","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34900,"total_pss":27522,"rss":86864,"native_total_heap":22268,"native_free_heap":983,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96dddad1-d163-4c41-a7a7-8f94557c50e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:44.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":473676,"utime":211,"cutime":0,"cstime":0,"stime":229,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c9b36f7-1a6a-40e2-8d53-467b6a914358","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:02:03.78500000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5656"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a22ed868-d842-4cc9-b8c6-f7dad06ff9c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.70100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":492062,"process_start_requested_uptime":491451,"content_provider_attach_uptime":492196,"on_next_draw_uptime":492750,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b17022a0-0a12-41bf-b3ce-0bf5b5ffa12c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.52700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492497,"end_time":492578,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9bdd26d-b65c-4bd0-98b1-ec75bcd20a86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb206c54-ed71-473d-9191-d62ec86ce30e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.63900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":323,"total_pss":25432,"rss":77128,"native_total_heap":23548,"native_free_heap":1765,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7642fce-d485-4f9b-9669-0c6b67de52e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:31.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2203,"total_pss":24407,"rss":77076,"native_total_heap":23548,"native_free_heap":2091,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd0f03a4-3b11-47a1-92c5-51144d06d751","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2255,"total_pss":24387,"rss":77076,"native_total_heap":23548,"native_free_heap":2111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d18c7bc2-9f51-45aa-85b2-e20615cd4b0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.34100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26a714f-b1d2-49a1-b11d-58939a957aa2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":28161,"rss":98520,"native_total_heap":11352,"native_free_heap":1251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d42f13c9-d0f8-48d2-9c38-08a2d5f12a3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d568b490-bf9a-49c6-9ee4-be68fc3091cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.86500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454907,"end_time":454917,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8c15221-8fba-44d3-a150-9af52612f793","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454922,"end_time":454925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f222e4-e8b8-4585-a23b-8630fdf34709","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":470673,"utime":210,"cutime":0,"cstime":0,"stime":227,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9ac0c74-3258-4eea-bf8a-e3527cf37093","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.88500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464924,"end_time":464937,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea69afb3-ad93-4343-86ac-531414bead50","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":458677,"utime":203,"cutime":0,"cstime":0,"stime":220,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0ba537c-59cb-4058-9810-ac0fa5b36497","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.61900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":452672,"utime":200,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f14c16c7-ce68-40ff-9b73-d4ac1dc5758c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:06.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":495231,"utime":9,"cutime":0,"cstime":0,"stime":14,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f167816c-5d04-482b-ac46-7cb90f7b07a2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1343,"total_pss":25205,"rss":77860,"native_total_heap":23548,"native_free_heap":1971,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8b12787-765f-4a14-b621-3faa72c5ea55","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3163,"total_pss":24175,"rss":77700,"native_total_heap":23548,"native_free_heap":2226,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f99e4d0f-cfac-42ed-9589-a22406fac8e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa3c9bc6-4413-46b7-970c-ce000547c715","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.56100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492597,"end_time":492613,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"feafea75-e848-4337-b95a-9f7f1011583e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":464675,"utime":207,"cutime":0,"cstime":0,"stime":223,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json b/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json index c12ca815f..189358e58 100644 --- a/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json +++ b/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json @@ -1 +1 @@ -[{"id":"012792d0-fa3c-48b9-b822-75970ab82c84","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:07.59200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2960373,"utime":47,"cutime":0,"cstime":0,"stime":47,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"05946601-bfd5-4e33-a89b-13eda0f0e0ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:08.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3722,"total_pss":33615,"rss":106072,"native_total_heap":25016,"native_free_heap":2188,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"08e82d31-4056-43dd-b375-ad5be0ea54c9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.65900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987390,"end_time":2987439,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0b320ce3-b8d3-4dc6-9de8-e0580624a851","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.61400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2977376,"end_time":2977395,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0eec352a-765f-41a3-81e6-cc3fb21ea48c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987553,"end_time":2987562,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1598d97e-1051-4cf8-901f-1cfd23f92b4d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2981370,"utime":59,"cutime":0,"cstime":0,"stime":57,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"167e6ca5-2c49-46f9-9589-4512197529f2","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":933,"total_pss":38738,"rss":116168,"native_total_heap":26040,"native_free_heap":1607,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"18c94390-cb28-40a9-8ef4-338e3911137c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.00400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":null,"start_time":2987725,"end_time":2987784,"failure_reason":"java.net.UnknownHostException","failure_description":"Unable to resolve host \"httpbin.org\": No address associated with hostname","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1cee70bd-ebd7-4669-baef-977f60a9fa0a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2969372,"utime":52,"cutime":0,"cstime":0,"stime":51,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1fab5c4a-589e-485b-99c4-ac4d7fca3781","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3650,"total_pss":33650,"rss":106288,"native_total_heap":25016,"native_free_heap":2157,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"212476c7-f438-4733-80d2-39c8d37fda5f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:31.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2984371,"utime":59,"cutime":0,"cstime":0,"stime":60,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"242ce1c9-f840-48c4-9236-187609165d2f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2975372,"utime":55,"cutime":0,"cstime":0,"stime":54,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"27e1dd4b-b91a-4d51-8f63-86774a80c630","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:32.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2074,"total_pss":34495,"rss":107796,"native_total_heap":25272,"native_free_heap":2057,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"2df8601c-0ffe-419d-9bae-f77dfd57a3e9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1986,"total_pss":34551,"rss":109116,"native_total_heap":25272,"native_free_heap":2018,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"35cd1168-8e96-4212-acd1-a49a66926b1f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:12.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3598,"total_pss":33711,"rss":106288,"native_total_heap":25016,"native_free_heap":2136,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"3bc3fc94-279f-4704-8655-a0f7c4a2fbd8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:30.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2178,"total_pss":34504,"rss":107428,"native_total_heap":25016,"native_free_heap":1831,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"42b9b559-8b26-4498-a3d6-21be120a287b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bac4075-3dbc-42db-9e75-f1b7eb697912","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.64800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2957383,"end_time":2957429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bdfa6ad-649f-40d5-a438-6c161781f4f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:13.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2966371,"utime":50,"cutime":0,"cstime":0,"stime":50,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6221d65e-e289-47a2-9cf0-7e1783522369","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.62300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2967380,"end_time":2967404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"63ee15eb-ae8a-4dbc-9e5f-6e25d4ef4c92","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2802,"total_pss":33964,"rss":106868,"native_total_heap":25016,"native_free_heap":1960,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"65e66a48-50d4-45d5-9b50-82ac06cbf1ec","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6be41a06-ff39-49e3-9c1e-36fdf6269d68","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:25.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2978370,"utime":57,"cutime":0,"cstime":0,"stime":57,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6e4c75bd-3b32-42c8-aaab-9ce9aaefd105","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987727,"utime":65,"cutime":0,"cstime":0,"stime":63,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"77c62f02-1dc6-4eb9-b393-acf88aae1217","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2963371,"utime":48,"cutime":0,"cstime":0,"stime":48,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"79dd0030-8892-4598-8692-4533f7141f98","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.87800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"821d78a7-4845-4fde-b623-be33e9004a6d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.70600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2957369,"on_next_draw_uptime":2957485,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86abe185-0e7b-45da-912c-47e44ca0ed13","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:19.59300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2972373,"utime":54,"cutime":0,"cstime":0,"stime":53,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"99e3573b-de7f-4e90-8f7b-4cb3cc05859b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2214,"total_pss":34476,"rss":107428,"native_total_heap":25016,"native_free_heap":1847,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"a16d04b4-1aca-43c6-b1b7-56570df6fec7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":2987601,"on_next_draw_uptime":2987829,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9271a9-dfcc-4816-a5cd-4796a2cdd3b0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987786,"end_time":2987821,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9fdff6-c32d-4a39-a07a-1e8dd3517731","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.59300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"adde9607-43af-4ed8-902b-2cf6f1965e9f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.59100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2be8fa0-4321-4847-8427-4e4d9d351b37","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3014,"total_pss":34252,"rss":106868,"native_total_heap":25016,"native_free_heap":2044,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b34015b5-4dcf-4ae1-9382-fb5c9339000e","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":442,"total_pss":37161,"rss":112360,"native_total_heap":25016,"native_free_heap":1614,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"bb3a9372-59c3-471a-a438-8b2f074880a4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2957369,"utime":43,"cutime":0,"cstime":0,"stime":45,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be2cd0e4-d13a-4345-900f-2b2d5303ab09","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.70200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be71d5ac-32e0-4d58-97da-a9a28aa2a282","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5b3c992-245c-47ac-a61e-d07f62a7696a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.59300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2526,"total_pss":34234,"rss":107256,"native_total_heap":25016,"native_free_heap":1915,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c6e425f8-9369-4af6-9bf6-e8bf94efc084","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:20.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2890,"total_pss":33916,"rss":106868,"native_total_heap":25016,"native_free_heap":1992,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"cef8483a-3126-4ede-8ce9-16f23c7cf077","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d1818ffa-127f-49c2-8d50-a3d9e584e955","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.95500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d6bc16f2-9d06-4ccf-af72-230d79a9beca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d88b6436-01cd-4971-86d3-07fe95165440","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987371,"utime":62,"cutime":0,"cstime":0,"stime":62,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"e10c5bc8-ac17-4c83-9d9a-8d28c9671093","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:06.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3810,"total_pss":35268,"rss":110064,"native_total_heap":25016,"native_free_heap":2225,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb4392dc-7574-4a0e-ad2b-badaf5ddbe24","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.82000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb85bffd-a57b-430e-ac2e-efd9c876ffad","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:18.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2978,"total_pss":33865,"rss":106868,"native_total_heap":25016,"native_free_heap":2028,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ec754b14-0db6-46f3-9f68-57b22032e497","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.59500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3254,"total_pss":34078,"rss":106868,"native_total_heap":25016,"native_free_heap":2080,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ecfda035-2df6-49d8-ba82-c2dc8b84a03a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:26.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2302,"total_pss":34426,"rss":107428,"native_total_heap":25016,"native_free_heap":1883,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f339c549-8e93-466d-8b19-8e17c32cc63b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.90400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2955654,"end_time":2955684,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"012792d0-fa3c-48b9-b822-75970ab82c84","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:07.59200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2960373,"utime":47,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"05946601-bfd5-4e33-a89b-13eda0f0e0ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:08.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3722,"total_pss":33615,"rss":106072,"native_total_heap":25016,"native_free_heap":2188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"08e82d31-4056-43dd-b375-ad5be0ea54c9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.65900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987390,"end_time":2987439,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0b320ce3-b8d3-4dc6-9de8-e0580624a851","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.61400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2977376,"end_time":2977395,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0eec352a-765f-41a3-81e6-cc3fb21ea48c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987553,"end_time":2987562,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1598d97e-1051-4cf8-901f-1cfd23f92b4d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2981370,"utime":59,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"167e6ca5-2c49-46f9-9589-4512197529f2","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":933,"total_pss":38738,"rss":116168,"native_total_heap":26040,"native_free_heap":1607,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"18c94390-cb28-40a9-8ef4-338e3911137c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.00400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":null,"start_time":2987725,"end_time":2987784,"failure_reason":"java.net.UnknownHostException","failure_description":"Unable to resolve host \"httpbin.org\": No address associated with hostname","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1cee70bd-ebd7-4669-baef-977f60a9fa0a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2969372,"utime":52,"cutime":0,"cstime":0,"stime":51,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1fab5c4a-589e-485b-99c4-ac4d7fca3781","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3650,"total_pss":33650,"rss":106288,"native_total_heap":25016,"native_free_heap":2157,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"212476c7-f438-4733-80d2-39c8d37fda5f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:31.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2984371,"utime":59,"cutime":0,"cstime":0,"stime":60,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"242ce1c9-f840-48c4-9236-187609165d2f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2975372,"utime":55,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"27e1dd4b-b91a-4d51-8f63-86774a80c630","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:32.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2074,"total_pss":34495,"rss":107796,"native_total_heap":25272,"native_free_heap":2057,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"2df8601c-0ffe-419d-9bae-f77dfd57a3e9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1986,"total_pss":34551,"rss":109116,"native_total_heap":25272,"native_free_heap":2018,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"35cd1168-8e96-4212-acd1-a49a66926b1f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:12.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3598,"total_pss":33711,"rss":106288,"native_total_heap":25016,"native_free_heap":2136,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"3bc3fc94-279f-4704-8655-a0f7c4a2fbd8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:30.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2178,"total_pss":34504,"rss":107428,"native_total_heap":25016,"native_free_heap":1831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"42b9b559-8b26-4498-a3d6-21be120a287b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bac4075-3dbc-42db-9e75-f1b7eb697912","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.64800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2957383,"end_time":2957429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bdfa6ad-649f-40d5-a438-6c161781f4f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:13.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2966371,"utime":50,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6221d65e-e289-47a2-9cf0-7e1783522369","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.62300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2967380,"end_time":2967404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"63ee15eb-ae8a-4dbc-9e5f-6e25d4ef4c92","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2802,"total_pss":33964,"rss":106868,"native_total_heap":25016,"native_free_heap":1960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"65e66a48-50d4-45d5-9b50-82ac06cbf1ec","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6be41a06-ff39-49e3-9c1e-36fdf6269d68","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:25.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2978370,"utime":57,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6e4c75bd-3b32-42c8-aaab-9ce9aaefd105","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987727,"utime":65,"cutime":0,"cstime":0,"stime":63,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"77c62f02-1dc6-4eb9-b393-acf88aae1217","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2963371,"utime":48,"cutime":0,"cstime":0,"stime":48,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"79dd0030-8892-4598-8692-4533f7141f98","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.87800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"821d78a7-4845-4fde-b623-be33e9004a6d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.70600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2957369,"on_next_draw_uptime":2957485,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86abe185-0e7b-45da-912c-47e44ca0ed13","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:19.59300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2972373,"utime":54,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"99e3573b-de7f-4e90-8f7b-4cb3cc05859b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2214,"total_pss":34476,"rss":107428,"native_total_heap":25016,"native_free_heap":1847,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"a16d04b4-1aca-43c6-b1b7-56570df6fec7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":2987601,"on_next_draw_uptime":2987829,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9271a9-dfcc-4816-a5cd-4796a2cdd3b0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987786,"end_time":2987821,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9fdff6-c32d-4a39-a07a-1e8dd3517731","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.59300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"adde9607-43af-4ed8-902b-2cf6f1965e9f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.59100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2be8fa0-4321-4847-8427-4e4d9d351b37","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3014,"total_pss":34252,"rss":106868,"native_total_heap":25016,"native_free_heap":2044,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b34015b5-4dcf-4ae1-9382-fb5c9339000e","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":442,"total_pss":37161,"rss":112360,"native_total_heap":25016,"native_free_heap":1614,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"bb3a9372-59c3-471a-a438-8b2f074880a4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2957369,"utime":43,"cutime":0,"cstime":0,"stime":45,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be2cd0e4-d13a-4345-900f-2b2d5303ab09","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.70200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be71d5ac-32e0-4d58-97da-a9a28aa2a282","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5b3c992-245c-47ac-a61e-d07f62a7696a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.59300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2526,"total_pss":34234,"rss":107256,"native_total_heap":25016,"native_free_heap":1915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c6e425f8-9369-4af6-9bf6-e8bf94efc084","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:20.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2890,"total_pss":33916,"rss":106868,"native_total_heap":25016,"native_free_heap":1992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"cef8483a-3126-4ede-8ce9-16f23c7cf077","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d1818ffa-127f-49c2-8d50-a3d9e584e955","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.95500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d6bc16f2-9d06-4ccf-af72-230d79a9beca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d88b6436-01cd-4971-86d3-07fe95165440","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987371,"utime":62,"cutime":0,"cstime":0,"stime":62,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"e10c5bc8-ac17-4c83-9d9a-8d28c9671093","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:06.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3810,"total_pss":35268,"rss":110064,"native_total_heap":25016,"native_free_heap":2225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb4392dc-7574-4a0e-ad2b-badaf5ddbe24","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.82000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb85bffd-a57b-430e-ac2e-efd9c876ffad","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:18.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2978,"total_pss":33865,"rss":106868,"native_total_heap":25016,"native_free_heap":2028,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ec754b14-0db6-46f3-9f68-57b22032e497","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.59500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3254,"total_pss":34078,"rss":106868,"native_total_heap":25016,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ecfda035-2df6-49d8-ba82-c2dc8b84a03a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:26.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2302,"total_pss":34426,"rss":107428,"native_total_heap":25016,"native_free_heap":1883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f339c549-8e93-466d-8b19-8e17c32cc63b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.90400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2955654,"end_time":2955684,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json b/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json index ee700010b..b0ed0a440 100644 --- a/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json +++ b/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json @@ -1 +1 @@ -[{"id":"080cf7c1-f0dd-430c-ac86-c6fa49960ad1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1082,"total_pss":35401,"rss":107640,"native_total_heap":25784,"native_free_heap":2853,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08a245bd-8df4-448b-8199-13323db474df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":903227,"utime":283,"cutime":0,"cstime":0,"stime":316,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c42e6ce-9017-43eb-a1d5-b5438e545414","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":879228,"utime":269,"cutime":0,"cstime":0,"stime":300,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24de27b3-3af5-4c5c-805d-1f4b089d32ce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912416,"end_time":912430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2559a1fc-b146-428d-9e04-4f68239c704f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1206,"total_pss":35321,"rss":107424,"native_total_heap":25784,"native_free_heap":2906,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"269ed032-500a-4a54-8613-4cbdb52aea6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2206,"total_pss":34477,"rss":106652,"native_total_heap":25784,"native_free_heap":3082,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a216550-1b52-4612-a0a3-339e362d8061","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882398,"end_time":882415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2eb2f560-cc5b-4be4-88f8-a48a499e79d7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":242,"total_pss":36170,"rss":108256,"native_total_heap":25784,"native_free_heap":2754,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed05be0-fe2c-40f4-8a7d-70bc5b4ced56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3340,"total_pss":33483,"rss":105632,"native_total_heap":25784,"native_free_heap":3303,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3223e2c1-a4df-4aa7-b8e9-8904448bc2a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":918228,"utime":293,"cutime":0,"cstime":0,"stime":328,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"369fdf16-43f5-4aec-ab6a-c1fa64565526","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912397,"end_time":912409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3fc6f0d6-4f48-4f9c-8fb5-dab10d7ce8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3252,"total_pss":33535,"rss":105844,"native_total_heap":25784,"native_free_heap":3271,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426afcc8-2257-4cf0-a473-4bfc8dcb3216","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2154,"total_pss":34505,"rss":106652,"native_total_heap":25784,"native_free_heap":3061,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"505a3663-9f74-4534-993c-a8c67db1db9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3350,"total_pss":33533,"rss":105676,"native_total_heap":25784,"native_free_heap":3336,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54bf7c9a-5f6a-4817-94e1-cb9a07bde8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3128,"total_pss":33611,"rss":105844,"native_total_heap":25784,"native_free_heap":3219,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61c47685-483b-4050-bdbc-aeb012f3ddb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3050,"total_pss":33713,"rss":105676,"native_total_heap":25784,"native_free_heap":3215,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bfced7c-2926-40fb-b469-ae2ec57bb03e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":885228,"utime":273,"cutime":0,"cstime":0,"stime":305,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"844e0b88-5102-45c4-8fd5-7f49632ff5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2278,"total_pss":34425,"rss":106188,"native_total_heap":25784,"native_free_heap":3114,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84bad7d4-246f-4966-84d3-d83d4e14d802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922399,"end_time":922416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"866e0267-2ca5-4569-89fc-07a04e3ecc95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":876227,"utime":266,"cutime":0,"cstime":0,"stime":298,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9004b2c1-bf45-496a-b1b2-98867a0a29e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2066,"total_pss":34557,"rss":106652,"native_total_heap":25784,"native_free_heap":3030,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ecf81d-5b69-4477-a60c-a7599e32227c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":891228,"utime":275,"cutime":0,"cstime":0,"stime":308,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"944f1f35-9834-4325-82e5-973beaa397a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902397,"end_time":902408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0abb9fb-f30b-41fe-8494-63f73cb1b47f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902416,"end_time":902433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5192f1e-67ba-46a1-ba02-079db8e956bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882423,"end_time":882433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a72068e2-d416-435f-94e4-b6e98caf4365","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3200,"total_pss":33563,"rss":105844,"native_total_heap":25784,"native_free_heap":3255,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa5d6e42-c393-4324-bafe-b0e5ad22ceb8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1294,"total_pss":35269,"rss":107424,"native_total_heap":25784,"native_free_heap":2942,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae517458-3a62-4311-bb80-b5c68e219a97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":314,"total_pss":36122,"rss":108260,"native_total_heap":25784,"native_free_heap":2786,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d1e6c4-7aa6-4a6b-9318-968f637a7757","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":912228,"utime":288,"cutime":0,"cstime":0,"stime":320,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4d982b7-f7f5-4739-93f9-bfe60bb4c0d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":900227,"utime":279,"cutime":0,"cstime":0,"stime":313,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be172cc0-fd71-4a49-9b52-355ada78e542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":894227,"utime":277,"cutime":0,"cstime":0,"stime":310,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"befcb61d-3906-40c0-af99-8fef295e8857","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":190,"total_pss":36194,"rss":108256,"native_total_heap":25784,"native_free_heap":2738,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c327ab24-87ce-4f4b-9558-437847513307","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":906227,"utime":283,"cutime":0,"cstime":0,"stime":317,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c41483e0-e3f9-4080-adff-4202e9934fc9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4248,"total_pss":32698,"rss":104728,"native_total_heap":25784,"native_free_heap":3423,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4c8791b-1f4f-48d9-b5e5-ffb841d8f075","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1346,"total_pss":35241,"rss":107424,"native_total_heap":25784,"native_free_heap":2958,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94d28a8-d721-456d-9bed-c60cf1e07638","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":882228,"utime":270,"cutime":0,"cstime":0,"stime":301,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb4994af-0ddf-4655-938d-54d4870ad041","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:29.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3242,"total_pss":33609,"rss":105676,"native_total_heap":25784,"native_free_heap":3283,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9e7fb2-0dee-4e0f-bd49-b8315a246d0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":888228,"utime":274,"cutime":0,"cstime":0,"stime":305,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce758a05-0224-48c8-8fef-92a6b48f5ee0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4160,"total_pss":32754,"rss":104728,"native_total_heap":25784,"native_free_heap":3391,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf141f73-ee42-4e94-a40b-50197be016a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":915228,"utime":292,"cutime":0,"cstime":0,"stime":326,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfee3ee4-bb5f-4d25-bf10-b54fb4b23d61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892396,"end_time":892409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d15779-1a95-4f83-877c-0212a5e90ba7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892416,"end_time":892420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4d722f6-2157-4f80-aff8-c91c2223d922","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":897228,"utime":279,"cutime":0,"cstime":0,"stime":312,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d501879d-df24-4270-beb4-f27936e0228d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1134,"total_pss":35373,"rss":107424,"native_total_heap":25784,"native_free_heap":2874,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1099939-73a2-44ec-b61c-007873b02a82","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:05.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3412,"total_pss":33435,"rss":105632,"native_total_heap":25784,"native_free_heap":3340,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6f53b93-e362-4d3b-9d01-36181712fd08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:00.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":909232,"utime":286,"cutime":0,"cstime":0,"stime":319,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e91d543a-b529-4e87-afe4-343c7dd1cf93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3138,"total_pss":33661,"rss":105676,"native_total_heap":25784,"native_free_heap":3251,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe7c2c2-33c8-4332-955b-bc1a2dbf15e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":921227,"utime":295,"cutime":0,"cstime":0,"stime":330,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee8b0755-4d04-4fde-83a8-c5118c69578e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2366,"total_pss":34373,"rss":106188,"native_total_heap":25784,"native_free_heap":3150,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f82f9db4-dac7-4579-b67e-4bb558135661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3262,"total_pss":33581,"rss":105676,"native_total_heap":25784,"native_free_heap":3304,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"080cf7c1-f0dd-430c-ac86-c6fa49960ad1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1082,"total_pss":35401,"rss":107640,"native_total_heap":25784,"native_free_heap":2853,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08a245bd-8df4-448b-8199-13323db474df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":903227,"utime":283,"cutime":0,"cstime":0,"stime":316,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c42e6ce-9017-43eb-a1d5-b5438e545414","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":879228,"utime":269,"cutime":0,"cstime":0,"stime":300,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24de27b3-3af5-4c5c-805d-1f4b089d32ce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912416,"end_time":912430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2559a1fc-b146-428d-9e04-4f68239c704f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1206,"total_pss":35321,"rss":107424,"native_total_heap":25784,"native_free_heap":2906,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"269ed032-500a-4a54-8613-4cbdb52aea6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2206,"total_pss":34477,"rss":106652,"native_total_heap":25784,"native_free_heap":3082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a216550-1b52-4612-a0a3-339e362d8061","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882398,"end_time":882415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2eb2f560-cc5b-4be4-88f8-a48a499e79d7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":242,"total_pss":36170,"rss":108256,"native_total_heap":25784,"native_free_heap":2754,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed05be0-fe2c-40f4-8a7d-70bc5b4ced56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3340,"total_pss":33483,"rss":105632,"native_total_heap":25784,"native_free_heap":3303,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3223e2c1-a4df-4aa7-b8e9-8904448bc2a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":918228,"utime":293,"cutime":0,"cstime":0,"stime":328,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"369fdf16-43f5-4aec-ab6a-c1fa64565526","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912397,"end_time":912409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3fc6f0d6-4f48-4f9c-8fb5-dab10d7ce8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3252,"total_pss":33535,"rss":105844,"native_total_heap":25784,"native_free_heap":3271,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426afcc8-2257-4cf0-a473-4bfc8dcb3216","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2154,"total_pss":34505,"rss":106652,"native_total_heap":25784,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"505a3663-9f74-4534-993c-a8c67db1db9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3350,"total_pss":33533,"rss":105676,"native_total_heap":25784,"native_free_heap":3336,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54bf7c9a-5f6a-4817-94e1-cb9a07bde8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3128,"total_pss":33611,"rss":105844,"native_total_heap":25784,"native_free_heap":3219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61c47685-483b-4050-bdbc-aeb012f3ddb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3050,"total_pss":33713,"rss":105676,"native_total_heap":25784,"native_free_heap":3215,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bfced7c-2926-40fb-b469-ae2ec57bb03e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":885228,"utime":273,"cutime":0,"cstime":0,"stime":305,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"844e0b88-5102-45c4-8fd5-7f49632ff5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2278,"total_pss":34425,"rss":106188,"native_total_heap":25784,"native_free_heap":3114,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84bad7d4-246f-4966-84d3-d83d4e14d802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922399,"end_time":922416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"866e0267-2ca5-4569-89fc-07a04e3ecc95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":876227,"utime":266,"cutime":0,"cstime":0,"stime":298,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9004b2c1-bf45-496a-b1b2-98867a0a29e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2066,"total_pss":34557,"rss":106652,"native_total_heap":25784,"native_free_heap":3030,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ecf81d-5b69-4477-a60c-a7599e32227c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":891228,"utime":275,"cutime":0,"cstime":0,"stime":308,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"944f1f35-9834-4325-82e5-973beaa397a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902397,"end_time":902408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0abb9fb-f30b-41fe-8494-63f73cb1b47f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902416,"end_time":902433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5192f1e-67ba-46a1-ba02-079db8e956bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882423,"end_time":882433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a72068e2-d416-435f-94e4-b6e98caf4365","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3200,"total_pss":33563,"rss":105844,"native_total_heap":25784,"native_free_heap":3255,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa5d6e42-c393-4324-bafe-b0e5ad22ceb8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1294,"total_pss":35269,"rss":107424,"native_total_heap":25784,"native_free_heap":2942,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae517458-3a62-4311-bb80-b5c68e219a97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":314,"total_pss":36122,"rss":108260,"native_total_heap":25784,"native_free_heap":2786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d1e6c4-7aa6-4a6b-9318-968f637a7757","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":912228,"utime":288,"cutime":0,"cstime":0,"stime":320,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4d982b7-f7f5-4739-93f9-bfe60bb4c0d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":900227,"utime":279,"cutime":0,"cstime":0,"stime":313,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be172cc0-fd71-4a49-9b52-355ada78e542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":894227,"utime":277,"cutime":0,"cstime":0,"stime":310,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"befcb61d-3906-40c0-af99-8fef295e8857","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":190,"total_pss":36194,"rss":108256,"native_total_heap":25784,"native_free_heap":2738,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c327ab24-87ce-4f4b-9558-437847513307","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":906227,"utime":283,"cutime":0,"cstime":0,"stime":317,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c41483e0-e3f9-4080-adff-4202e9934fc9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4248,"total_pss":32698,"rss":104728,"native_total_heap":25784,"native_free_heap":3423,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4c8791b-1f4f-48d9-b5e5-ffb841d8f075","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1346,"total_pss":35241,"rss":107424,"native_total_heap":25784,"native_free_heap":2958,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94d28a8-d721-456d-9bed-c60cf1e07638","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":882228,"utime":270,"cutime":0,"cstime":0,"stime":301,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb4994af-0ddf-4655-938d-54d4870ad041","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:29.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3242,"total_pss":33609,"rss":105676,"native_total_heap":25784,"native_free_heap":3283,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9e7fb2-0dee-4e0f-bd49-b8315a246d0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":888228,"utime":274,"cutime":0,"cstime":0,"stime":305,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce758a05-0224-48c8-8fef-92a6b48f5ee0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4160,"total_pss":32754,"rss":104728,"native_total_heap":25784,"native_free_heap":3391,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf141f73-ee42-4e94-a40b-50197be016a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":915228,"utime":292,"cutime":0,"cstime":0,"stime":326,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfee3ee4-bb5f-4d25-bf10-b54fb4b23d61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892396,"end_time":892409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d15779-1a95-4f83-877c-0212a5e90ba7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892416,"end_time":892420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4d722f6-2157-4f80-aff8-c91c2223d922","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":897228,"utime":279,"cutime":0,"cstime":0,"stime":312,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d501879d-df24-4270-beb4-f27936e0228d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1134,"total_pss":35373,"rss":107424,"native_total_heap":25784,"native_free_heap":2874,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1099939-73a2-44ec-b61c-007873b02a82","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:05.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3412,"total_pss":33435,"rss":105632,"native_total_heap":25784,"native_free_heap":3340,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6f53b93-e362-4d3b-9d01-36181712fd08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:00.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":909232,"utime":286,"cutime":0,"cstime":0,"stime":319,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e91d543a-b529-4e87-afe4-343c7dd1cf93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3138,"total_pss":33661,"rss":105676,"native_total_heap":25784,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe7c2c2-33c8-4332-955b-bc1a2dbf15e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":921227,"utime":295,"cutime":0,"cstime":0,"stime":330,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee8b0755-4d04-4fde-83a8-c5118c69578e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2366,"total_pss":34373,"rss":106188,"native_total_heap":25784,"native_free_heap":3150,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f82f9db4-dac7-4579-b67e-4bb558135661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3262,"total_pss":33581,"rss":105676,"native_total_heap":25784,"native_free_heap":3304,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json b/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json index 0879da741..793d141db 100644 --- a/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json +++ b/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json @@ -1 +1 @@ -[{"id":"16851054-5929-4d70-a8b4-34b04a58a462","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":186328,"total_pss":53749,"rss":142892,"native_total_heap":11864,"native_free_heap":1316,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"37c7a96d-c281-44b8-a3d7-dc29f35bfa0a","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":79305,"uptime":794439,"utime":31,"cutime":0,"cstime":0,"stime":9,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4ac1dc45-eecc-4ab2-903f-1e22d14a086c","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.90200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"8c27dcd8-18a1-4f1e-8093-5600117a7c36","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:12.04800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file +[{"id":"16851054-5929-4d70-a8b4-34b04a58a462","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":186328,"total_pss":53749,"rss":142892,"native_total_heap":11864,"native_free_heap":1316,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"37c7a96d-c281-44b8-a3d7-dc29f35bfa0a","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":79305,"uptime":794439,"utime":31,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4ac1dc45-eecc-4ab2-903f-1e22d14a086c","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.90200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"8c27dcd8-18a1-4f1e-8093-5600117a7c36","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:12.04800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json b/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json index 18e8acc58..8a54a8cd7 100644 --- a/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json +++ b/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json @@ -1 +1 @@ -[{"id":"066fd9a2-1cba-4f84-ad57-95d253bf6d97","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0bad02d1-8ecf-4243-a066-25975f02bfc7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.78100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5233524,"end_time":5233739,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15242","content-type":"multipart/form-data; boundary=9ba47dfa-34f1-4659-8061-cefbb946c5d9","host":"10.0.2.2:8080","msr-req-id":"d0c21f14-892f-47a7-9c81-dd1e867abab6","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:22 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"117af96b-df2c-4971-add2-5e681f4c0c1a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.19300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":706.9702,"y":1079.9194,"touch_down_time":5233078,"touch_up_time":5233150},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"11af52da-ab81-494d-9087-63ecb070a3b2","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.66000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"166e6c11-ac6b-48f5-8cda-5f8ec60ba60e","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.60900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":563837,"uptime":5638567,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"442d7fcf-bf2f-415b-bac9-bdc949cc961d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6cdf5bfa-919c-400f-8b47-8b3dcfcfedd8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":1787,"total_pss":59156,"rss":146092,"native_total_heap":26680,"native_free_heap":1822,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81e45698-744b-410d-9f26-8de928543bd7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:20.65700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5234615,"utime":93,"cutime":0,"cstime":0,"stime":84,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8530bd80-4cf1-4a84-b116-3079a67b43cc","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"918194b0-2ddd-44ae-a210-e82d90e4e92f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.75900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5231614,"on_next_draw_uptime":5231716,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"99adc4f3-7f51-4b0f-b6cd-4c459787b945","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5230634,"utime":74,"cutime":0,"cstime":0,"stime":55,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a572634f-87a0-416e-a775-be686b974304","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5231616,"utime":76,"cutime":0,"cstime":0,"stime":57,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ac9c2d8a-bad1-40be-b94f-ed6e98455123","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":543,"total_pss":58932,"rss":146936,"native_total_heap":26680,"native_free_heap":2072,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ace6e873-ef82-4a16-b193-daf8a1c992b5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.28800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5231195,"end_time":5231246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54545","content-type":"multipart/form-data; boundary=bff37b3a-a88e-4b9d-9c3e-1b1d91f49839","host":"10.0.2.2:8080","msr-req-id":"a1156417-19b5-4a41-88d1-b1fbef080967","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:19 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ad57dbf0-a5bd-4506-a0d7-87e278d3101a","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.68600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9b5b0c1-8e1c-4f1e-9912-8dae62b2e3e1","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d07a0921-c9ef-44b2-8241-a9d5163a165f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.65700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":62312,"java_free_heap":0,"total_pss":121120,"rss":240428,"native_total_heap":26800,"native_free_heap":1557,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"066fd9a2-1cba-4f84-ad57-95d253bf6d97","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0bad02d1-8ecf-4243-a066-25975f02bfc7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.78100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5233524,"end_time":5233739,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15242","content-type":"multipart/form-data; boundary=9ba47dfa-34f1-4659-8061-cefbb946c5d9","host":"10.0.2.2:8080","msr-req-id":"d0c21f14-892f-47a7-9c81-dd1e867abab6","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:22 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"117af96b-df2c-4971-add2-5e681f4c0c1a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.19300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":706.9702,"y":1079.9194,"touch_down_time":5233078,"touch_up_time":5233150},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"11af52da-ab81-494d-9087-63ecb070a3b2","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.66000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"166e6c11-ac6b-48f5-8cda-5f8ec60ba60e","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.60900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":563837,"uptime":5638567,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"442d7fcf-bf2f-415b-bac9-bdc949cc961d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6cdf5bfa-919c-400f-8b47-8b3dcfcfedd8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":1787,"total_pss":59156,"rss":146092,"native_total_heap":26680,"native_free_heap":1822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81e45698-744b-410d-9f26-8de928543bd7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:20.65700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5234615,"utime":93,"cutime":0,"cstime":0,"stime":84,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8530bd80-4cf1-4a84-b116-3079a67b43cc","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"918194b0-2ddd-44ae-a210-e82d90e4e92f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.75900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5231614,"on_next_draw_uptime":5231716,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"99adc4f3-7f51-4b0f-b6cd-4c459787b945","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5230634,"utime":74,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a572634f-87a0-416e-a775-be686b974304","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5231616,"utime":76,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ac9c2d8a-bad1-40be-b94f-ed6e98455123","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":543,"total_pss":58932,"rss":146936,"native_total_heap":26680,"native_free_heap":2072,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ace6e873-ef82-4a16-b193-daf8a1c992b5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.28800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5231195,"end_time":5231246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54545","content-type":"multipart/form-data; boundary=bff37b3a-a88e-4b9d-9c3e-1b1d91f49839","host":"10.0.2.2:8080","msr-req-id":"a1156417-19b5-4a41-88d1-b1fbef080967","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:19 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ad57dbf0-a5bd-4506-a0d7-87e278d3101a","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.68600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9b5b0c1-8e1c-4f1e-9912-8dae62b2e3e1","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d07a0921-c9ef-44b2-8241-a9d5163a165f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.65700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":62312,"java_free_heap":0,"total_pss":121120,"rss":240428,"native_total_heap":26800,"native_free_heap":1557,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json b/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json index fd40fbef1..062a304a9 100644 --- a/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json +++ b/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json @@ -1 +1 @@ -[{"id":"01655aff-316a-4634-a4c2-159bcc2d71cf","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.77200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c04bdda-cbd5-47b9-b5d1-cee0d7d711ec","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184007,"total_pss":62593,"rss":156192,"native_total_heap":12376,"native_free_heap":1277,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0eca862c-4b4b-4528-b646-3dccd75f5641","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bbcee0-edc3-4839-b85c-84fef0e9e8f7","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.67300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_oom_exception","width":579,"height":132,"x":663.95874,"y":921.9287,"touch_down_time":5109080,"touch_up_time":5109163},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11d6d171-75a9-4941-bd06-b4f15f0cc931","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.26400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5115761,"utime":20,"cutime":0,"cstime":0,"stime":4,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b544928-3a1a-43f7-985e-5bb1408141ed","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:54.09000000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"9955"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e1dcf82-22d7-4cc2-a380-36fa248c68f9","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.36300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511141,"uptime":5111860,"utime":19,"cutime":0,"cstime":0,"stime":1,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33ec8d5c-0fc0-44db-8409-033f6bf699ca","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.91500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5109352,"end_time":5109411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3be61b82-658c-4305-9b31-78f31adc00ca","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.92500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112373,"end_time":5112422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46306504-78be-470c-a8d0-f24fb3ba0776","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.76000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5105621,"process_start_requested_uptime":5105526,"content_provider_attach_uptime":5105908,"on_next_draw_uptime":5106256,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4678da68-84f8-42ca-8630-7cd2e6cf2c11","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.24400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108676,"end_time":5108741,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47c5b3af-b850-4f32-b463-e310cc3328ac","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:02.64300000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10093"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4884e440-ce6d-4d7a-a0cb-5dc79a827bf7","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.34200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527a5ec2-bb9b-4c35-8e54-cebcbe46c24a","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.94200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5102823,"process_start_requested_uptime":5102516,"content_provider_attach_uptime":5103141,"on_next_draw_uptime":5103438,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54e4c7f4-b445-4f0b-b81a-7739f5e545cb","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:56.87800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10004"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"598edadf-cdff-4188-a68d-770a71fe1d21","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f775e2-f1a8-4d41-ac39-2a2918664d20","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:55.14800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5104591,"end_time":5104644,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62cde5ba-baaf-40a4-b5cc-281d42cb305e","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a4c47ba-9b49-4fb3-a287-287ee01482be","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.49000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183846,"total_pss":63390,"rss":169668,"native_total_heap":21616,"native_free_heap":1209,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e673405-2013-4284-8e51-52c389019eee","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f603031-bfb4-4f54-a8a2-4f91acb5b942","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5113662,"end_time":5113944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"714e3f0b-6d31-4f5c-b48b-9dbd66c407c8","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.94300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106407,"end_time":5106440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77a2202e-6daf-4519-a15e-c7a45382d121","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.98800000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5107857,"process_start_requested_uptime":5107775,"content_provider_attach_uptime":5108144,"on_next_draw_uptime":5108484,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c09377-5365-407f-ab3b-a60d222e900a","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.34400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":118423,"java_free_heap":0,"total_pss":208402,"rss":328944,"native_total_heap":33044,"native_free_heap":1504,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d2fab13-afed-4acd-b932-625041367645","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.50900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fca4949-595d-4ee3-8362-27e8971856f4","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.37600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183862,"total_pss":61461,"rss":157504,"native_total_heap":12376,"native_free_heap":1277,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9065bfe5-a312-4f8d-a474-0cd0c8a4623e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92bc1f8d-125a-4dc9-b44c-285e7dc3e10e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:57.34400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":603.9734,"y":819.96643,"touch_down_time":5106768,"touch_up_time":5106839},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94abffe5-d902-49a2-956f-7904a44f9e3d","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.12100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5103577,"end_time":5103618,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"977c266a-5335-4fb5-beea-0e98fc4cab25","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:00.69600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":131386,"java_free_heap":22959,"total_pss":90247,"rss":176228,"native_total_heap":33008,"native_free_heap":2029,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97d9907a-f2dd-4282-87df-1815ece57a22","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bfd4ca9-10bb-4650-b44d-862a218a4ddf","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.52700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636b942-86b1-4155-ab48-b1e14d28b3ee","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112320,"end_time":5112360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac006d37-055d-44d2-9314-a074b8335944","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.87400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad0fcba9-568b-42c9-9a23-14d058e41b2a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.29500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108754,"end_time":5108791,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49209ca-a75b-481a-b435-5f78c3439da4","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510778,"uptime":5108211,"utime":18,"cutime":0,"cstime":0,"stime":2,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccb828f0-581e-42df-a0bf-b4fdfbd65f9a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.86500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfebf211-62fe-440a-a6a1-7504043e8491","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.49800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d04fba65-2041-4845-a8e1-15e0e6d0168e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:59.07800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10051"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d564b24f-da6d-4569-8626-c3bb8caedd00","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.99800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106455,"end_time":5106495,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d67b87bd-76f3-4453-b57f-e13d5d1beb1b","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.46300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510553,"uptime":5105960,"utime":15,"cutime":0,"cstime":0,"stime":4,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df796208-ac6d-4bc3-994d-2383f62b8db7","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:03.40300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":589.9658,"y":1063.9307,"touch_down_time":5112822,"touch_up_time":5112896},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e209a1d7-e80a-47c6-af53-9bfbe02fd6a6","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.63900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5111506,"process_start_requested_uptime":5111410,"content_provider_attach_uptime":5111793,"on_next_draw_uptime":5112135,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e30f2fad-eee4-4ce3-a890-63cd76c3d0a2","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183830,"total_pss":62951,"rss":152704,"native_total_heap":12376,"native_free_heap":1291,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e397b532-289d-4f93-8c25-8b4d1778093e","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e65ff93a-d06e-43ce-bae3-6d6831297739","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.93100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":515.9729,"y":652.9651,"touch_down_time":5104364,"touch_up_time":5104426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0aa084e-4ede-43dd-9f57-bbd0f1638c5b","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.75800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1e7141d-88d3-4eb8-874c-9d872be8216c","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.16500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108593,"end_time":5108662,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f869d9bc-633a-4b96-84c2-29f21f77671e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.97900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112427,"end_time":5112476,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fba46a88-5bae-430a-87bf-f416e93f2187","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.81000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112257,"end_time":5112307,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"01655aff-316a-4634-a4c2-159bcc2d71cf","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.77200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c04bdda-cbd5-47b9-b5d1-cee0d7d711ec","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184007,"total_pss":62593,"rss":156192,"native_total_heap":12376,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0eca862c-4b4b-4528-b646-3dccd75f5641","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bbcee0-edc3-4839-b85c-84fef0e9e8f7","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.67300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_oom_exception","width":579,"height":132,"x":663.95874,"y":921.9287,"touch_down_time":5109080,"touch_up_time":5109163},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11d6d171-75a9-4941-bd06-b4f15f0cc931","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.26400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5115761,"utime":20,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b544928-3a1a-43f7-985e-5bb1408141ed","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:54.09000000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"9955"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e1dcf82-22d7-4cc2-a380-36fa248c68f9","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.36300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511141,"uptime":5111860,"utime":19,"cutime":0,"cstime":0,"stime":1,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33ec8d5c-0fc0-44db-8409-033f6bf699ca","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.91500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5109352,"end_time":5109411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3be61b82-658c-4305-9b31-78f31adc00ca","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.92500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112373,"end_time":5112422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46306504-78be-470c-a8d0-f24fb3ba0776","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.76000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5105621,"process_start_requested_uptime":5105526,"content_provider_attach_uptime":5105908,"on_next_draw_uptime":5106256,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4678da68-84f8-42ca-8630-7cd2e6cf2c11","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.24400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108676,"end_time":5108741,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47c5b3af-b850-4f32-b463-e310cc3328ac","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:02.64300000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10093"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4884e440-ce6d-4d7a-a0cb-5dc79a827bf7","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.34200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527a5ec2-bb9b-4c35-8e54-cebcbe46c24a","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.94200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5102823,"process_start_requested_uptime":5102516,"content_provider_attach_uptime":5103141,"on_next_draw_uptime":5103438,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54e4c7f4-b445-4f0b-b81a-7739f5e545cb","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:56.87800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10004"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"598edadf-cdff-4188-a68d-770a71fe1d21","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f775e2-f1a8-4d41-ac39-2a2918664d20","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:55.14800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5104591,"end_time":5104644,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62cde5ba-baaf-40a4-b5cc-281d42cb305e","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a4c47ba-9b49-4fb3-a287-287ee01482be","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.49000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183846,"total_pss":63390,"rss":169668,"native_total_heap":21616,"native_free_heap":1209,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e673405-2013-4284-8e51-52c389019eee","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f603031-bfb4-4f54-a8a2-4f91acb5b942","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5113662,"end_time":5113944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"714e3f0b-6d31-4f5c-b48b-9dbd66c407c8","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.94300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106407,"end_time":5106440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77a2202e-6daf-4519-a15e-c7a45382d121","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.98800000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5107857,"process_start_requested_uptime":5107775,"content_provider_attach_uptime":5108144,"on_next_draw_uptime":5108484,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c09377-5365-407f-ab3b-a60d222e900a","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.34400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":118423,"java_free_heap":0,"total_pss":208402,"rss":328944,"native_total_heap":33044,"native_free_heap":1504,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d2fab13-afed-4acd-b932-625041367645","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.50900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fca4949-595d-4ee3-8362-27e8971856f4","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.37600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183862,"total_pss":61461,"rss":157504,"native_total_heap":12376,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9065bfe5-a312-4f8d-a474-0cd0c8a4623e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92bc1f8d-125a-4dc9-b44c-285e7dc3e10e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:57.34400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":603.9734,"y":819.96643,"touch_down_time":5106768,"touch_up_time":5106839},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94abffe5-d902-49a2-956f-7904a44f9e3d","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.12100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5103577,"end_time":5103618,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"977c266a-5335-4fb5-beea-0e98fc4cab25","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:00.69600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":131386,"java_free_heap":22959,"total_pss":90247,"rss":176228,"native_total_heap":33008,"native_free_heap":2029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97d9907a-f2dd-4282-87df-1815ece57a22","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bfd4ca9-10bb-4650-b44d-862a218a4ddf","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.52700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636b942-86b1-4155-ab48-b1e14d28b3ee","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112320,"end_time":5112360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac006d37-055d-44d2-9314-a074b8335944","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.87400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad0fcba9-568b-42c9-9a23-14d058e41b2a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.29500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108754,"end_time":5108791,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49209ca-a75b-481a-b435-5f78c3439da4","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510778,"uptime":5108211,"utime":18,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccb828f0-581e-42df-a0bf-b4fdfbd65f9a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.86500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfebf211-62fe-440a-a6a1-7504043e8491","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.49800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d04fba65-2041-4845-a8e1-15e0e6d0168e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:59.07800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10051"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d564b24f-da6d-4569-8626-c3bb8caedd00","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.99800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106455,"end_time":5106495,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d67b87bd-76f3-4453-b57f-e13d5d1beb1b","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.46300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510553,"uptime":5105960,"utime":15,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df796208-ac6d-4bc3-994d-2383f62b8db7","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:03.40300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":589.9658,"y":1063.9307,"touch_down_time":5112822,"touch_up_time":5112896},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e209a1d7-e80a-47c6-af53-9bfbe02fd6a6","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.63900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5111506,"process_start_requested_uptime":5111410,"content_provider_attach_uptime":5111793,"on_next_draw_uptime":5112135,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e30f2fad-eee4-4ce3-a890-63cd76c3d0a2","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183830,"total_pss":62951,"rss":152704,"native_total_heap":12376,"native_free_heap":1291,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e397b532-289d-4f93-8c25-8b4d1778093e","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e65ff93a-d06e-43ce-bae3-6d6831297739","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.93100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":515.9729,"y":652.9651,"touch_down_time":5104364,"touch_up_time":5104426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0aa084e-4ede-43dd-9f57-bbd0f1638c5b","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.75800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1e7141d-88d3-4eb8-874c-9d872be8216c","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.16500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108593,"end_time":5108662,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f869d9bc-633a-4b96-84c2-29f21f77671e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.97900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112427,"end_time":5112476,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fba46a88-5bae-430a-87bf-f416e93f2187","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.81000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112257,"end_time":5112307,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json b/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json index a76dd58a8..6f6a33213 100644 --- a/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json +++ b/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json @@ -1 +1 @@ -[{"id":"02a80328-1e38-419f-8e6c-bff36bebcc06","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.84000000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08efa24f-99b0-406a-a76c-18e2c86d1711","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0c23c583-a10b-45e4-841d-ed7bad6a2283","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":266,"total_pss":38069,"rss":118256,"native_total_heap":24188,"native_free_heap":1470,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1ea317d6-ab7c-499e-9778-afb56a4712bb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.72100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29eb5ccf-a07c-4888-b055-ad91a7fb074d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5673879,"utime":54,"cutime":0,"cstime":0,"stime":40,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2d2609b5-cdc8-4885-81a2-898444d263cd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.92000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":354,"total_pss":38231,"rss":118268,"native_total_heap":24188,"native_free_heap":1499,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2fc2a285-66ca-49df-bc9a-f2832e3ce531","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.49100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5671692,"end_time":5673449,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:41 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"302c9fa1-ac75-4d0f-81ba-66951964068d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.02600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5662900,"end_time":5662984,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41853","content-type":"multipart/form-data; boundary=23d40ff5-6118-4275-a983-e00f09a8597a","host":"10.0.2.2:8080","msr-req-id":"8591c71a-8a60-4773-937e-f0543dc48bb5","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ac70d8b-2ddc-4a18-a399-d4dfbc852bc8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":938,"total_pss":38586,"rss":118180,"native_total_heap":24188,"native_free_heap":1678,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ffc11d0-7741-4d31-874d-a65948c530a0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e94b704-6c47-415b-bcd4-5cbbefd137e2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.55100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7aa097c3-45df-4a32-9fe1-a05b4241ae5d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2281,"total_pss":40314,"rss":122720,"native_total_heap":24700,"native_free_heap":1610,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"80e352cc-b361-445f-9b0a-88eae47f6381","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5664879,"utime":23,"cutime":0,"cstime":0,"stime":21,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"825f0dbb-cef4-4cbc-babf-1c0b050a90d0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:38.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2709,"total_pss":39961,"rss":121960,"native_total_heap":24700,"native_free_heap":1854,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8596842d-720d-4f56-ab88-157849a4e867","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9e470bc4-3626-4dc4-b23c-be4425ee9cf5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.17200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":111.99463,"y":332.98645,"end_x":1032.9675,"end_y":346.94275,"direction":"right","touch_down_time":5666733,"touch_up_time":5667128},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a1b7b324-3c30-4243-959e-924d7c17f498","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5670879,"utime":47,"cutime":0,"cstime":0,"stime":32,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a8953693-0113-470d-bd47-db04084cc5fc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.29200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":492.96753,"y":1370.9015,"end_x":492.96753,"end_y":471.9397,"direction":"up","touch_down_time":5666047,"touch_up_time":5666248},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"aa3ae279-e533-4cb2-947b-6bd538243d90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.33300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"af1909df-e56a-4f94-94a8-a244bac7ee2e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.61600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":492.96753,"y":816.9177,"touch_down_time":5665464,"touch_up_time":5665551},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bc92475b-852a-4a42-b43e-31f8d021a7fe","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.88600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_5","width":null,"height":null,"x":492.96753,"y":1335.943,"touch_down_time":5665759,"touch_up_time":5665838},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cd1331c1-6c78-4128-8ccc-050bbe3b130e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.80300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ce4f67d9-70b2-40e5-9274-815c8899b255","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4022,"total_pss":33117,"rss":110440,"native_total_heap":24188,"native_free_heap":2097,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cfa6623b-3a52-4288-8d9f-dedf772606b5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5667879,"utime":45,"cutime":0,"cstime":0,"stime":30,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"db9bea06-1fbb-484c-b084-d6bd40ec0109","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e59a0224-5e58-4c53-b4a5-64217c77fdbc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.89000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"edc79db2-b29d-45f8-a15d-3483ac76ff33","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":3010,"total_pss":33667,"rss":111696,"native_total_heap":24188,"native_free_heap":2039,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ee84b235-36b1-4583-90e7-bf9bdaf21b2f","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.57800000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fafc6e1a-0003-4901-b365-59ccb76518fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe540f2f-5486-4e0d-996d-92ef7f7edb1c","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.69400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":568.97095,"y":1439.9377,"touch_down_time":5671589,"touch_up_time":5671650},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"02a80328-1e38-419f-8e6c-bff36bebcc06","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.84000000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08efa24f-99b0-406a-a76c-18e2c86d1711","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0c23c583-a10b-45e4-841d-ed7bad6a2283","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":266,"total_pss":38069,"rss":118256,"native_total_heap":24188,"native_free_heap":1470,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1ea317d6-ab7c-499e-9778-afb56a4712bb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.72100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29eb5ccf-a07c-4888-b055-ad91a7fb074d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5673879,"utime":54,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2d2609b5-cdc8-4885-81a2-898444d263cd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.92000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":354,"total_pss":38231,"rss":118268,"native_total_heap":24188,"native_free_heap":1499,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2fc2a285-66ca-49df-bc9a-f2832e3ce531","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.49100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5671692,"end_time":5673449,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:41 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"302c9fa1-ac75-4d0f-81ba-66951964068d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.02600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5662900,"end_time":5662984,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41853","content-type":"multipart/form-data; boundary=23d40ff5-6118-4275-a983-e00f09a8597a","host":"10.0.2.2:8080","msr-req-id":"8591c71a-8a60-4773-937e-f0543dc48bb5","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ac70d8b-2ddc-4a18-a399-d4dfbc852bc8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":938,"total_pss":38586,"rss":118180,"native_total_heap":24188,"native_free_heap":1678,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ffc11d0-7741-4d31-874d-a65948c530a0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e94b704-6c47-415b-bcd4-5cbbefd137e2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.55100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7aa097c3-45df-4a32-9fe1-a05b4241ae5d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2281,"total_pss":40314,"rss":122720,"native_total_heap":24700,"native_free_heap":1610,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"80e352cc-b361-445f-9b0a-88eae47f6381","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5664879,"utime":23,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"825f0dbb-cef4-4cbc-babf-1c0b050a90d0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:38.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2709,"total_pss":39961,"rss":121960,"native_total_heap":24700,"native_free_heap":1854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8596842d-720d-4f56-ab88-157849a4e867","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9e470bc4-3626-4dc4-b23c-be4425ee9cf5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.17200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":111.99463,"y":332.98645,"end_x":1032.9675,"end_y":346.94275,"direction":"right","touch_down_time":5666733,"touch_up_time":5667128},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a1b7b324-3c30-4243-959e-924d7c17f498","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5670879,"utime":47,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a8953693-0113-470d-bd47-db04084cc5fc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.29200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":492.96753,"y":1370.9015,"end_x":492.96753,"end_y":471.9397,"direction":"up","touch_down_time":5666047,"touch_up_time":5666248},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"aa3ae279-e533-4cb2-947b-6bd538243d90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.33300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"af1909df-e56a-4f94-94a8-a244bac7ee2e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.61600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":492.96753,"y":816.9177,"touch_down_time":5665464,"touch_up_time":5665551},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bc92475b-852a-4a42-b43e-31f8d021a7fe","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.88600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_5","width":null,"height":null,"x":492.96753,"y":1335.943,"touch_down_time":5665759,"touch_up_time":5665838},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cd1331c1-6c78-4128-8ccc-050bbe3b130e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.80300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ce4f67d9-70b2-40e5-9274-815c8899b255","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4022,"total_pss":33117,"rss":110440,"native_total_heap":24188,"native_free_heap":2097,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cfa6623b-3a52-4288-8d9f-dedf772606b5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5667879,"utime":45,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"db9bea06-1fbb-484c-b084-d6bd40ec0109","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e59a0224-5e58-4c53-b4a5-64217c77fdbc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.89000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"edc79db2-b29d-45f8-a15d-3483ac76ff33","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":3010,"total_pss":33667,"rss":111696,"native_total_heap":24188,"native_free_heap":2039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ee84b235-36b1-4583-90e7-bf9bdaf21b2f","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.57800000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fafc6e1a-0003-4901-b365-59ccb76518fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe540f2f-5486-4e0d-996d-92ef7f7edb1c","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.69400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":568.97095,"y":1439.9377,"touch_down_time":5671589,"touch_up_time":5671650},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json b/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json index 5f6c6d198..c1a123874 100644 --- a/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json +++ b/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json @@ -1 +1 @@ -[{"id":"0731a7b1-1a36-4fc6-91e6-9a00a43e28e3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":194676,"utime":33,"cutime":0,"cstime":0,"stime":46,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a93ae72-fe71-43e0-94aa-93b088ec7a13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":491,"total_pss":25373,"rss":70760,"native_total_heap":22524,"native_free_heap":1162,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13130612-53a6-4fdc-9f51-cdc80ce60efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":351,"total_pss":23353,"rss":69092,"native_total_heap":22780,"native_free_heap":1137,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f3e7601-f137-4645-ba9e-04724273e2ad","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:01.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1647,"total_pss":24151,"rss":76444,"native_total_heap":23036,"native_free_heap":1732,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20923dd1-e74f-40ba-b70d-bfdfdc96c86b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":164673,"utime":18,"cutime":0,"cstime":0,"stime":31,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"253c04df-fab9-47cb-bcf9-bd3f69759c3c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:44.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":173672,"utime":20,"cutime":0,"cstime":0,"stime":36,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"288904ab-2d5e-425d-a470-54c3f39ccc7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":611,"total_pss":26847,"rss":80256,"native_total_heap":23036,"native_free_heap":1535,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f3befc-beed-43fb-8fad-df0082768fe9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1439,"total_pss":21673,"rss":65724,"native_total_heap":22268,"native_free_heap":1208,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a5ba7f0-451b-4526-8b9e-61520a9d5d6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":200672,"utime":34,"cutime":0,"cstime":0,"stime":53,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b680f50-740c-450c-9081-35f4f5f05c6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184935,"end_time":184942,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ba938eb-ff03-41be-b9c4-991fc6ca0e1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164904,"end_time":164915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cfd7fdc-7e05-49ff-b996-fbac8a6df900","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":455,"total_pss":22765,"rss":67320,"native_total_heap":22780,"native_free_heap":1174,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30ec73ef-3f40-49af-8cb0-2c5e2eb70517","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.89500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194943,"end_time":194947,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"32fbcd84-a3d3-4507-8fa2-541c99d95794","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":699,"total_pss":26780,"rss":80224,"native_total_heap":23036,"native_free_heap":1554,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a11c811-fb13-465f-9728-4f38ea2cada2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2552,"total_pss":26006,"rss":81332,"native_total_heap":23036,"native_free_heap":2107,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"417c1447-8f71-4622-b567-aa6f526808dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:32.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":161673,"utime":18,"cutime":0,"cstime":0,"stime":30,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56dfc989-33d0-4fe7-bf3d-f31bd2747868","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1511,"total_pss":21554,"rss":66008,"native_total_heap":22268,"native_free_heap":1245,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58229cb0-3210-4876-9d72-a3ac2cc443f9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184910,"end_time":184929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5cd08eea-8644-431d-8d88-d002be4c94e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1787,"total_pss":28155,"rss":82036,"native_total_heap":23036,"native_free_heap":1785,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fdd43fb-dbb4-4e24-916f-f1f949398693","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204944,"end_time":204949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e376c4a-7d69-413b-abab-e108e3939015","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2767,"total_pss":25732,"rss":77264,"native_total_heap":22780,"native_free_heap":1676,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6eae90d0-d1e0-4584-8c0b-357692acba1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174907,"end_time":174923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f099de4-385f-4d4c-9d2c-3392eef0014c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2555,"total_pss":23307,"rss":72192,"native_total_heap":22780,"native_free_heap":1592,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fbfab92-5f1a-4ff5-8e62-d80b2905d55a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2607,"total_pss":23354,"rss":72192,"native_total_heap":22780,"native_free_heap":1608,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"750de704-628c-4994-9c32-d63fc6926652","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":176673,"utime":23,"cutime":0,"cstime":0,"stime":37,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fe89463-7939-47f8-bce1-b7dee7458996","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.88200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164925,"end_time":164934,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8acc702b-4123-439a-aeae-010e318979ec","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1351,"total_pss":23984,"rss":68660,"native_total_heap":22268,"native_free_heap":1204,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f452466-19de-42ab-b6e6-7269b024f3dc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":182676,"utime":27,"cutime":0,"cstime":0,"stime":39,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"937889e3-48c0-4f54-b9e1-0b87c2630cfa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2803,"total_pss":26484,"rss":78920,"native_total_heap":22780,"native_free_heap":1692,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab05229c-b734-46d2-bddf-0182db24f9b0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1575,"total_pss":24023,"rss":75436,"native_total_heap":23036,"native_free_heap":1696,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b13f99c1-27cf-4b44-afa9-e01c693ec9cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2663,"total_pss":25782,"rss":77512,"native_total_heap":22780,"native_free_heap":1640,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2967e6c-3e05-4a28-92f2-7452c1ebed01","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":651,"total_pss":22657,"rss":67332,"native_total_heap":22524,"native_free_heap":1199,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a65579-5651-4c73-a76d-7584d64f2bf7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:50.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":179673,"utime":25,"cutime":0,"cstime":0,"stime":38,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5b1444d-5f8b-4c74-a44f-27041ae00f6a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194915,"end_time":194933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb6537e0-9a70-4434-8d07-9223b7171217","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":188672,"utime":31,"cutime":0,"cstime":0,"stime":43,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd5e5a6c-f99b-4978-9a8c-eebe8b73c559","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:02.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":191672,"utime":32,"cutime":0,"cstime":0,"stime":46,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4640442-c913-47ba-91bd-256be9190bae","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":167673,"utime":19,"cutime":0,"cstime":0,"stime":34,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94c169b-796d-45e1-8ee5-c15c99e0fae4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:08.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":197678,"utime":34,"cutime":0,"cstime":0,"stime":51,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb181f37-3b06-4723-b0cc-db8ff7c117d2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174944,"end_time":174954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d29b924c-2c7a-418a-802b-0df01d80adf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204911,"end_time":204936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d80e59fe-44f8-42cf-8438-0d4862017c68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":206673,"utime":39,"cutime":0,"cstime":0,"stime":58,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df49b0ca-58fe-4c35-af6d-73478be27199","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1699,"total_pss":27797,"rss":82188,"native_total_heap":23036,"native_free_heap":1748,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e014bd74-6abc-4f4e-8506-20dfe64391c5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":170673,"utime":20,"cutime":0,"cstime":0,"stime":35,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e0d66ffc-e9ce-455e-85e9-a32577d7d177","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":3320,"total_pss":24226,"rss":78180,"native_total_heap":23036,"native_free_heap":2210,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e55f2d46-a262-4a4b-9818-c401784b39ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:14.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":203676,"utime":37,"cutime":0,"cstime":0,"stime":54,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea33575f-e224-4a80-99cd-a6f125966bee","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":771,"total_pss":26792,"rss":79936,"native_total_heap":23036,"native_free_heap":1595,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eec24718-2b09-437b-9eea-f343d3e8c100","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:56.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":185673,"utime":29,"cutime":0,"cstime":0,"stime":43,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1b8f241-7e07-49a8-8577-d0bca7402525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1487,"total_pss":23959,"rss":76000,"native_total_heap":23036,"native_free_heap":1664,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdffa0a2-6131-4655-b9dd-344a9b2300fe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":575,"total_pss":26515,"rss":80256,"native_total_heap":23036,"native_free_heap":1519,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffb851c8-152d-4d11-bb2c-75b8967bbcab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":563,"total_pss":22650,"rss":67592,"native_total_heap":22524,"native_free_heap":1163,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0731a7b1-1a36-4fc6-91e6-9a00a43e28e3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":194676,"utime":33,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a93ae72-fe71-43e0-94aa-93b088ec7a13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":491,"total_pss":25373,"rss":70760,"native_total_heap":22524,"native_free_heap":1162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13130612-53a6-4fdc-9f51-cdc80ce60efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":351,"total_pss":23353,"rss":69092,"native_total_heap":22780,"native_free_heap":1137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f3e7601-f137-4645-ba9e-04724273e2ad","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:01.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1647,"total_pss":24151,"rss":76444,"native_total_heap":23036,"native_free_heap":1732,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20923dd1-e74f-40ba-b70d-bfdfdc96c86b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":164673,"utime":18,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"253c04df-fab9-47cb-bcf9-bd3f69759c3c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:44.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":173672,"utime":20,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"288904ab-2d5e-425d-a470-54c3f39ccc7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":611,"total_pss":26847,"rss":80256,"native_total_heap":23036,"native_free_heap":1535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f3befc-beed-43fb-8fad-df0082768fe9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1439,"total_pss":21673,"rss":65724,"native_total_heap":22268,"native_free_heap":1208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a5ba7f0-451b-4526-8b9e-61520a9d5d6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":200672,"utime":34,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b680f50-740c-450c-9081-35f4f5f05c6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184935,"end_time":184942,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ba938eb-ff03-41be-b9c4-991fc6ca0e1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164904,"end_time":164915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cfd7fdc-7e05-49ff-b996-fbac8a6df900","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":455,"total_pss":22765,"rss":67320,"native_total_heap":22780,"native_free_heap":1174,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30ec73ef-3f40-49af-8cb0-2c5e2eb70517","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.89500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194943,"end_time":194947,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"32fbcd84-a3d3-4507-8fa2-541c99d95794","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":699,"total_pss":26780,"rss":80224,"native_total_heap":23036,"native_free_heap":1554,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a11c811-fb13-465f-9728-4f38ea2cada2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2552,"total_pss":26006,"rss":81332,"native_total_heap":23036,"native_free_heap":2107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"417c1447-8f71-4622-b567-aa6f526808dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:32.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":161673,"utime":18,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56dfc989-33d0-4fe7-bf3d-f31bd2747868","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1511,"total_pss":21554,"rss":66008,"native_total_heap":22268,"native_free_heap":1245,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58229cb0-3210-4876-9d72-a3ac2cc443f9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184910,"end_time":184929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5cd08eea-8644-431d-8d88-d002be4c94e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1787,"total_pss":28155,"rss":82036,"native_total_heap":23036,"native_free_heap":1785,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fdd43fb-dbb4-4e24-916f-f1f949398693","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204944,"end_time":204949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e376c4a-7d69-413b-abab-e108e3939015","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2767,"total_pss":25732,"rss":77264,"native_total_heap":22780,"native_free_heap":1676,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6eae90d0-d1e0-4584-8c0b-357692acba1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174907,"end_time":174923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f099de4-385f-4d4c-9d2c-3392eef0014c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2555,"total_pss":23307,"rss":72192,"native_total_heap":22780,"native_free_heap":1592,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fbfab92-5f1a-4ff5-8e62-d80b2905d55a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2607,"total_pss":23354,"rss":72192,"native_total_heap":22780,"native_free_heap":1608,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"750de704-628c-4994-9c32-d63fc6926652","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":176673,"utime":23,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fe89463-7939-47f8-bce1-b7dee7458996","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.88200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164925,"end_time":164934,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8acc702b-4123-439a-aeae-010e318979ec","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1351,"total_pss":23984,"rss":68660,"native_total_heap":22268,"native_free_heap":1204,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f452466-19de-42ab-b6e6-7269b024f3dc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":182676,"utime":27,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"937889e3-48c0-4f54-b9e1-0b87c2630cfa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2803,"total_pss":26484,"rss":78920,"native_total_heap":22780,"native_free_heap":1692,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab05229c-b734-46d2-bddf-0182db24f9b0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1575,"total_pss":24023,"rss":75436,"native_total_heap":23036,"native_free_heap":1696,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b13f99c1-27cf-4b44-afa9-e01c693ec9cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2663,"total_pss":25782,"rss":77512,"native_total_heap":22780,"native_free_heap":1640,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2967e6c-3e05-4a28-92f2-7452c1ebed01","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":651,"total_pss":22657,"rss":67332,"native_total_heap":22524,"native_free_heap":1199,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a65579-5651-4c73-a76d-7584d64f2bf7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:50.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":179673,"utime":25,"cutime":0,"cstime":0,"stime":38,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5b1444d-5f8b-4c74-a44f-27041ae00f6a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194915,"end_time":194933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb6537e0-9a70-4434-8d07-9223b7171217","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":188672,"utime":31,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd5e5a6c-f99b-4978-9a8c-eebe8b73c559","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:02.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":191672,"utime":32,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4640442-c913-47ba-91bd-256be9190bae","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":167673,"utime":19,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94c169b-796d-45e1-8ee5-c15c99e0fae4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:08.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":197678,"utime":34,"cutime":0,"cstime":0,"stime":51,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb181f37-3b06-4723-b0cc-db8ff7c117d2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174944,"end_time":174954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d29b924c-2c7a-418a-802b-0df01d80adf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204911,"end_time":204936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d80e59fe-44f8-42cf-8438-0d4862017c68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":206673,"utime":39,"cutime":0,"cstime":0,"stime":58,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df49b0ca-58fe-4c35-af6d-73478be27199","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1699,"total_pss":27797,"rss":82188,"native_total_heap":23036,"native_free_heap":1748,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e014bd74-6abc-4f4e-8506-20dfe64391c5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":170673,"utime":20,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e0d66ffc-e9ce-455e-85e9-a32577d7d177","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":3320,"total_pss":24226,"rss":78180,"native_total_heap":23036,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e55f2d46-a262-4a4b-9818-c401784b39ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:14.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":203676,"utime":37,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea33575f-e224-4a80-99cd-a6f125966bee","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":771,"total_pss":26792,"rss":79936,"native_total_heap":23036,"native_free_heap":1595,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eec24718-2b09-437b-9eea-f343d3e8c100","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:56.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":185673,"utime":29,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1b8f241-7e07-49a8-8577-d0bca7402525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1487,"total_pss":23959,"rss":76000,"native_total_heap":23036,"native_free_heap":1664,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdffa0a2-6131-4655-b9dd-344a9b2300fe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":575,"total_pss":26515,"rss":80256,"native_total_heap":23036,"native_free_heap":1519,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffb851c8-152d-4d11-bb2c-75b8967bbcab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":563,"total_pss":22650,"rss":67592,"native_total_heap":22524,"native_free_heap":1163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json b/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json index 90e33f0c5..ab90a3f85 100644 --- a/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json +++ b/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json @@ -1 +1 @@ -[{"id":"17478d18-1818-46c0-af13-3b0f59a5f94d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bbf354a-04e3-4f48-82c2-33e72d85411d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.36300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2946104,"on_next_draw_uptime":2946143,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24a86f0d-879e-47a8-82fb-d33f6e79d0f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2955103,"utime":42,"cutime":0,"cstime":0,"stime":44,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"28109edb-4f72-4ed5-9de4-979e9dc9ffe6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2946103,"utime":39,"cutime":0,"cstime":0,"stime":40,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b42ffdd-e55a-443b-9150-287d0666eee6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1382,"total_pss":54504,"rss":142256,"native_total_heap":25016,"native_free_heap":1858,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f585750-fa1e-402b-b948-e873027aea53","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:55.34800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1266,"total_pss":54037,"rss":142256,"native_total_heap":25016,"native_free_heap":1849,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4abaacf8-b1a3-4de3-9df7-1bf1a68fa5f9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.25500000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"577d4e06-fece-498f-9d9e-19055f53c914","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.85600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5eaa757d-e5a0-4495-82c9-dbdd288cf12c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f57a04c-61b7-4235-8d66-0b47a3a885ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.82600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86edff7c-791c-4dd7-9ace-f3397b1068b9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.58500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2945345,"end_time":2945366,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"75484","content-type":"multipart/form-data; boundary=f5111e03-6f0b-4a1a-8c50-61dad6408bae","host":"10.0.2.2:8080","msr-req-id":"f936f133-3581-4f2f-bd6d-670ef03b70b0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ab88a3a-b673-4514-8614-3fda0df2bb49","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:56.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2949103,"utime":41,"cutime":0,"cstime":0,"stime":41,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"abf811ca-f92a-4e3b-9d7c-0a473394a8ce","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.32700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2952108,"utime":41,"cutime":0,"cstime":0,"stime":43,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5e71dcf-5677-4d1c-a85f-3950dfd97c30","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.32300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1146,"total_pss":46091,"rss":133524,"native_total_heap":25016,"native_free_heap":1835,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f537ae17-6c70-40ee-ad3c-5ff0f5e2069d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.33200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1058,"total_pss":40920,"rss":123260,"native_total_heap":25016,"native_free_heap":1803,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ffc2456b-96d9-411e-93ca-f93863d5c8f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.32400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1022,"total_pss":40923,"rss":123276,"native_total_heap":25016,"native_free_heap":1787,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"17478d18-1818-46c0-af13-3b0f59a5f94d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bbf354a-04e3-4f48-82c2-33e72d85411d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.36300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2946104,"on_next_draw_uptime":2946143,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24a86f0d-879e-47a8-82fb-d33f6e79d0f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2955103,"utime":42,"cutime":0,"cstime":0,"stime":44,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"28109edb-4f72-4ed5-9de4-979e9dc9ffe6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2946103,"utime":39,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b42ffdd-e55a-443b-9150-287d0666eee6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1382,"total_pss":54504,"rss":142256,"native_total_heap":25016,"native_free_heap":1858,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f585750-fa1e-402b-b948-e873027aea53","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:55.34800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1266,"total_pss":54037,"rss":142256,"native_total_heap":25016,"native_free_heap":1849,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4abaacf8-b1a3-4de3-9df7-1bf1a68fa5f9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.25500000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"577d4e06-fece-498f-9d9e-19055f53c914","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.85600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5eaa757d-e5a0-4495-82c9-dbdd288cf12c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f57a04c-61b7-4235-8d66-0b47a3a885ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.82600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86edff7c-791c-4dd7-9ace-f3397b1068b9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.58500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2945345,"end_time":2945366,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"75484","content-type":"multipart/form-data; boundary=f5111e03-6f0b-4a1a-8c50-61dad6408bae","host":"10.0.2.2:8080","msr-req-id":"f936f133-3581-4f2f-bd6d-670ef03b70b0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ab88a3a-b673-4514-8614-3fda0df2bb49","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:56.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2949103,"utime":41,"cutime":0,"cstime":0,"stime":41,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"abf811ca-f92a-4e3b-9d7c-0a473394a8ce","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.32700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2952108,"utime":41,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5e71dcf-5677-4d1c-a85f-3950dfd97c30","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.32300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1146,"total_pss":46091,"rss":133524,"native_total_heap":25016,"native_free_heap":1835,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f537ae17-6c70-40ee-ad3c-5ff0f5e2069d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.33200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1058,"total_pss":40920,"rss":123260,"native_total_heap":25016,"native_free_heap":1803,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ffc2456b-96d9-411e-93ca-f93863d5c8f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.32400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1022,"total_pss":40923,"rss":123276,"native_total_heap":25016,"native_free_heap":1787,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json b/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json index de638cf61..1aadfc341 100644 --- a/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json +++ b/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json @@ -1 +1 @@ -[{"id":"28c79e9f-863d-4bdb-9d10-dc6b1babd520","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:00.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18906,"java_free_heap":0,"total_pss":52161,"rss":127248,"native_total_heap":24760,"native_free_heap":1343,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319be355-7194-4b80-9c4f-62bc5537ffe9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2835446,"utime":41,"cutime":0,"cstime":0,"stime":55,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44483cf2-a876-425b-a20e-7b51b0d4df77","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.67100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2823121,"process_start_requested_uptime":2822167,"content_provider_attach_uptime":2823381,"on_next_draw_uptime":2824451,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4a2c7ec7-a7cd-4e15-b84b-a5b83b0ce693","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b9c935f-3fbc-4a63-a2af-e3cba96ca9f6","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.19800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"521c34e3-3850-4cf5-9d16-a5c32a83e240","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.38100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56653cf9-7b11-41c9-b761-ede26a610790","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31489,"total_pss":51804,"rss":122816,"native_total_heap":24248,"native_free_heap":1239,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666af9ef-e709-494d-b1dc-440405e9504a","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.13600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69c278dd-9013-4081-8123-c213fe052ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.04700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2823797,"end_time":2823828,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"4204","content-type":"multipart/form-data; boundary=9679516b-c2ef-4012-9142-0d552fecb9f7","host":"10.0.2.2:8080","msr-req-id":"1590899d-3a2e-49ef-aae5-966eac419e80","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:13:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"85222e00-a01b-4315-87ff-059cf25f83cd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:54.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33974,"total_pss":35896,"rss":112812,"native_total_heap":23292,"native_free_heap":1216,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88014927-57ba-4815-b25c-8d57aa803cfb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":636.96533,"y":1726.9226,"touch_down_time":2828670,"touch_up_time":2828806},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88c93e2f-9632-47ab-8bbd-7ebe3149ac36","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35400000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"934809f7-acb1-4848-838a-f0d2c1df2a55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30637,"total_pss":52760,"rss":125868,"native_total_heap":24760,"native_free_heap":1379,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"947995cc-8488-4bb7-b917-5b026e477d33","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2829445,"utime":29,"cutime":0,"cstime":0,"stime":41,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c292a13-bb18-43f9-a82f-b5eac357c924","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:03.30200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a51c9aaa-a126-4b56-94df-f52f4a773970","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":4062,"total_pss":43699,"rss":114072,"native_total_heap":24760,"native_free_heap":2389,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a557e209-f4cb-47b3-8468-c17ae043ec47","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":189.97559,"y":398.974,"touch_down_time":2830028,"touch_up_time":2830130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6073120-2eb5-4afa-9573-f198a7182ae0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.09800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b57f2f2d-0a7d-4a6c-9bcd-8f626c1e967f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d2b97177-4266-47f3-bebc-7d819e938bca","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.33600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4b54f42-200a-4572-ab63-3f077a82e90e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68ed972-ea80-40d7-ac03-eca2f79befe3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2832446,"utime":38,"cutime":0,"cstime":0,"stime":53,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d89216aa-28da-4650-b9f4-a1601416ee55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.99800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3702604-01cc-49a1-b8a5-88e28c3e6953","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:04.11700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9d07ef4-6541-4b6b-a25b-3b5307d72972","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:53.66700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2826447,"utime":18,"cutime":0,"cstime":0,"stime":23,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f62c6d56-7594-4e8e-a12c-7e620a9e474e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:52.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34110,"total_pss":45939,"rss":134828,"native_total_heap":22268,"native_free_heap":992,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"28c79e9f-863d-4bdb-9d10-dc6b1babd520","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:00.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18906,"java_free_heap":0,"total_pss":52161,"rss":127248,"native_total_heap":24760,"native_free_heap":1343,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319be355-7194-4b80-9c4f-62bc5537ffe9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2835446,"utime":41,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44483cf2-a876-425b-a20e-7b51b0d4df77","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.67100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2823121,"process_start_requested_uptime":2822167,"content_provider_attach_uptime":2823381,"on_next_draw_uptime":2824451,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4a2c7ec7-a7cd-4e15-b84b-a5b83b0ce693","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b9c935f-3fbc-4a63-a2af-e3cba96ca9f6","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.19800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"521c34e3-3850-4cf5-9d16-a5c32a83e240","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.38100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56653cf9-7b11-41c9-b761-ede26a610790","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31489,"total_pss":51804,"rss":122816,"native_total_heap":24248,"native_free_heap":1239,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666af9ef-e709-494d-b1dc-440405e9504a","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.13600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69c278dd-9013-4081-8123-c213fe052ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.04700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2823797,"end_time":2823828,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"4204","content-type":"multipart/form-data; boundary=9679516b-c2ef-4012-9142-0d552fecb9f7","host":"10.0.2.2:8080","msr-req-id":"1590899d-3a2e-49ef-aae5-966eac419e80","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:13:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"85222e00-a01b-4315-87ff-059cf25f83cd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:54.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33974,"total_pss":35896,"rss":112812,"native_total_heap":23292,"native_free_heap":1216,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88014927-57ba-4815-b25c-8d57aa803cfb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":636.96533,"y":1726.9226,"touch_down_time":2828670,"touch_up_time":2828806},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88c93e2f-9632-47ab-8bbd-7ebe3149ac36","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35400000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"934809f7-acb1-4848-838a-f0d2c1df2a55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30637,"total_pss":52760,"rss":125868,"native_total_heap":24760,"native_free_heap":1379,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"947995cc-8488-4bb7-b917-5b026e477d33","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2829445,"utime":29,"cutime":0,"cstime":0,"stime":41,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c292a13-bb18-43f9-a82f-b5eac357c924","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:03.30200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a51c9aaa-a126-4b56-94df-f52f4a773970","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":4062,"total_pss":43699,"rss":114072,"native_total_heap":24760,"native_free_heap":2389,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a557e209-f4cb-47b3-8468-c17ae043ec47","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":189.97559,"y":398.974,"touch_down_time":2830028,"touch_up_time":2830130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6073120-2eb5-4afa-9573-f198a7182ae0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.09800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b57f2f2d-0a7d-4a6c-9bcd-8f626c1e967f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d2b97177-4266-47f3-bebc-7d819e938bca","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.33600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4b54f42-200a-4572-ab63-3f077a82e90e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68ed972-ea80-40d7-ac03-eca2f79befe3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2832446,"utime":38,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d89216aa-28da-4650-b9f4-a1601416ee55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.99800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3702604-01cc-49a1-b8a5-88e28c3e6953","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:04.11700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9d07ef4-6541-4b6b-a25b-3b5307d72972","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:53.66700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2826447,"utime":18,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f62c6d56-7594-4e8e-a12c-7e620a9e474e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:52.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34110,"total_pss":45939,"rss":134828,"native_total_heap":22268,"native_free_heap":992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json b/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json index e1bb059ad..6e6efbb5d 100644 --- a/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json +++ b/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json @@ -1 +1 @@ -[{"id":"14ef9db0-eab9-49ad-8276-a36b84cfab2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.88600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5676815,"end_time":5676844,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"33232","content-type":"multipart/form-data; boundary=ce29e7b7-1ab9-4707-acf9-2700b64c6851","host":"10.0.2.2:8080","msr-req-id":"6c2c124e-1691-4d33-92d9-bba77fbe6646","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:45 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4437f328-9f10-4302-a51f-f5d6f1e686a6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5678835,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b022c74c-96bb-4150-a466-36a670cf81fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.86600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e033fa71-a044-46bd-ba3a-c5a881d876cf","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb1dac62-4ad7-4562-bb93-b30b84f4a11f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ecda8f8e-e9a7-4e9c-9598-b0a1fea4bcf2","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"14ef9db0-eab9-49ad-8276-a36b84cfab2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.88600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5676815,"end_time":5676844,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"33232","content-type":"multipart/form-data; boundary=ce29e7b7-1ab9-4707-acf9-2700b64c6851","host":"10.0.2.2:8080","msr-req-id":"6c2c124e-1691-4d33-92d9-bba77fbe6646","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:45 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4437f328-9f10-4302-a51f-f5d6f1e686a6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5678835,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b022c74c-96bb-4150-a466-36a670cf81fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.86600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e033fa71-a044-46bd-ba3a-c5a881d876cf","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb1dac62-4ad7-4562-bb93-b30b84f4a11f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ecda8f8e-e9a7-4e9c-9598-b0a1fea4bcf2","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json b/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json index 994be203d..3ccddadd1 100644 --- a/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json +++ b/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json @@ -12,7 +12,7 @@ "rss": 164572, "native_total_heap": 22524, "native_free_heap": 1259, - "interval_config": 2000 + "interval": 2000 }, "attachments": null, "attribute": { @@ -55,7 +55,7 @@ "rss": 163192, "native_total_heap": 22524, "native_free_heap": 1234, - "interval_config": 2000 + "interval": 2000 }, "attachments": null, "attribute": { @@ -99,7 +99,7 @@ "cutime": 0, "cstime": 0, "stime": 53, - "interval_config": 3000 + "interval": 3000 }, "attachments": null, "attribute": { @@ -142,7 +142,7 @@ "rss": 163568, "native_total_heap": 22780, "native_free_heap": 1194, - "interval_config": 2000 + "interval": 2000 }, "attachments": null, "attribute": { @@ -854,7 +854,7 @@ "cutime": 0, "cstime": 0, "stime": 52, - "interval_config": 3000 + "interval": 3000 }, "attachments": null, "attribute": { @@ -898,7 +898,7 @@ "cutime": 0, "cstime": 0, "stime": 43, - "interval_config": 3000 + "interval": 3000 }, "attachments": null, "attribute": { @@ -942,7 +942,7 @@ "cutime": 0, "cstime": 0, "stime": 48, - "interval_config": 3000 + "interval": 3000 }, "attachments": null, "attribute": { @@ -985,7 +985,7 @@ "rss": 164572, "native_total_heap": 22524, "native_free_heap": 1296, - "interval_config": 2000 + "interval": 2000 }, "attachments": null, "attribute": { @@ -1028,7 +1028,7 @@ "rss": 163468, "native_total_heap": 22524, "native_free_heap": 1185, - "interval_config": 2000 + "interval": 2000 }, "attachments": null, "attribute": { @@ -1071,7 +1071,7 @@ "rss": 163460, "native_total_heap": 22524, "native_free_heap": 1210, - "interval_config": 2000 + "interval": 2000 }, "attachments": null, "attribute": { @@ -1115,7 +1115,7 @@ "cutime": 0, "cstime": 0, "stime": 55, - "interval_config": 3000 + "interval": 3000 }, "attachments": null, "attribute": { @@ -1158,7 +1158,7 @@ "rss": 163200, "native_total_heap": 22524, "native_free_heap": 1213, - "interval_config": 2000 + "interval": 2000 }, "attachments": null, "attribute": { diff --git a/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json b/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json index 032ffc406..84f92510e 100644 --- a/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json +++ b/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json @@ -1 +1 @@ -[{"id":"0b413177-bf1d-4414-803b-413a6365501b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ee00144-1efb-40b1-817b-306ba80a2bd8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:48.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5157730,"utime":48,"cutime":0,"cstime":0,"stime":31,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0fa5e9cf-3194-4b85-bceb-562e3fbb7ed8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16617f70-7b84-4881-b7bc-e2844e5530d4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:28.00700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137475,"end_time":5137504,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ecf24f5-2005-4d2e-a542-5a34a3180de5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22daab6e-733a-4e88-8418-94b46096622c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:40.01800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149464,"end_time":5149515,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"101668","content-type":"multipart/form-data; boundary=bdc16f2a-d0fb-40bc-aebc-ce60f34f186a","host":"10.0.2.2:8080","msr-req-id":"32b1c06f-b023-4a37-b7b0-41fcbacf7e7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2493f8a5-6414-4734-9188-4226e3f8fd57","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:47.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25872,"total_pss":94588,"rss":184776,"native_total_heap":22524,"native_free_heap":938,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"279f73d6-abf3-49b5-a6f3-b9e51499b448","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:41.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26102,"total_pss":93872,"rss":184084,"native_total_heap":22524,"native_free_heap":962,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27cb59c2-abce-4f5d-9f39-1d23b761beda","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.24400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":3308,"total_pss":79341,"rss":164648,"native_total_heap":22524,"native_free_heap":1622,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f2e707-887b-4c71-9e68-cfdf54e6ef9c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.72100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149161,"end_time":5149217,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54086","content-type":"multipart/form-data; boundary=7740e28e-0693-4d06-8a41-291379d243d2","host":"10.0.2.2:8080","msr-req-id":"18629179-ac60-4bec-872a-8a93f923ddf3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f6bb6fc-b794-4e5e-85ea-0d01a38cacd5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:42.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5151730,"utime":44,"cutime":0,"cstime":0,"stime":26,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3577c8f2-b659-4684-afc6-9c0207d6d558","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":23351,"java_free_heap":0,"total_pss":94680,"rss":184988,"native_total_heap":22524,"native_free_heap":914,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa38361-e533-4f4d-be3c-408f3ae91da8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.30900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d1004cf-4f66-4ae9-b920-f44fe1fa810d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5166730,"utime":128,"cutime":0,"cstime":0,"stime":66,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e7d718a-4bd8-4a37-bcd8-57e612863a1c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:39.67500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (37):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at sh.measure.sample.ExceptionDemoActivity.deadLock$lambda$10(ExceptionDemoActivity.kt:66)\n - waiting to lock \u003c0x0b2cc044\u003e (a java.lang.Object) held by thread 38\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$G4MY09CRhRk9ettfD7HPDD_b1n4(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda0.run(D8$$SyntheticClass:0)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10281_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"ConnectivityThread\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp Dispatcher\" prio=5 tid=28 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"queued-work-looper\" prio=5 tid=29 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"OkHttp httpbin.org\" daemon prio=5 tid=30 Native\n native: #00 pc 00000000000a2f54 /apex/com.android.runtime/lib64/bionic/libc.so (recvfrom+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 00000000000298c8 /apex/com.android.art/lib64/libopenjdk.so (NET_Read+80) (BuildId: df8df6b1c275e887f918729a4f22136c)\n native: #02 pc 000000000002a440 /apex/com.android.art/lib64/libopenjdk.so (SocketInputStream_socketRead0+216) (BuildId: df8df6b1c275e887f918729a4f22136c)\n at java.net.SocketInputStream.socketRead0(Native method)\n at java.net.SocketInputStream.socketRead(SocketInputStream.java:118)\n at java.net.SocketInputStream.read(SocketInputStream.java:173)\n at java.net.SocketInputStream.read(SocketInputStream.java:143)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readFromSocket(ConscryptEngineSocket.java:945)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.processDataFromSocket(ConscryptEngineSocket.java:909)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readUntilDataAvailable(ConscryptEngineSocket.java:824)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.read(ConscryptEngineSocket.java:797)\n - locked \u003c0x042b8729\u003e (a java.lang.Object)\n at okio.InputStreamSource.read(JvmOkio.kt:93)\n at okio.AsyncTimeout$source$1.read(AsyncTimeout.kt:153)\n at okio.RealBufferedSource.request(RealBufferedSource.kt:209)\n at okio.RealBufferedSource.require(RealBufferedSource.kt:202)\n at okhttp3.internal.http2.Http2Reader.nextFrame(Http2Reader.kt:89)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:618)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:609)\n at okhttp3.internal.concurrent.TaskQueue$execute$1.runOnce(TaskQueue.kt:98)\n at okhttp3.internal.concurrent.TaskRunner.runTask(TaskRunner.kt:116)\n at okhttp3.internal.concurrent.TaskRunner.access$runTask(TaskRunner.kt:42)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:65)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=31 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=32 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=33 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=34 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=35 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=36 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=37 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"APP: Locker\" prio=5 tid=38 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.sample.ExceptionDemoActivity.sleep(ExceptionDemoActivity.kt:86)\n at sh.measure.sample.ExceptionDemoActivity.access$sleep(ExceptionDemoActivity.kt:12)\n at sh.measure.sample.ExceptionDemoActivity$LockerThread.run(ExceptionDemoActivity.kt:80)\n - locked \u003c0x0b2cc044\u003e (a java.lang.Object)\n\n\"binder:10281_2\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10281 -----\n","process_name":"sh.measure.sample","pid":"10281"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e3aa3e8-aae2-4622-aab5-ce04da5a7a7d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.50900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5148339,"process_start_requested_uptime":5148072,"content_provider_attach_uptime":5148691,"on_next_draw_uptime":5149005,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58605a27-e1a3-48c2-8105-987e77c5e3ae","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":6133,"total_pss":84454,"rss":170756,"native_total_heap":23804,"native_free_heap":2180,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592be39f-b13b-4712-b6df-beae87e43845","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.76400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149224,"end_time":5149260,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"102381","content-type":"multipart/form-data; boundary=6580bf70-6767-4054-a1ba-d3bc1afd9fe9","host":"10.0.2.2:8080","msr-req-id":"13a49afa-ff18-4938-a022-14986f4d282f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b70d378-047d-41e8-8ce3-1037e358260c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.72900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fcfb3c1-a642-490b-8d99-b620f910601b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.14300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":538.9783,"y":1570.8966,"touch_down_time":5168553,"touch_up_time":5168639},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6097bbd2-3cf4-411c-b6dd-cfb2ff4c8c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5154729,"utime":46,"cutime":0,"cstime":0,"stime":29,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65c69192-62f2-40b5-a2b8-8856dd443900","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.23800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5160734,"utime":53,"cutime":0,"cstime":0,"stime":36,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67255aac-ed4f-432a-9827-25526779510f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149333,"end_time":5149370,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"113211","content-type":"multipart/form-data; boundary=cdb54c1c-e52e-4d7c-970e-c55988e4dec7","host":"10.0.2.2:8080","msr-req-id":"d2e30456-6617-42e3-b5ec-560992d829d2","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c02f56b-9ad4-4a53-b349-724e4b2b0bde","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149271,"end_time":5149323,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"105464","content-type":"multipart/form-data; boundary=db0ab44b-0479-4c94-9547-c429a338c9ff","host":"10.0.2.2:8080","msr-req-id":"36e7152a-86ef-44d6-bea7-5cdf1c86bc9f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6da08ceb-7526-46aa-9b94-734e8d5bd106","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d14fc2-e310-4e25-bd74-f27c4916def6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d07c02c-644c-44cf-9e0a-f829885c5c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df5f313-747a-4764-94d6-e5026d96f5c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.03900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"812eb039-cfc9-4eed-8c8b-0817eb7f3865","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.95800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149378,"end_time":5149455,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"100643","content-type":"multipart/form-data; boundary=fb5ce2a7-2648-452d-b1cd-a5f6135582ed","host":"10.0.2.2:8080","msr-req-id":"4bd21812-3dce-4292-826a-fcbac6842045","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"824d180c-62bc-45f9-8f4e-319e44ac2542","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.82700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":444.4281,"y":1610.9363,"end_x":569.9597,"end_y":499.92004,"direction":"up","touch_down_time":5163138,"touch_up_time":5163321},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93e9b78d-9534-4725-86b1-9674d3241ad8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"986a89a2-49d4-469f-889e-eed1b66d70ff","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.08200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af613e2a-a8d6-42da-a6e6-d9fecfbd2d55","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5148752,"utime":20,"cutime":0,"cstime":0,"stime":12,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4499d1c-8922-4461-93ba-bf88002c8b11","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b580adbc-eac7-45b1-8541-0e71c1c05662","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.36000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":577.96875,"y":465.97778,"end_x":577.96875,"end_y":1494.95,"direction":"down","touch_down_time":5163685,"touch_up_time":5163854},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bad55608-637e-47cd-916b-9dd559855dd7","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:52.93600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":558.9514,"y":1590.9503,"touch_down_time":5162379,"touch_up_time":5162424},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf68daac-106e-4080-844e-6efb660728aa","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5163730,"utime":97,"cutime":0,"cstime":0,"stime":50,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6f76545-6e18-4c80-8c05-dcbd34d166b3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":4769,"total_pss":86395,"rss":172768,"native_total_heap":23804,"native_free_heap":1699,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb0c20e7-306d-4d10-a6b3-657d548c3101","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":594,"total_pss":84831,"rss":170588,"native_total_heap":23548,"native_free_heap":1580,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4da5359-0a39-41f2-a06e-91a344c83041","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d817b1e7-5b75-4358-b142-b73f6840d6ce","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183509,"total_pss":63987,"rss":169796,"native_total_heap":21872,"native_free_heap":1203,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfce44da-31aa-4c66-b6dd-599676e302bb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.46100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5158927,"end_time":5158957,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"55644","content-type":"multipart/form-data; boundary=08aef82a-aff9-4a57-a9ad-7304abfc3072","host":"10.0.2.2:8080","msr-req-id":"690139b4-0da0-4776-9555-556124f0dd6b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:49 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e80936ad-b67d-4d97-85ee-7445233191fd","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.01100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea642db3-c18d-48c6-bc1a-f7d53a24aac8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.17200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebfd287f-9360-4e97-906d-bee0a7fabb4d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25924,"total_pss":94544,"rss":184528,"native_total_heap":22524,"native_free_heap":927,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecc410f7-c82c-44d6-9739-d785e02d7a59","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:43.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26030,"total_pss":93952,"rss":184084,"native_total_heap":22524,"native_free_heap":930,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3ffdc8d-6060-4bc2-987b-5ba834eea10f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6b7a31b-d968-405f-8061-bcea98ca4d80","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.16800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f70bbae6-0f22-4a57-982d-d34e06582c6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.96000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":467.98462,"y":1559.9213,"touch_down_time":5166393,"touch_up_time":5166456},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7f5401-57da-45d0-8e32-2dc0624cc6e9","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.02200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0b413177-bf1d-4414-803b-413a6365501b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ee00144-1efb-40b1-817b-306ba80a2bd8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:48.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5157730,"utime":48,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0fa5e9cf-3194-4b85-bceb-562e3fbb7ed8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16617f70-7b84-4881-b7bc-e2844e5530d4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:28.00700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137475,"end_time":5137504,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ecf24f5-2005-4d2e-a542-5a34a3180de5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22daab6e-733a-4e88-8418-94b46096622c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:40.01800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149464,"end_time":5149515,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"101668","content-type":"multipart/form-data; boundary=bdc16f2a-d0fb-40bc-aebc-ce60f34f186a","host":"10.0.2.2:8080","msr-req-id":"32b1c06f-b023-4a37-b7b0-41fcbacf7e7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2493f8a5-6414-4734-9188-4226e3f8fd57","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:47.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25872,"total_pss":94588,"rss":184776,"native_total_heap":22524,"native_free_heap":938,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"279f73d6-abf3-49b5-a6f3-b9e51499b448","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:41.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26102,"total_pss":93872,"rss":184084,"native_total_heap":22524,"native_free_heap":962,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27cb59c2-abce-4f5d-9f39-1d23b761beda","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.24400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":3308,"total_pss":79341,"rss":164648,"native_total_heap":22524,"native_free_heap":1622,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f2e707-887b-4c71-9e68-cfdf54e6ef9c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.72100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149161,"end_time":5149217,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54086","content-type":"multipart/form-data; boundary=7740e28e-0693-4d06-8a41-291379d243d2","host":"10.0.2.2:8080","msr-req-id":"18629179-ac60-4bec-872a-8a93f923ddf3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f6bb6fc-b794-4e5e-85ea-0d01a38cacd5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:42.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5151730,"utime":44,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3577c8f2-b659-4684-afc6-9c0207d6d558","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":23351,"java_free_heap":0,"total_pss":94680,"rss":184988,"native_total_heap":22524,"native_free_heap":914,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa38361-e533-4f4d-be3c-408f3ae91da8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.30900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d1004cf-4f66-4ae9-b920-f44fe1fa810d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5166730,"utime":128,"cutime":0,"cstime":0,"stime":66,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e7d718a-4bd8-4a37-bcd8-57e612863a1c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:39.67500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (37):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at sh.measure.sample.ExceptionDemoActivity.deadLock$lambda$10(ExceptionDemoActivity.kt:66)\n - waiting to lock \u003c0x0b2cc044\u003e (a java.lang.Object) held by thread 38\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$G4MY09CRhRk9ettfD7HPDD_b1n4(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda0.run(D8$$SyntheticClass:0)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10281_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"ConnectivityThread\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp Dispatcher\" prio=5 tid=28 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"queued-work-looper\" prio=5 tid=29 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"OkHttp httpbin.org\" daemon prio=5 tid=30 Native\n native: #00 pc 00000000000a2f54 /apex/com.android.runtime/lib64/bionic/libc.so (recvfrom+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 00000000000298c8 /apex/com.android.art/lib64/libopenjdk.so (NET_Read+80) (BuildId: df8df6b1c275e887f918729a4f22136c)\n native: #02 pc 000000000002a440 /apex/com.android.art/lib64/libopenjdk.so (SocketInputStream_socketRead0+216) (BuildId: df8df6b1c275e887f918729a4f22136c)\n at java.net.SocketInputStream.socketRead0(Native method)\n at java.net.SocketInputStream.socketRead(SocketInputStream.java:118)\n at java.net.SocketInputStream.read(SocketInputStream.java:173)\n at java.net.SocketInputStream.read(SocketInputStream.java:143)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readFromSocket(ConscryptEngineSocket.java:945)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.processDataFromSocket(ConscryptEngineSocket.java:909)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readUntilDataAvailable(ConscryptEngineSocket.java:824)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.read(ConscryptEngineSocket.java:797)\n - locked \u003c0x042b8729\u003e (a java.lang.Object)\n at okio.InputStreamSource.read(JvmOkio.kt:93)\n at okio.AsyncTimeout$source$1.read(AsyncTimeout.kt:153)\n at okio.RealBufferedSource.request(RealBufferedSource.kt:209)\n at okio.RealBufferedSource.require(RealBufferedSource.kt:202)\n at okhttp3.internal.http2.Http2Reader.nextFrame(Http2Reader.kt:89)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:618)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:609)\n at okhttp3.internal.concurrent.TaskQueue$execute$1.runOnce(TaskQueue.kt:98)\n at okhttp3.internal.concurrent.TaskRunner.runTask(TaskRunner.kt:116)\n at okhttp3.internal.concurrent.TaskRunner.access$runTask(TaskRunner.kt:42)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:65)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=31 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=32 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=33 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=34 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=35 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=36 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=37 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"APP: Locker\" prio=5 tid=38 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.sample.ExceptionDemoActivity.sleep(ExceptionDemoActivity.kt:86)\n at sh.measure.sample.ExceptionDemoActivity.access$sleep(ExceptionDemoActivity.kt:12)\n at sh.measure.sample.ExceptionDemoActivity$LockerThread.run(ExceptionDemoActivity.kt:80)\n - locked \u003c0x0b2cc044\u003e (a java.lang.Object)\n\n\"binder:10281_2\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10281 -----\n","process_name":"sh.measure.sample","pid":"10281"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e3aa3e8-aae2-4622-aab5-ce04da5a7a7d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.50900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5148339,"process_start_requested_uptime":5148072,"content_provider_attach_uptime":5148691,"on_next_draw_uptime":5149005,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58605a27-e1a3-48c2-8105-987e77c5e3ae","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":6133,"total_pss":84454,"rss":170756,"native_total_heap":23804,"native_free_heap":2180,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592be39f-b13b-4712-b6df-beae87e43845","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.76400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149224,"end_time":5149260,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"102381","content-type":"multipart/form-data; boundary=6580bf70-6767-4054-a1ba-d3bc1afd9fe9","host":"10.0.2.2:8080","msr-req-id":"13a49afa-ff18-4938-a022-14986f4d282f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b70d378-047d-41e8-8ce3-1037e358260c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.72900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fcfb3c1-a642-490b-8d99-b620f910601b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.14300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":538.9783,"y":1570.8966,"touch_down_time":5168553,"touch_up_time":5168639},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6097bbd2-3cf4-411c-b6dd-cfb2ff4c8c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5154729,"utime":46,"cutime":0,"cstime":0,"stime":29,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65c69192-62f2-40b5-a2b8-8856dd443900","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.23800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5160734,"utime":53,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67255aac-ed4f-432a-9827-25526779510f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149333,"end_time":5149370,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"113211","content-type":"multipart/form-data; boundary=cdb54c1c-e52e-4d7c-970e-c55988e4dec7","host":"10.0.2.2:8080","msr-req-id":"d2e30456-6617-42e3-b5ec-560992d829d2","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c02f56b-9ad4-4a53-b349-724e4b2b0bde","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149271,"end_time":5149323,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"105464","content-type":"multipart/form-data; boundary=db0ab44b-0479-4c94-9547-c429a338c9ff","host":"10.0.2.2:8080","msr-req-id":"36e7152a-86ef-44d6-bea7-5cdf1c86bc9f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6da08ceb-7526-46aa-9b94-734e8d5bd106","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d14fc2-e310-4e25-bd74-f27c4916def6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d07c02c-644c-44cf-9e0a-f829885c5c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df5f313-747a-4764-94d6-e5026d96f5c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.03900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"812eb039-cfc9-4eed-8c8b-0817eb7f3865","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.95800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149378,"end_time":5149455,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"100643","content-type":"multipart/form-data; boundary=fb5ce2a7-2648-452d-b1cd-a5f6135582ed","host":"10.0.2.2:8080","msr-req-id":"4bd21812-3dce-4292-826a-fcbac6842045","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"824d180c-62bc-45f9-8f4e-319e44ac2542","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.82700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":444.4281,"y":1610.9363,"end_x":569.9597,"end_y":499.92004,"direction":"up","touch_down_time":5163138,"touch_up_time":5163321},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93e9b78d-9534-4725-86b1-9674d3241ad8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"986a89a2-49d4-469f-889e-eed1b66d70ff","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.08200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af613e2a-a8d6-42da-a6e6-d9fecfbd2d55","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5148752,"utime":20,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4499d1c-8922-4461-93ba-bf88002c8b11","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b580adbc-eac7-45b1-8541-0e71c1c05662","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.36000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":577.96875,"y":465.97778,"end_x":577.96875,"end_y":1494.95,"direction":"down","touch_down_time":5163685,"touch_up_time":5163854},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bad55608-637e-47cd-916b-9dd559855dd7","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:52.93600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":558.9514,"y":1590.9503,"touch_down_time":5162379,"touch_up_time":5162424},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf68daac-106e-4080-844e-6efb660728aa","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5163730,"utime":97,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6f76545-6e18-4c80-8c05-dcbd34d166b3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":4769,"total_pss":86395,"rss":172768,"native_total_heap":23804,"native_free_heap":1699,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb0c20e7-306d-4d10-a6b3-657d548c3101","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":594,"total_pss":84831,"rss":170588,"native_total_heap":23548,"native_free_heap":1580,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4da5359-0a39-41f2-a06e-91a344c83041","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d817b1e7-5b75-4358-b142-b73f6840d6ce","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183509,"total_pss":63987,"rss":169796,"native_total_heap":21872,"native_free_heap":1203,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfce44da-31aa-4c66-b6dd-599676e302bb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.46100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5158927,"end_time":5158957,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"55644","content-type":"multipart/form-data; boundary=08aef82a-aff9-4a57-a9ad-7304abfc3072","host":"10.0.2.2:8080","msr-req-id":"690139b4-0da0-4776-9555-556124f0dd6b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:49 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e80936ad-b67d-4d97-85ee-7445233191fd","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.01100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea642db3-c18d-48c6-bc1a-f7d53a24aac8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.17200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebfd287f-9360-4e97-906d-bee0a7fabb4d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25924,"total_pss":94544,"rss":184528,"native_total_heap":22524,"native_free_heap":927,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecc410f7-c82c-44d6-9739-d785e02d7a59","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:43.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26030,"total_pss":93952,"rss":184084,"native_total_heap":22524,"native_free_heap":930,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3ffdc8d-6060-4bc2-987b-5ba834eea10f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6b7a31b-d968-405f-8061-bcea98ca4d80","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.16800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f70bbae6-0f22-4a57-982d-d34e06582c6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.96000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":467.98462,"y":1559.9213,"touch_down_time":5166393,"touch_up_time":5166456},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7f5401-57da-45d0-8e32-2dc0624cc6e9","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.02200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json b/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json index faefb2248..bd4f43350 100644 --- a/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json +++ b/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json @@ -1 +1 @@ -[{"id":"1111557b-2860-4bbe-8a3c-2904b401259a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.93500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4226,"total_pss":35199,"rss":112240,"native_total_heap":24188,"native_free_heap":2200,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"12e7e4d7-4aed-41ef-8b1f-a16051e812c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.02500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5645841,"process_start_requested_uptime":5645770,"content_provider_attach_uptime":5645853,"on_next_draw_uptime":5645983,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1b95f7c3-1048-4dfd-925a-979a246493a8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.93400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5645892,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"25b950b1-91c3-491a-907c-fb84b11923b8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35586,"total_pss":48720,"rss":142044,"native_total_heap":22396,"native_free_heap":1061,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29a69306-6c75-4e2e-8e2b-5212d57932c0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.92700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5658885,"utime":20,"cutime":0,"cstime":0,"stime":18,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2e76443f-9e28-4e03-9196-73c3d41ead28","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.85000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"31131059-97c1-4a93-b332-95b56f78aadd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:20.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33401,"total_pss":42312,"rss":121872,"native_total_heap":24188,"native_free_heap":1325,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ecfa79f-e3a0-47bd-818f-ffdadcb157cb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41148d6a-f6a5-4355-8598-53ddcf7ad476","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e1a5b23-1a7f-406a-beb5-2c5bdfb00e81","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5a6a5d3d-964b-4cdf-bf62-e43988ee9431","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"619f60ec-0df1-46c3-8643-01ca67b70888","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35433,"total_pss":46091,"rss":143612,"native_total_heap":22652,"native_free_heap":1232,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"71d1fa9e-d0e5-4494-aff4-eac7d784835b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5649371,"utime":6,"cutime":0,"cstime":0,"stime":8,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"759e3bc2-0c69-4696-804b-1456d6a89f90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.09300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5646019,"end_time":5646051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12012","content-type":"multipart/form-data; boundary=3ce6d5ea-fe4d-476c-abbd-1ce97133acfc","host":"10.0.2.2:8080","msr-req-id":"8847c7a3-09ab-488b-aab1-94d1cf86427f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"77741e07-a53a-453f-8ab9-7de58388f262","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7e484a92-22db-4eda-94ab-0b24c681db26","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.75100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":561.9507,"y":1612.901,"touch_down_time":5650619,"touch_up_time":5650708},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81838aa5-c6bf-4773-b4c7-6a46bc53e05d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:26.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4126,"total_pss":33279,"rss":109440,"native_total_heap":24188,"native_free_heap":2168,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"857ee389-db23-4072-abe2-f509eaade449","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"92d0de93-ff2d-4ffa-b4ad-1606014c6e11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.96200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5652878,"on_next_draw_uptime":5652920,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9eac2bfa-22b7-472f-9026-f7edb9b1ceea","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.41400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5652372,"utime":17,"cutime":0,"cstime":0,"stime":16,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a0b53ad0-9434-47eb-8c52-1a4db2076a1e","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:12.05800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14450"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a124512c-dba7-40a4-87c5-5f73e351cfe2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:25.47000000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2a496c1-5aa6-493e-b834-fdd19e63ccb5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.42100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a32cd081-333f-48da-aee9-f5538985dd52","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:27.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5661879,"utime":21,"cutime":0,"cstime":0,"stime":19,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a65970f6-fda7-401e-aa0d-c4b8bbd034c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.74200000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"acded69d-660f-4caa-bca0-052d6abe41a4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:22.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4314,"total_pss":35617,"rss":112012,"native_total_heap":24188,"native_free_heap":2236,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2b5c96f-eb95-4aaa-93a7-64a3830aa506","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.34600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c3497d2b-feeb-49a5-a874-132138ef6398","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.50400000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5649370,"on_next_draw_uptime":5649460,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d21ee23b-1c6a-4685-b094-c5cd0cba6c6a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dc079d59-b8c3-4375-ab14-12ea069c1e36","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e384386f-f116-4cdd-95fe-ddf1eb0d0172","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.39500000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e4411497-a606-417e-b4c0-bced218dae2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33469,"total_pss":43214,"rss":121884,"native_total_heap":24188,"native_free_heap":1318,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e8b50b52-90f8-4e47-bc79-216bfb2b24ff","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.41200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33683,"total_pss":48587,"rss":130168,"native_total_heap":24188,"native_free_heap":1320,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ec8ee256-78d5-4c9a-bd5f-674f3a1346ad","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ef41ea88-1e53-4c6c-aacf-715acd5aaf03","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f13241ac-6270-4e8d-9905-54bfddc4e136","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:21.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5655879,"utime":18,"cutime":0,"cstime":0,"stime":18,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f21944d3-ecdb-4e26-9276-e3b2df83886b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.95200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":34087,"rss":139540,"native_total_heap":22396,"native_free_heap":1076,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f244ac21-aa15-4957-85e9-c8b31957ac90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ffc250e6-9039-46fd-a26e-1041e54faa11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.83900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"1111557b-2860-4bbe-8a3c-2904b401259a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.93500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4226,"total_pss":35199,"rss":112240,"native_total_heap":24188,"native_free_heap":2200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"12e7e4d7-4aed-41ef-8b1f-a16051e812c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.02500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5645841,"process_start_requested_uptime":5645770,"content_provider_attach_uptime":5645853,"on_next_draw_uptime":5645983,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1b95f7c3-1048-4dfd-925a-979a246493a8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.93400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5645892,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"25b950b1-91c3-491a-907c-fb84b11923b8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35586,"total_pss":48720,"rss":142044,"native_total_heap":22396,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29a69306-6c75-4e2e-8e2b-5212d57932c0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.92700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5658885,"utime":20,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2e76443f-9e28-4e03-9196-73c3d41ead28","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.85000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"31131059-97c1-4a93-b332-95b56f78aadd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:20.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33401,"total_pss":42312,"rss":121872,"native_total_heap":24188,"native_free_heap":1325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ecfa79f-e3a0-47bd-818f-ffdadcb157cb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41148d6a-f6a5-4355-8598-53ddcf7ad476","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e1a5b23-1a7f-406a-beb5-2c5bdfb00e81","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5a6a5d3d-964b-4cdf-bf62-e43988ee9431","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"619f60ec-0df1-46c3-8643-01ca67b70888","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35433,"total_pss":46091,"rss":143612,"native_total_heap":22652,"native_free_heap":1232,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"71d1fa9e-d0e5-4494-aff4-eac7d784835b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5649371,"utime":6,"cutime":0,"cstime":0,"stime":8,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"759e3bc2-0c69-4696-804b-1456d6a89f90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.09300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5646019,"end_time":5646051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12012","content-type":"multipart/form-data; boundary=3ce6d5ea-fe4d-476c-abbd-1ce97133acfc","host":"10.0.2.2:8080","msr-req-id":"8847c7a3-09ab-488b-aab1-94d1cf86427f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"77741e07-a53a-453f-8ab9-7de58388f262","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7e484a92-22db-4eda-94ab-0b24c681db26","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.75100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":561.9507,"y":1612.901,"touch_down_time":5650619,"touch_up_time":5650708},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81838aa5-c6bf-4773-b4c7-6a46bc53e05d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:26.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4126,"total_pss":33279,"rss":109440,"native_total_heap":24188,"native_free_heap":2168,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"857ee389-db23-4072-abe2-f509eaade449","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"92d0de93-ff2d-4ffa-b4ad-1606014c6e11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.96200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5652878,"on_next_draw_uptime":5652920,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9eac2bfa-22b7-472f-9026-f7edb9b1ceea","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.41400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5652372,"utime":17,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a0b53ad0-9434-47eb-8c52-1a4db2076a1e","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:12.05800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14450"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a124512c-dba7-40a4-87c5-5f73e351cfe2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:25.47000000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2a496c1-5aa6-493e-b834-fdd19e63ccb5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.42100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a32cd081-333f-48da-aee9-f5538985dd52","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:27.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5661879,"utime":21,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a65970f6-fda7-401e-aa0d-c4b8bbd034c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.74200000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"acded69d-660f-4caa-bca0-052d6abe41a4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:22.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4314,"total_pss":35617,"rss":112012,"native_total_heap":24188,"native_free_heap":2236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2b5c96f-eb95-4aaa-93a7-64a3830aa506","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.34600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c3497d2b-feeb-49a5-a874-132138ef6398","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.50400000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5649370,"on_next_draw_uptime":5649460,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d21ee23b-1c6a-4685-b094-c5cd0cba6c6a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dc079d59-b8c3-4375-ab14-12ea069c1e36","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e384386f-f116-4cdd-95fe-ddf1eb0d0172","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.39500000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e4411497-a606-417e-b4c0-bced218dae2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33469,"total_pss":43214,"rss":121884,"native_total_heap":24188,"native_free_heap":1318,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e8b50b52-90f8-4e47-bc79-216bfb2b24ff","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.41200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33683,"total_pss":48587,"rss":130168,"native_total_heap":24188,"native_free_heap":1320,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ec8ee256-78d5-4c9a-bd5f-674f3a1346ad","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ef41ea88-1e53-4c6c-aacf-715acd5aaf03","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f13241ac-6270-4e8d-9905-54bfddc4e136","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:21.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5655879,"utime":18,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f21944d3-ecdb-4e26-9276-e3b2df83886b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.95200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":34087,"rss":139540,"native_total_heap":22396,"native_free_heap":1076,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f244ac21-aa15-4957-85e9-c8b31957ac90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ffc250e6-9039-46fd-a26e-1041e54faa11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.83900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json b/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json index cadc5dac1..bfa571f33 100644 --- a/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json +++ b/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json @@ -1 +1 @@ -[{"id":"1c7c3bec-ffe7-40cb-8841-29f5762d73e9","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.95600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5642650,"process_start_requested_uptime":5642584,"content_provider_attach_uptime":5642688,"on_next_draw_uptime":5642914,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"46d08148-a240-4204-b23b-2d9cff8d0aef","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.08700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":526.9812,"y":809.9396,"touch_down_time":5643967,"touch_up_time":5644044},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73ed533e-bbf8-4cff-bd5c-6dab044c998d","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81fde776-0c7b-4d2a-a345-d40ea6afd3c2","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35089,"total_pss":50615,"rss":144072,"native_total_heap":23524,"native_free_heap":1240,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8bb4a561-afc8-4360-870b-30de322d8074","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"97ff5db1-2a7a-4a2e-b267-115a491fa032","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564259,"uptime":5642776,"utime":2,"cutime":0,"cstime":0,"stime":2,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ab3b18a2-97b3-4442-8816-cbdb6b700c3f","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.82900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32696,"rss":139372,"native_total_heap":22396,"native_free_heap":1095,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"defda047-69fc-479a-a87a-63877d57f881","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:08.99400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14405"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e3062d74-acaa-4d1d-a35a-e1727c4069e4","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.12000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5644054,"end_time":5644078,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12557","content-type":"multipart/form-data; boundary=99621b89-53ec-481b-a46d-d1d9b429217d","host":"10.0.2.2:8080","msr-req-id":"732c7fe9-c154-4b8b-86bf-a17424b4b224","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:12 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f315eee8-ea37-4d99-8dae-7f49777b2a0a","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:09.05600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5642887,"end_time":5643014,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11013","content-type":"multipart/form-data; boundary=9720d70f-9810-4a84-b0a4-8125ad0174e6","host":"10.0.2.2:8080","msr-req-id":"c69b41cd-a9f8-46a9-800e-cc9746ce5299","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"1c7c3bec-ffe7-40cb-8841-29f5762d73e9","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.95600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5642650,"process_start_requested_uptime":5642584,"content_provider_attach_uptime":5642688,"on_next_draw_uptime":5642914,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"46d08148-a240-4204-b23b-2d9cff8d0aef","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.08700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":526.9812,"y":809.9396,"touch_down_time":5643967,"touch_up_time":5644044},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73ed533e-bbf8-4cff-bd5c-6dab044c998d","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81fde776-0c7b-4d2a-a345-d40ea6afd3c2","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35089,"total_pss":50615,"rss":144072,"native_total_heap":23524,"native_free_heap":1240,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8bb4a561-afc8-4360-870b-30de322d8074","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"97ff5db1-2a7a-4a2e-b267-115a491fa032","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564259,"uptime":5642776,"utime":2,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ab3b18a2-97b3-4442-8816-cbdb6b700c3f","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.82900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32696,"rss":139372,"native_total_heap":22396,"native_free_heap":1095,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"defda047-69fc-479a-a87a-63877d57f881","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:08.99400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14405"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e3062d74-acaa-4d1d-a35a-e1727c4069e4","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.12000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5644054,"end_time":5644078,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12557","content-type":"multipart/form-data; boundary=99621b89-53ec-481b-a46d-d1d9b429217d","host":"10.0.2.2:8080","msr-req-id":"732c7fe9-c154-4b8b-86bf-a17424b4b224","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:12 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f315eee8-ea37-4d99-8dae-7f49777b2a0a","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:09.05600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5642887,"end_time":5643014,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11013","content-type":"multipart/form-data; boundary=9720d70f-9810-4a84-b0a4-8125ad0174e6","host":"10.0.2.2:8080","msr-req-id":"c69b41cd-a9f8-46a9-800e-cc9746ce5299","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json b/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json index db4170b48..e0820b8dd 100644 --- a/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json +++ b/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json @@ -1 +1 @@ -[{"id":"17b9a183-f03a-44cc-9bad-7527ab3a7e10","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.48300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142430,"end_time":1142437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2991b227-35a6-4636-b927-5989ccbd187c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1164226,"utime":431,"cutime":0,"cstime":0,"stime":478,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e57de74-66e7-4f32-9caf-37c3e67c67bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:35.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2568,"total_pss":29456,"rss":86836,"native_total_heap":26040,"native_free_heap":3200,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33f372ee-c2e3-4305-8f1c-9cc4a2a84942","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1122227,"utime":408,"cutime":0,"cstime":0,"stime":451,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34ec8b1f-78d3-410b-a43b-19e34dd090ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.25900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1158227,"utime":426,"cutime":0,"cstime":0,"stime":472,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3575968e-80be-42c4-a64f-3ad98968858c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152395,"end_time":1152414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d091308-8d0c-4b25-8d9e-62ec9062d710","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:02.36800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3428,"total_pss":27620,"rss":84996,"native_total_heap":26040,"native_free_heap":3315,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dd76293-324e-41f4-80fc-7facf1f1c157","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3034,"total_pss":28405,"rss":86016,"native_total_heap":26040,"native_free_heap":3188,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44f56e09-ca8c-43dc-afff-9d3fbad57071","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1128226,"utime":412,"cutime":0,"cstime":0,"stime":454,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465925be-5161-48d3-aaa8-8fbbd7cf885b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3252,"total_pss":27760,"rss":85084,"native_total_heap":26040,"native_free_heap":3247,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47e9819c-ca6f-4a4e-862b-9d98891cb7aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132405,"end_time":1132415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ac34409-aca0-4029-a2e5-a18963675fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.94900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1161228,"utime":426,"cutime":0,"cstime":0,"stime":475,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"526764f1-5ead-4845-9ded-3ae68d30323e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:36.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1125227,"utime":411,"cutime":0,"cstime":0,"stime":453,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"584f5165-4bde-4f63-82ca-0d9bad1cd4f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.71200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2252,"total_pss":29608,"rss":87076,"native_total_heap":26040,"native_free_heap":3079,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5aa8af19-c6ab-4cb1-a856-75f235a7ed4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1140228,"utime":416,"cutime":0,"cstime":0,"stime":462,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b8b65b5-99c4-4bcb-b4f6-5358341732f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:37.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2464,"total_pss":29512,"rss":86836,"native_total_heap":26040,"native_free_heap":3164,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ca71524-0496-40d2-89b4-44146a3c7f63","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:06.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4066,"total_pss":27640,"rss":85172,"native_total_heap":26040,"native_free_heap":3356,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5faec79d-fd2e-4152-adb9-135a5384f747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.46200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122410,"end_time":1122414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fdd004a-25b1-480a-9816-8c8e9f417bd9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:35.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1480,"total_pss":30279,"rss":87716,"native_total_heap":26040,"native_free_heap":2978,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b9bb7e-0a9e-4e50-bd7b-682aa1925be9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.46600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152430,"end_time":1152434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a21f0fd-ba48-4cf0-aba1-2099d8fb3845","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.47100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142410,"end_time":1142425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb877f1-0499-4628-b0db-ecf0512013af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1152228,"utime":422,"cutime":0,"cstime":0,"stime":469,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7eaf0fc2-387e-4291-a9ec-03fb698df02d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:36.34800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1137226,"utime":415,"cutime":0,"cstime":0,"stime":461,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84b484f4-cc8b-4016-9269-681b59026891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1268,"total_pss":29057,"rss":86420,"native_total_heap":26040,"native_free_heap":2889,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dd1b8d7-8f3d-4af5-8245-c217a083f493","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:01.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2356,"total_pss":29584,"rss":86956,"native_total_heap":26040,"native_free_heap":3111,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dfab573-2c9a-4d67-8b49-ec361ebc943a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:31.27500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3356,"total_pss":27708,"rss":85072,"native_total_heap":26040,"native_free_heap":3283,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e4cad32-1324-4c63-ac1f-c9cccdc0f052","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:25.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3246,"total_pss":28335,"rss":85972,"native_total_heap":26040,"native_free_heap":3273,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"924af6b0-c904-4eb2-ad2a-c066cedd0100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1146228,"utime":420,"cutime":0,"cstime":0,"stime":466,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ae536d-5e47-4567-8e2e-d95d5c78d4f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:02.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2962,"total_pss":28569,"rss":86016,"native_total_heap":26040,"native_free_heap":3152,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9474b951-fae8-407c-bf40-569b7b5fe26a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:05.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1149227,"utime":422,"cutime":0,"cstime":0,"stime":467,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96728854-0636-469c-83bb-f0aaef124fec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:22.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1143228,"utime":418,"cutime":0,"cstime":0,"stime":464,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99ce2ca7-3f97-429c-991a-b042d32fdc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:30.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1119226,"utime":406,"cutime":0,"cstime":0,"stime":451,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9fbfe4a6-a8f5-4bb1-bd1e-4023e3aeff19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:26.26100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1155228,"utime":424,"cutime":0,"cstime":0,"stime":471,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a35119b1-5205-4fb9-a480-2189d7b59787","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1134228,"utime":414,"cutime":0,"cstime":0,"stime":458,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8339eb4-b17a-4429-a235-4846167086ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:37.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1392,"total_pss":29401,"rss":86880,"native_total_heap":26040,"native_free_heap":2942,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8c7ca82-a3c5-4b04-bd71-da79de0b1fdc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1532,"total_pss":30252,"rss":87716,"native_total_heap":26040,"native_free_heap":2994,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"affe573d-4e30-483f-b62f-bf760986026e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2376,"total_pss":29520,"rss":86836,"native_total_heap":26040,"native_free_heap":3132,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b257a77a-c3d8-4ac5-8a44-799cf8b0f482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1320,"total_pss":29030,"rss":86420,"native_total_heap":26040,"native_free_heap":2910,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49e0933-51da-4621-a7a3-eac220163f87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:02.71400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1131229,"utime":413,"cutime":0,"cstime":0,"stime":455,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6fcf1a2-16e7-4f36-8704-256877a7e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.16700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162428,"end_time":1162446,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb166012-646e-4815-a8f5-6c4b1d5cc182","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3480,"total_pss":27577,"rss":84888,"native_total_heap":26040,"native_free_heap":3335,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc3a157e-d700-483a-9ada-6d67f9dc969e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:23.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":532,"total_pss":29904,"rss":87140,"native_total_heap":26040,"native_free_heap":2822,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce588d6b-8147-4160-bd9a-16069ec89a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.91700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132425,"end_time":1132431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7076412-2803-44f6-896c-7eb2d76b646c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:27.25900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3174,"total_pss":28387,"rss":86016,"native_total_heap":26040,"native_free_heap":3236,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb6d3856-1941-4668-97a4-0072cfcf5218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.13900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162401,"end_time":1162418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eda84555-7fd9-44b9-887c-76fa23696c02","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3994,"total_pss":27664,"rss":85224,"native_total_heap":26040,"native_free_heap":3324,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5496fdf-5dc8-4957-9eb6-a95461d22b9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.45400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122399,"end_time":1122406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f60c7196-6518-46d2-90a5-3cbbf9e93d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:04.26200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4154,"total_pss":27633,"rss":85112,"native_total_heap":26040,"native_free_heap":3392,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6470fec-457b-4335-ab31-85c844f847e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4222,"total_pss":27597,"rss":85008,"native_total_heap":26040,"native_free_heap":3408,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8d68f6-548e-48d6-bf85-c41b0cb9899e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3086,"total_pss":28443,"rss":86016,"native_total_heap":26040,"native_free_heap":3204,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"17b9a183-f03a-44cc-9bad-7527ab3a7e10","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.48300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142430,"end_time":1142437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2991b227-35a6-4636-b927-5989ccbd187c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1164226,"utime":431,"cutime":0,"cstime":0,"stime":478,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e57de74-66e7-4f32-9caf-37c3e67c67bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:35.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2568,"total_pss":29456,"rss":86836,"native_total_heap":26040,"native_free_heap":3200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33f372ee-c2e3-4305-8f1c-9cc4a2a84942","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1122227,"utime":408,"cutime":0,"cstime":0,"stime":451,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34ec8b1f-78d3-410b-a43b-19e34dd090ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.25900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1158227,"utime":426,"cutime":0,"cstime":0,"stime":472,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3575968e-80be-42c4-a64f-3ad98968858c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152395,"end_time":1152414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d091308-8d0c-4b25-8d9e-62ec9062d710","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:02.36800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3428,"total_pss":27620,"rss":84996,"native_total_heap":26040,"native_free_heap":3315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dd76293-324e-41f4-80fc-7facf1f1c157","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3034,"total_pss":28405,"rss":86016,"native_total_heap":26040,"native_free_heap":3188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44f56e09-ca8c-43dc-afff-9d3fbad57071","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1128226,"utime":412,"cutime":0,"cstime":0,"stime":454,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465925be-5161-48d3-aaa8-8fbbd7cf885b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3252,"total_pss":27760,"rss":85084,"native_total_heap":26040,"native_free_heap":3247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47e9819c-ca6f-4a4e-862b-9d98891cb7aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132405,"end_time":1132415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ac34409-aca0-4029-a2e5-a18963675fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.94900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1161228,"utime":426,"cutime":0,"cstime":0,"stime":475,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"526764f1-5ead-4845-9ded-3ae68d30323e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:36.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1125227,"utime":411,"cutime":0,"cstime":0,"stime":453,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"584f5165-4bde-4f63-82ca-0d9bad1cd4f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.71200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2252,"total_pss":29608,"rss":87076,"native_total_heap":26040,"native_free_heap":3079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5aa8af19-c6ab-4cb1-a856-75f235a7ed4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1140228,"utime":416,"cutime":0,"cstime":0,"stime":462,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b8b65b5-99c4-4bcb-b4f6-5358341732f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:37.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2464,"total_pss":29512,"rss":86836,"native_total_heap":26040,"native_free_heap":3164,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ca71524-0496-40d2-89b4-44146a3c7f63","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:06.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4066,"total_pss":27640,"rss":85172,"native_total_heap":26040,"native_free_heap":3356,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5faec79d-fd2e-4152-adb9-135a5384f747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.46200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122410,"end_time":1122414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fdd004a-25b1-480a-9816-8c8e9f417bd9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:35.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1480,"total_pss":30279,"rss":87716,"native_total_heap":26040,"native_free_heap":2978,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b9bb7e-0a9e-4e50-bd7b-682aa1925be9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.46600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152430,"end_time":1152434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a21f0fd-ba48-4cf0-aba1-2099d8fb3845","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.47100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142410,"end_time":1142425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb877f1-0499-4628-b0db-ecf0512013af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1152228,"utime":422,"cutime":0,"cstime":0,"stime":469,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7eaf0fc2-387e-4291-a9ec-03fb698df02d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:36.34800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1137226,"utime":415,"cutime":0,"cstime":0,"stime":461,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84b484f4-cc8b-4016-9269-681b59026891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1268,"total_pss":29057,"rss":86420,"native_total_heap":26040,"native_free_heap":2889,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dd1b8d7-8f3d-4af5-8245-c217a083f493","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:01.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2356,"total_pss":29584,"rss":86956,"native_total_heap":26040,"native_free_heap":3111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dfab573-2c9a-4d67-8b49-ec361ebc943a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:31.27500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3356,"total_pss":27708,"rss":85072,"native_total_heap":26040,"native_free_heap":3283,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e4cad32-1324-4c63-ac1f-c9cccdc0f052","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:25.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3246,"total_pss":28335,"rss":85972,"native_total_heap":26040,"native_free_heap":3273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"924af6b0-c904-4eb2-ad2a-c066cedd0100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1146228,"utime":420,"cutime":0,"cstime":0,"stime":466,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ae536d-5e47-4567-8e2e-d95d5c78d4f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:02.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2962,"total_pss":28569,"rss":86016,"native_total_heap":26040,"native_free_heap":3152,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9474b951-fae8-407c-bf40-569b7b5fe26a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:05.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1149227,"utime":422,"cutime":0,"cstime":0,"stime":467,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96728854-0636-469c-83bb-f0aaef124fec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:22.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1143228,"utime":418,"cutime":0,"cstime":0,"stime":464,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99ce2ca7-3f97-429c-991a-b042d32fdc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:30.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1119226,"utime":406,"cutime":0,"cstime":0,"stime":451,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9fbfe4a6-a8f5-4bb1-bd1e-4023e3aeff19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:26.26100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1155228,"utime":424,"cutime":0,"cstime":0,"stime":471,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a35119b1-5205-4fb9-a480-2189d7b59787","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1134228,"utime":414,"cutime":0,"cstime":0,"stime":458,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8339eb4-b17a-4429-a235-4846167086ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:37.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1392,"total_pss":29401,"rss":86880,"native_total_heap":26040,"native_free_heap":2942,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8c7ca82-a3c5-4b04-bd71-da79de0b1fdc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1532,"total_pss":30252,"rss":87716,"native_total_heap":26040,"native_free_heap":2994,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"affe573d-4e30-483f-b62f-bf760986026e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2376,"total_pss":29520,"rss":86836,"native_total_heap":26040,"native_free_heap":3132,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b257a77a-c3d8-4ac5-8a44-799cf8b0f482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1320,"total_pss":29030,"rss":86420,"native_total_heap":26040,"native_free_heap":2910,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49e0933-51da-4621-a7a3-eac220163f87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:02.71400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1131229,"utime":413,"cutime":0,"cstime":0,"stime":455,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6fcf1a2-16e7-4f36-8704-256877a7e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.16700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162428,"end_time":1162446,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb166012-646e-4815-a8f5-6c4b1d5cc182","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3480,"total_pss":27577,"rss":84888,"native_total_heap":26040,"native_free_heap":3335,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc3a157e-d700-483a-9ada-6d67f9dc969e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:23.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":532,"total_pss":29904,"rss":87140,"native_total_heap":26040,"native_free_heap":2822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce588d6b-8147-4160-bd9a-16069ec89a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.91700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132425,"end_time":1132431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7076412-2803-44f6-896c-7eb2d76b646c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:27.25900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3174,"total_pss":28387,"rss":86016,"native_total_heap":26040,"native_free_heap":3236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb6d3856-1941-4668-97a4-0072cfcf5218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.13900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162401,"end_time":1162418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eda84555-7fd9-44b9-887c-76fa23696c02","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3994,"total_pss":27664,"rss":85224,"native_total_heap":26040,"native_free_heap":3324,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5496fdf-5dc8-4957-9eb6-a95461d22b9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.45400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122399,"end_time":1122406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f60c7196-6518-46d2-90a5-3cbbf9e93d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:04.26200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4154,"total_pss":27633,"rss":85112,"native_total_heap":26040,"native_free_heap":3392,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6470fec-457b-4335-ab31-85c844f847e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4222,"total_pss":27597,"rss":85008,"native_total_heap":26040,"native_free_heap":3408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8d68f6-548e-48d6-bf85-c41b0cb9899e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3086,"total_pss":28443,"rss":86016,"native_total_heap":26040,"native_free_heap":3204,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json b/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json index 199f85669..c625df2ec 100644 --- a/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json +++ b/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json @@ -1 +1 @@ -[{"id":"9d31a29d-b4df-4224-b911-add937b51e90","session_id":"4e78101f-df99-414d-a57c-bae6a5554624","timestamp":"2024-06-12T18:33:39.41400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":101574,"uptime":1016483,"utime":21,"cutime":0,"cstime":0,"stime":9,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"714d133f-d5cd-4c25-b456-e9331082fcbd","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file +[{"id":"9d31a29d-b4df-4224-b911-add937b51e90","session_id":"4e78101f-df99-414d-a57c-bae6a5554624","timestamp":"2024-06-12T18:33:39.41400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":101574,"uptime":1016483,"utime":21,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"714d133f-d5cd-4c25-b456-e9331082fcbd","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json b/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json index 19ed6d61c..4a3848203 100644 --- a/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json +++ b/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json @@ -1 +1 @@ -[{"id":"4466cd92-dada-4ec6-affd-0c1da93cef06","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"64abbbb2-236c-4cc7-b44a-f48bc9804c10","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5201098,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"999d1885-a06e-4285-bf1c-704e2f9a0c31","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185910,"total_pss":22622,"rss":99600,"native_total_heap":11608,"native_free_heap":1402,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c57aebe1-4374-474b-94b5-c74922e77830","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dd3af18e-218e-46ec-ab9b-c649e698c6aa","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"4466cd92-dada-4ec6-affd-0c1da93cef06","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"64abbbb2-236c-4cc7-b44a-f48bc9804c10","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5201098,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"999d1885-a06e-4285-bf1c-704e2f9a0c31","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185910,"total_pss":22622,"rss":99600,"native_total_heap":11608,"native_free_heap":1402,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c57aebe1-4374-474b-94b5-c74922e77830","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dd3af18e-218e-46ec-ab9b-c649e698c6aa","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json b/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json index e7bf1de75..3bf3035f8 100644 --- a/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json +++ b/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json @@ -1 +1 @@ -[{"id":"0621ffd6-fe36-4487-ba6c-a64353a4b702","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:05.11400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":30653,"rss":84348,"native_total_heap":26296,"native_free_heap":2833,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0983584f-658a-4559-9e8b-1594f8dbbb8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:20.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4250,"total_pss":25412,"rss":79816,"native_total_heap":26040,"native_free_heap":3414,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0be76ffb-f2cf-4a30-8cb0-603a661ef960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.66500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1002,"total_pss":30706,"rss":84348,"native_total_heap":26296,"native_free_heap":2785,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ca3e1f6-b9ce-430f-bcc0-73df8541f840","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:03.79100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1257229,"utime":464,"cutime":0,"cstime":0,"stime":520,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea20574-4b5f-456c-bb96-6cb3fa566667","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:22.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":25850,"rss":78648,"native_total_heap":26040,"native_free_heap":3378,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33eb5567-0c2f-4886-88bb-480c3d02a26d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232432,"end_time":1232444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b420f26-5a61-49e7-9f56-10d73d439f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:21.24100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1227227,"utime":455,"cutime":0,"cstime":0,"stime":505,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ca132ff-aa1d-4f28-8a8b-71cdd9be6d22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.17300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242424,"end_time":1242428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"428509e1-3648-4d2a-b42c-69b56d283be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:32.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29320,"rss":82764,"native_total_heap":26296,"native_free_heap":3258,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44996c25-4d1a-4e3f-9b2c-fa5c765e4709","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":30581,"rss":84348,"native_total_heap":26296,"native_free_heap":2885,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4538f9f0-99a6-4b84-8886-99300b6d3844","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:38.10700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29718,"rss":83100,"native_total_heap":26296,"native_free_heap":3054,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4607c61c-3c20-44cf-baaf-9fea81f2b62e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:16.85700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2058,"total_pss":29776,"rss":83160,"native_total_heap":26296,"native_free_heap":3007,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"476b0ec0-55c5-489b-9f71-3cb11a2d41f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.85700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262404,"end_time":1262420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d8cd2c9-4183-4a97-9e63-8c15b3fbd28c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:30.34900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1090,"total_pss":28981,"rss":85420,"native_total_heap":26040,"native_free_heap":2854,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52764a82-8954-4722-b439-f819353b0bc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4090,"total_pss":26721,"rss":78548,"native_total_heap":26040,"native_free_heap":3346,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55877287-e327-46c5-ba4a-92acdf537851","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.02000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252441,"end_time":1252458,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"582d5d33-faee-4f47-900a-b84c31240426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2970,"total_pss":26875,"rss":80092,"native_total_heap":26296,"native_free_heap":3142,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6532c2ad-21d8-469f-86c5-04ed4582ec74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:29.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1215227,"utime":451,"cutime":0,"cstime":0,"stime":502,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6958f7a9-c6b6-4063-bfd2-c5db9861207f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:17.85600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1251228,"utime":462,"cutime":0,"cstime":0,"stime":516,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a2e44c0-5e8a-469f-9d68-560846926d72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":894,"total_pss":29520,"rss":84704,"native_total_heap":26040,"native_free_heap":2783,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73f1e0e6-75dc-4ff5-be3c-8245255e0038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":142,"total_pss":29965,"rss":85652,"native_total_heap":26040,"native_free_heap":2693,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77fb64be-6d0b-4aeb-a8c8-6e01a69f3e7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1254228,"utime":463,"cutime":0,"cstime":0,"stime":518,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d5976f-67b5-46fb-9b7f-68dd07a1952c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.85600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1248228,"utime":460,"cutime":0,"cstime":0,"stime":515,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"868e2854-a976-4b69-a6a9-30c39f0dfa27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.16100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242406,"end_time":1242416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a9d6fff-e5d2-4d0d-9bf7-a72223aa182a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:38.09100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":26893,"rss":80252,"native_total_heap":26296,"native_free_heap":3174,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e2595c7-6152-45f9-8ccc-36a8b0dee5d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:28.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1178,"total_pss":30770,"rss":87116,"native_total_heap":26040,"native_free_heap":2890,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f7127f1-9b3d-439f-b5d9-5ace5c50596d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:37.07000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1239226,"utime":458,"cutime":0,"cstime":0,"stime":510,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a078fef5-2c58-4523-929f-4989f139e609","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1218227,"utime":452,"cutime":0,"cstime":0,"stime":503,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1d9b0a8-6e1a-4674-8cb2-07c955ba7747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.01200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1874,"total_pss":30032,"rss":84348,"native_total_heap":26296,"native_free_heap":2921,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7dfbd83-bcb3-4f8a-9dc1-59b8e015425e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:14.60900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":966,"total_pss":28290,"rss":83784,"native_total_heap":26040,"native_free_heap":2801,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8936ca0-861b-4ca3-bfd1-4320abba4cff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:36.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3130,"total_pss":27012,"rss":80576,"native_total_heap":26296,"native_free_heap":3210,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a96d2d1c-2c96-4b3e-bd92-fd137cca68e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1236229,"utime":457,"cutime":0,"cstime":0,"stime":509,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab323a87-1ffc-4a10-b8ce-6cdc17834d5b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":27091,"rss":80576,"native_total_heap":26296,"native_free_heap":3226,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aedd041e-b219-497d-a633-7a49dd631aad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.05100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252462,"end_time":1252488,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aee8e31d-21e3-4ee2-8a6b-558775beae89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1224227,"utime":453,"cutime":0,"cstime":0,"stime":504,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b037f6be-f420-4013-8290-0fdeeeb1e575","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.86000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29758,"rss":83160,"native_total_heap":26296,"native_free_heap":3023,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0fbab63-5bd9-4de8-9c7d-9da50084bb13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1242229,"utime":459,"cutime":0,"cstime":0,"stime":511,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b286ad8e-1870-4feb-86ba-34d54eb261d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.42200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222404,"end_time":1222408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b525b41f-7a68-4a8a-9d68-90d825aacd9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4038,"total_pss":26941,"rss":78876,"native_total_heap":26040,"native_free_heap":3325,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b84941c1-c9f5-4dd3-b9c8-575457b236cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1260228,"utime":465,"cutime":0,"cstime":0,"stime":520,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc046ab9-635e-4d43-b2e8-66ad015505c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.35500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232405,"end_time":1232422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc4106e0-b5e2-4707-bdfd-5943bbd420ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1034,"total_pss":29513,"rss":85736,"native_total_heap":26040,"native_free_heap":2822,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcd949d4-2eb8-4761-a21a-01c9d7a33ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1230228,"utime":455,"cutime":0,"cstime":0,"stime":506,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9a6753e-d5b5-4e8a-8391-f92b146c7d85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:02.79000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1198,"total_pss":30605,"rss":84348,"native_total_heap":26296,"native_free_heap":2869,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca7b20-267c-4ad7-84a0-98a043fc2072","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:27.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1233228,"utime":457,"cutime":0,"cstime":0,"stime":508,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b2529a-02a7-43e4-9ee9-07656c8fded1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:35.97200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2270,"total_pss":29663,"rss":83100,"native_total_heap":26296,"native_free_heap":3091,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5c2db38-b473-41ba-bf71-4d30afb1f290","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1022,"total_pss":30682,"rss":84348,"native_total_heap":26296,"native_free_heap":2801,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0fe963d-891f-4ef4-905d-40b564d0b285","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:15.61000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1221227,"utime":452,"cutime":0,"cstime":0,"stime":504,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6af15a4-1bcb-4218-ae40-c6af06aa4ac0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:36.97400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1245229,"utime":460,"cutime":0,"cstime":0,"stime":514,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff6cf4a1-390d-4c8b-a12c-42ad4a730368","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.41300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222396,"end_time":1222399,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0621ffd6-fe36-4487-ba6c-a64353a4b702","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:05.11400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":30653,"rss":84348,"native_total_heap":26296,"native_free_heap":2833,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0983584f-658a-4559-9e8b-1594f8dbbb8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:20.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4250,"total_pss":25412,"rss":79816,"native_total_heap":26040,"native_free_heap":3414,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0be76ffb-f2cf-4a30-8cb0-603a661ef960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.66500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1002,"total_pss":30706,"rss":84348,"native_total_heap":26296,"native_free_heap":2785,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ca3e1f6-b9ce-430f-bcc0-73df8541f840","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:03.79100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1257229,"utime":464,"cutime":0,"cstime":0,"stime":520,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea20574-4b5f-456c-bb96-6cb3fa566667","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:22.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":25850,"rss":78648,"native_total_heap":26040,"native_free_heap":3378,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33eb5567-0c2f-4886-88bb-480c3d02a26d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232432,"end_time":1232444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b420f26-5a61-49e7-9f56-10d73d439f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:21.24100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1227227,"utime":455,"cutime":0,"cstime":0,"stime":505,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ca132ff-aa1d-4f28-8a8b-71cdd9be6d22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.17300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242424,"end_time":1242428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"428509e1-3648-4d2a-b42c-69b56d283be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:32.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29320,"rss":82764,"native_total_heap":26296,"native_free_heap":3258,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44996c25-4d1a-4e3f-9b2c-fa5c765e4709","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":30581,"rss":84348,"native_total_heap":26296,"native_free_heap":2885,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4538f9f0-99a6-4b84-8886-99300b6d3844","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:38.10700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29718,"rss":83100,"native_total_heap":26296,"native_free_heap":3054,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4607c61c-3c20-44cf-baaf-9fea81f2b62e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:16.85700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2058,"total_pss":29776,"rss":83160,"native_total_heap":26296,"native_free_heap":3007,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"476b0ec0-55c5-489b-9f71-3cb11a2d41f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.85700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262404,"end_time":1262420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d8cd2c9-4183-4a97-9e63-8c15b3fbd28c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:30.34900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1090,"total_pss":28981,"rss":85420,"native_total_heap":26040,"native_free_heap":2854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52764a82-8954-4722-b439-f819353b0bc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4090,"total_pss":26721,"rss":78548,"native_total_heap":26040,"native_free_heap":3346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55877287-e327-46c5-ba4a-92acdf537851","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.02000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252441,"end_time":1252458,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"582d5d33-faee-4f47-900a-b84c31240426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2970,"total_pss":26875,"rss":80092,"native_total_heap":26296,"native_free_heap":3142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6532c2ad-21d8-469f-86c5-04ed4582ec74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:29.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1215227,"utime":451,"cutime":0,"cstime":0,"stime":502,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6958f7a9-c6b6-4063-bfd2-c5db9861207f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:17.85600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1251228,"utime":462,"cutime":0,"cstime":0,"stime":516,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a2e44c0-5e8a-469f-9d68-560846926d72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":894,"total_pss":29520,"rss":84704,"native_total_heap":26040,"native_free_heap":2783,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73f1e0e6-75dc-4ff5-be3c-8245255e0038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":142,"total_pss":29965,"rss":85652,"native_total_heap":26040,"native_free_heap":2693,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77fb64be-6d0b-4aeb-a8c8-6e01a69f3e7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1254228,"utime":463,"cutime":0,"cstime":0,"stime":518,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d5976f-67b5-46fb-9b7f-68dd07a1952c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.85600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1248228,"utime":460,"cutime":0,"cstime":0,"stime":515,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"868e2854-a976-4b69-a6a9-30c39f0dfa27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.16100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242406,"end_time":1242416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a9d6fff-e5d2-4d0d-9bf7-a72223aa182a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:38.09100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":26893,"rss":80252,"native_total_heap":26296,"native_free_heap":3174,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e2595c7-6152-45f9-8ccc-36a8b0dee5d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:28.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1178,"total_pss":30770,"rss":87116,"native_total_heap":26040,"native_free_heap":2890,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f7127f1-9b3d-439f-b5d9-5ace5c50596d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:37.07000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1239226,"utime":458,"cutime":0,"cstime":0,"stime":510,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a078fef5-2c58-4523-929f-4989f139e609","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1218227,"utime":452,"cutime":0,"cstime":0,"stime":503,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1d9b0a8-6e1a-4674-8cb2-07c955ba7747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.01200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1874,"total_pss":30032,"rss":84348,"native_total_heap":26296,"native_free_heap":2921,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7dfbd83-bcb3-4f8a-9dc1-59b8e015425e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:14.60900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":966,"total_pss":28290,"rss":83784,"native_total_heap":26040,"native_free_heap":2801,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8936ca0-861b-4ca3-bfd1-4320abba4cff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:36.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3130,"total_pss":27012,"rss":80576,"native_total_heap":26296,"native_free_heap":3210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a96d2d1c-2c96-4b3e-bd92-fd137cca68e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1236229,"utime":457,"cutime":0,"cstime":0,"stime":509,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab323a87-1ffc-4a10-b8ce-6cdc17834d5b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":27091,"rss":80576,"native_total_heap":26296,"native_free_heap":3226,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aedd041e-b219-497d-a633-7a49dd631aad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.05100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252462,"end_time":1252488,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aee8e31d-21e3-4ee2-8a6b-558775beae89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1224227,"utime":453,"cutime":0,"cstime":0,"stime":504,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b037f6be-f420-4013-8290-0fdeeeb1e575","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.86000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29758,"rss":83160,"native_total_heap":26296,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0fbab63-5bd9-4de8-9c7d-9da50084bb13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1242229,"utime":459,"cutime":0,"cstime":0,"stime":511,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b286ad8e-1870-4feb-86ba-34d54eb261d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.42200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222404,"end_time":1222408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b525b41f-7a68-4a8a-9d68-90d825aacd9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4038,"total_pss":26941,"rss":78876,"native_total_heap":26040,"native_free_heap":3325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b84941c1-c9f5-4dd3-b9c8-575457b236cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1260228,"utime":465,"cutime":0,"cstime":0,"stime":520,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc046ab9-635e-4d43-b2e8-66ad015505c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.35500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232405,"end_time":1232422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc4106e0-b5e2-4707-bdfd-5943bbd420ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1034,"total_pss":29513,"rss":85736,"native_total_heap":26040,"native_free_heap":2822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcd949d4-2eb8-4761-a21a-01c9d7a33ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1230228,"utime":455,"cutime":0,"cstime":0,"stime":506,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9a6753e-d5b5-4e8a-8391-f92b146c7d85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:02.79000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1198,"total_pss":30605,"rss":84348,"native_total_heap":26296,"native_free_heap":2869,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca7b20-267c-4ad7-84a0-98a043fc2072","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:27.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1233228,"utime":457,"cutime":0,"cstime":0,"stime":508,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b2529a-02a7-43e4-9ee9-07656c8fded1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:35.97200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2270,"total_pss":29663,"rss":83100,"native_total_heap":26296,"native_free_heap":3091,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5c2db38-b473-41ba-bf71-4d30afb1f290","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1022,"total_pss":30682,"rss":84348,"native_total_heap":26296,"native_free_heap":2801,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0fe963d-891f-4ef4-905d-40b564d0b285","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:15.61000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1221227,"utime":452,"cutime":0,"cstime":0,"stime":504,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6af15a4-1bcb-4218-ae40-c6af06aa4ac0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:36.97400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1245229,"utime":460,"cutime":0,"cstime":0,"stime":514,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff6cf4a1-390d-4c8b-a12c-42ad4a730368","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.41300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222396,"end_time":1222399,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json b/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json index fa9ca1b30..344b8886a 100644 --- a/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json +++ b/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json @@ -1 +1 @@ -[{"id":"036799a7-affa-4209-9758-2985a5e6b7f6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.21600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":513.9624,"y":145.9314,"touch_down_time":5221050,"touch_up_time":5221168},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08e1ebed-4f0a-4d90-87a2-c6d13b7cec9e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5218634,"utime":25,"cutime":0,"cstime":0,"stime":22,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0d1314b9-75f6-409a-a78c-2371522bf3a6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:15.05200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1c9d46fc-ad0e-449c-89c6-953bb4429c4c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5224634,"utime":59,"cutime":0,"cstime":0,"stime":45,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22f1b342-a663-4633-8fe5-a6761fc04a99","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32493,"total_pss":61274,"rss":150420,"native_total_heap":24956,"native_free_heap":1279,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"230b9504-71b2-4353-9490-92ce51923a2a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.67500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5221633,"utime":42,"cutime":0,"cstime":0,"stime":34,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2358dd98-a00c-4479-9fe6-eafbf28c044c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:00.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35638,"total_pss":52775,"rss":141420,"native_total_heap":22396,"native_free_heap":1087,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"279ee7d1-5d0b-4535-b8a2-72849d247c08","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"292b1b04-730e-4627-a444-51522df62377","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.89400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2aed95f7-e862-4fa4-9e76-903d611ed201","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2cfef4c2-03e5-4adc-9aee-0d43f2360b9f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:09.02100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":513.9624,"y":1245.9045,"end_x":519.96094,"end_y":477.96936,"direction":"up","touch_down_time":5222833,"touch_up_time":5222978},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"37d24bc7-17fa-46ec-a51a-8542bb9a9ec5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.94000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5212596,"process_start_requested_uptime":5212502,"content_provider_attach_uptime":5212614,"on_next_draw_uptime":5212897,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"436f5e4f-e963-424f-ae15-17050586e449","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.02000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_8","width":null,"height":null,"x":499.95483,"y":2089.9219,"touch_down_time":5219884,"touch_up_time":5219975},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"49a544e3-6b24-471e-811b-1a84d2632f05","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:58.99500000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14205"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"50b31f0f-a51f-4eeb-ace3-c21db4fe3474","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"58ef4456-4a43-47d0-a5fd-47a0e8b2eb4e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.14400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":623.9795,"y":1612.901,"touch_down_time":5218012,"touch_up_time":5218101},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59abf2f5-8dbc-4a8c-ad6e-4c7325ab19d8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5227634,"utime":70,"cutime":0,"cstime":0,"stime":52,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59b05fa8-2395-4bbe-ab50-10fe5cce1785","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.36000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6e71c997-5d80-47c2-b51d-4123cd8f8bb3","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.37900000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f712ae4-2129-4ad4-8314-3311dac3b672","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.59100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5216331,"end_time":5217549,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:05 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f825ca7-203f-4cae-95d2-7c949d30c911","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.72700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5212679,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73a616e6-bc70-4a27-888f-91831f729eb2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7a57fda4-d7fd-416b-8c7a-d67405fcd11f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":2003,"total_pss":59486,"rss":145832,"native_total_heap":26680,"native_free_heap":1790,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8548ef0f-972f-48a1-9b81-117291dfff5c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"85780811-f6f9-4e2e-bfce-1494345f3f8e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32133,"total_pss":61823,"rss":151208,"native_total_heap":24956,"native_free_heap":1346,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"867761d3-0068-4537-b414-9084cea172b0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.78700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1217.9242,"touch_down_time":5219636,"touch_up_time":5219742},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a5164609-d4c6-40af-bc51-312833161cf0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.35600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a9c538c7-4fa7-447a-a9b5-6bb32817f56e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:01.67800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5215636,"utime":9,"cutime":0,"cstime":0,"stime":10,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bd1d09ba-b106-45a7-b61d-981cdd603525","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.33000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":561.9507,"y":1722.9254,"touch_down_time":5227177,"touch_up_time":5227287},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bef9ffb6-d3e1-42cd-9e46-6de0d1aad4de","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.19400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c1b538f3-4528-4e07-95e3-5da0ac15ac80","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5609e88-af46-4b98-ac4f-4465bd00e4c7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.45700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1114.9457,"touch_down_time":5220334,"touch_up_time":5220412},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7d73946-64e8-413b-b458-550f7f05e3a9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3224,"total_pss":57091,"rss":142908,"native_total_heap":25468,"native_free_heap":2609,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9bf0fd6-fe93-4b66-96e1-e1a477f0bbe9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.36900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ccc9cd3e-6de4-4473-971d-2d1d2586bbf8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cf200b6e-e445-405b-b2d9-53e508a2803a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1784e37-61c3-4f94-bb3f-1788c7509d23","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.21900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d4f7e9c9-2c2a-42e7-a4e2-0c89e7d150e6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d6c940b5-3550-4431-a0f4-d8790d0602f4","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.48800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dcfac8d8-c2e1-41af-b97d-14a6702f5775","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.75300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184783,"total_pss":37951,"rss":137108,"native_total_heap":22396,"native_free_heap":1082,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1af4715-71c6-4096-b51d-1b09c1510a77","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.34500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7cd6892-e6d0-4ce5-9aee-e48a6f6b8ffb","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:08.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":17282,"java_free_heap":0,"total_pss":62354,"rss":152784,"native_total_heap":25468,"native_free_heap":1309,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb18dbd3-d5bb-4059-bd43-0567e0ee26d0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.16200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ed7f4cca-0006-4457-8f63-2ca7f0c55746","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.91900000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_1","width":null,"height":null,"x":513.9624,"y":318.9624,"touch_down_time":5220784,"touch_up_time":5220874},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f053dac1-4070-49e5-8d53-fe7a76fe346f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.45600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f05491e2-bd17-44f6-afe8-28534919e941","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.32300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":533.9685,"y":1473.9478,"touch_down_time":5216213,"touch_up_time":5216280},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f09c7a45-26c0-49ff-8087-423ae2501de2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35120,"total_pss":54546,"rss":143484,"native_total_heap":23932,"native_free_heap":1122,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc4669b4-72f3-42c5-bffc-b138fdd3df40","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:59.07400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5212951,"end_time":5213032,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15346","content-type":"multipart/form-data; boundary=7451f413-ee15-4d38-b9d5-190422f17e18","host":"10.0.2.2:8080","msr-req-id":"e75f76c8-c1bb-452a-81a9-1f9c193a61d1","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:01 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc9fff6f-ddb1-4b32-8ccb-e516874a0d4d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3676,"total_pss":56315,"rss":142140,"native_total_heap":25468,"native_free_heap":2824,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe32e9ce-e868-46e3-bf3c-27d7660418e2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.52400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":499.95483,"y":816.9177,"touch_down_time":5219383,"touch_up_time":5219469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"036799a7-affa-4209-9758-2985a5e6b7f6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.21600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":513.9624,"y":145.9314,"touch_down_time":5221050,"touch_up_time":5221168},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08e1ebed-4f0a-4d90-87a2-c6d13b7cec9e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5218634,"utime":25,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0d1314b9-75f6-409a-a78c-2371522bf3a6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:15.05200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1c9d46fc-ad0e-449c-89c6-953bb4429c4c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5224634,"utime":59,"cutime":0,"cstime":0,"stime":45,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22f1b342-a663-4633-8fe5-a6761fc04a99","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32493,"total_pss":61274,"rss":150420,"native_total_heap":24956,"native_free_heap":1279,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"230b9504-71b2-4353-9490-92ce51923a2a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.67500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5221633,"utime":42,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2358dd98-a00c-4479-9fe6-eafbf28c044c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:00.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35638,"total_pss":52775,"rss":141420,"native_total_heap":22396,"native_free_heap":1087,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"279ee7d1-5d0b-4535-b8a2-72849d247c08","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"292b1b04-730e-4627-a444-51522df62377","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.89400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2aed95f7-e862-4fa4-9e76-903d611ed201","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2cfef4c2-03e5-4adc-9aee-0d43f2360b9f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:09.02100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":513.9624,"y":1245.9045,"end_x":519.96094,"end_y":477.96936,"direction":"up","touch_down_time":5222833,"touch_up_time":5222978},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"37d24bc7-17fa-46ec-a51a-8542bb9a9ec5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.94000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5212596,"process_start_requested_uptime":5212502,"content_provider_attach_uptime":5212614,"on_next_draw_uptime":5212897,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"436f5e4f-e963-424f-ae15-17050586e449","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.02000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_8","width":null,"height":null,"x":499.95483,"y":2089.9219,"touch_down_time":5219884,"touch_up_time":5219975},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"49a544e3-6b24-471e-811b-1a84d2632f05","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:58.99500000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14205"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"50b31f0f-a51f-4eeb-ace3-c21db4fe3474","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"58ef4456-4a43-47d0-a5fd-47a0e8b2eb4e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.14400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":623.9795,"y":1612.901,"touch_down_time":5218012,"touch_up_time":5218101},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59abf2f5-8dbc-4a8c-ad6e-4c7325ab19d8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5227634,"utime":70,"cutime":0,"cstime":0,"stime":52,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59b05fa8-2395-4bbe-ab50-10fe5cce1785","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.36000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6e71c997-5d80-47c2-b51d-4123cd8f8bb3","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.37900000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f712ae4-2129-4ad4-8314-3311dac3b672","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.59100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5216331,"end_time":5217549,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:05 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f825ca7-203f-4cae-95d2-7c949d30c911","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.72700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5212679,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73a616e6-bc70-4a27-888f-91831f729eb2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7a57fda4-d7fd-416b-8c7a-d67405fcd11f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":2003,"total_pss":59486,"rss":145832,"native_total_heap":26680,"native_free_heap":1790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8548ef0f-972f-48a1-9b81-117291dfff5c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"85780811-f6f9-4e2e-bfce-1494345f3f8e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32133,"total_pss":61823,"rss":151208,"native_total_heap":24956,"native_free_heap":1346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"867761d3-0068-4537-b414-9084cea172b0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.78700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1217.9242,"touch_down_time":5219636,"touch_up_time":5219742},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a5164609-d4c6-40af-bc51-312833161cf0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.35600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a9c538c7-4fa7-447a-a9b5-6bb32817f56e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:01.67800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5215636,"utime":9,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bd1d09ba-b106-45a7-b61d-981cdd603525","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.33000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":561.9507,"y":1722.9254,"touch_down_time":5227177,"touch_up_time":5227287},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bef9ffb6-d3e1-42cd-9e46-6de0d1aad4de","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.19400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c1b538f3-4528-4e07-95e3-5da0ac15ac80","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5609e88-af46-4b98-ac4f-4465bd00e4c7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.45700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1114.9457,"touch_down_time":5220334,"touch_up_time":5220412},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7d73946-64e8-413b-b458-550f7f05e3a9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3224,"total_pss":57091,"rss":142908,"native_total_heap":25468,"native_free_heap":2609,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9bf0fd6-fe93-4b66-96e1-e1a477f0bbe9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.36900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ccc9cd3e-6de4-4473-971d-2d1d2586bbf8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cf200b6e-e445-405b-b2d9-53e508a2803a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1784e37-61c3-4f94-bb3f-1788c7509d23","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.21900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d4f7e9c9-2c2a-42e7-a4e2-0c89e7d150e6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d6c940b5-3550-4431-a0f4-d8790d0602f4","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.48800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dcfac8d8-c2e1-41af-b97d-14a6702f5775","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.75300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184783,"total_pss":37951,"rss":137108,"native_total_heap":22396,"native_free_heap":1082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1af4715-71c6-4096-b51d-1b09c1510a77","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.34500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7cd6892-e6d0-4ce5-9aee-e48a6f6b8ffb","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:08.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":17282,"java_free_heap":0,"total_pss":62354,"rss":152784,"native_total_heap":25468,"native_free_heap":1309,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb18dbd3-d5bb-4059-bd43-0567e0ee26d0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.16200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ed7f4cca-0006-4457-8f63-2ca7f0c55746","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.91900000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_1","width":null,"height":null,"x":513.9624,"y":318.9624,"touch_down_time":5220784,"touch_up_time":5220874},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f053dac1-4070-49e5-8d53-fe7a76fe346f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.45600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f05491e2-bd17-44f6-afe8-28534919e941","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.32300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":533.9685,"y":1473.9478,"touch_down_time":5216213,"touch_up_time":5216280},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f09c7a45-26c0-49ff-8087-423ae2501de2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35120,"total_pss":54546,"rss":143484,"native_total_heap":23932,"native_free_heap":1122,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc4669b4-72f3-42c5-bffc-b138fdd3df40","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:59.07400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5212951,"end_time":5213032,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15346","content-type":"multipart/form-data; boundary=7451f413-ee15-4d38-b9d5-190422f17e18","host":"10.0.2.2:8080","msr-req-id":"e75f76c8-c1bb-452a-81a9-1f9c193a61d1","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:01 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc9fff6f-ddb1-4b32-8ccb-e516874a0d4d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3676,"total_pss":56315,"rss":142140,"native_total_heap":25468,"native_free_heap":2824,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe32e9ce-e868-46e3-bf3c-27d7660418e2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.52400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":499.95483,"y":816.9177,"touch_down_time":5219383,"touch_up_time":5219469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json b/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json index 181dba1c8..4ee8317d0 100644 --- a/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json +++ b/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json @@ -1 +1 @@ -[{"id":"05c2840e-7aee-407a-8ea4-4820b9b38db0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c593fd0-d2ac-423f-898f-ae0f9cdaa286","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.50600000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"239e86ed-b01b-4c37-afc6-42e1da18000f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.82700000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile"}},{"id":"47e74440-0422-4e5c-8931-e02064eb869b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.42400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_28","width":null,"height":null,"x":262.97974,"y":1862.8949,"touch_down_time":2903110,"touch_up_time":2903202},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5025cf2b-6177-4cde-a1e9-b7c95ac846fb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.01500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c00235-f2ef-4588-8159-c6d2e72220bf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.04600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_25","width":null,"height":null,"x":351.969,"y":1109.9323,"touch_down_time":2901703,"touch_up_time":2901824},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b4735f9-0ce4-4307-9744-01f92440e6dd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.74700000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2895451,"on_next_draw_uptime":2895527,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fc7e97a-690a-494e-89cd-ca50d55293d1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3215,"total_pss":40288,"rss":122460,"native_total_heap":25528,"native_free_heap":2535,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68407f81-cc09-4c12-b0a9-7c2781f05ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.78700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cd15ec6-e6ee-47d3-b1fb-7c827e018745","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.67100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2904452,"utime":105,"cutime":0,"cstime":0,"stime":114,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ed53956-2842-461b-934a-244c9d54780e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ee92316-e389-498d-8845-fbb66695c631","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:15.71900000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"76d321f1-561d-43c6-81c2-dfff4f4b9d2c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2907451,"utime":106,"cutime":0,"cstime":0,"stime":116,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fb28df4-233c-4b2f-8e9f-9aa9a1673936","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.81200000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_68","width":null,"height":null,"x":551.9641,"y":606.9635,"touch_down_time":2904429,"touch_up_time":2904591},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a58e74a-d4b1-43f2-9c63-161f3e85fc69","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.76700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_26","width":null,"height":null,"x":402.95654,"y":1343.9374,"touch_down_time":2902434,"touch_up_time":2902545},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e2ba629-fcb9-426c-ba5d-2c09f953c7ce","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.09700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_27","width":null,"height":null,"x":321.97632,"y":1709.9176,"touch_down_time":2902754,"touch_up_time":2902875},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"901df2fa-481b-4256-a115-c58db76e0df9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.90000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":487.95776,"y":159.95544,"touch_down_time":2900583,"touch_up_time":2900672},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9297d663-6fd9-4257-9caf-bec37138358e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.77100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2895537,"end_time":2895551,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"25214","content-type":"multipart/form-data; boundary=939f3916-22d4-4881-b6c2-e4a7b92ae647","host":"10.0.2.2:8080","msr-req-id":"41ab73cf-066a-415f-9e80-45974709df51","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:03 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9cd621a5-9f3e-45ee-a430-7a8116a1eef0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.41700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_24","width":null,"height":null,"x":517.9834,"y":972.9437,"touch_down_time":2902116,"touch_up_time":2902193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5b5721-2a7a-4bab-866a-8aacbb95972f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.95000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":590.9546,"y":1577.9425,"touch_down_time":2899644,"touch_up_time":2899729},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d6dafaf-08c9-4bca-8381-f3a6d920ad19","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.35700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":479.9817,"y":1347.9346,"end_x":483.96973,"end_y":781.9592,"direction":"up","touch_down_time":2901003,"touch_up_time":2901136},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8d78f5d-470a-4b39-bd74-85ca94007e34","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2901451,"utime":77,"cutime":0,"cstime":0,"stime":94,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa1fc6bc-5c2d-48cb-9649-41ba01760c8d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.67200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2910453,"utime":107,"cutime":0,"cstime":0,"stime":117,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2b6d3bc-a2b8-4b37-a3f4-d7ae3e4d62a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":382,"total_pss":45603,"rss":128920,"native_total_heap":26040,"native_free_heap":1758,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2fc695e-42c6-4421-b37e-047fc00e77cc","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1059,"total_pss":44295,"rss":127480,"native_total_heap":25784,"native_free_heap":2070,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd044dbf-6194-4221-a4eb-b8128481ed44","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2631,"total_pss":35167,"rss":114728,"native_total_heap":26040,"native_free_heap":3026,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdc82b97-4d07-4391-90b0-d3d5de39318d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.00300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c693a830-1b16-41b9-9c49-e77aceaacff3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:05.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2898451,"utime":60,"cutime":0,"cstime":0,"stime":79,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cac42eb3-d001-494c-bc7e-d6c2b08ebfda","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.02000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb73701f-b7aa-4e26-abe1-4641fe13bf86","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2913450,"utime":108,"cutime":0,"cstime":0,"stime":119,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd370963-6e96-4f0e-a9f1-885f3770d0b1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.20900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d617e679-9fd6-49d3-8868-f0bd23109484","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:12.67300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3123,"total_pss":45329,"rss":128976,"native_total_heap":26040,"native_free_heap":3195,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e161534c-eeb1-4e9f-939a-c53adde39797","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2767,"total_pss":34162,"rss":113740,"native_total_heap":26040,"native_free_heap":3072,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4a5a8fe-5582-4c21-84f2-8c0141fb660c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":906,"total_pss":41455,"rss":124696,"native_total_heap":25528,"native_free_heap":1646,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50388a6-c8ff-41f2-a517-0998796a9152","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:16.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2903,"total_pss":36780,"rss":120716,"native_total_heap":26040,"native_free_heap":3168,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f6eb16b4-17d9-4aff-b8c7-5e2b5b1b3223","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3003,"total_pss":44361,"rss":129196,"native_total_heap":26040,"native_free_heap":3166,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb52444a-e428-459a-920b-5053f88495af","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:04.67000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3303,"total_pss":40258,"rss":122460,"native_total_heap":25528,"native_free_heap":2571,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"05c2840e-7aee-407a-8ea4-4820b9b38db0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c593fd0-d2ac-423f-898f-ae0f9cdaa286","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.50600000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"239e86ed-b01b-4c37-afc6-42e1da18000f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.82700000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile"}},{"id":"47e74440-0422-4e5c-8931-e02064eb869b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.42400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_28","width":null,"height":null,"x":262.97974,"y":1862.8949,"touch_down_time":2903110,"touch_up_time":2903202},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5025cf2b-6177-4cde-a1e9-b7c95ac846fb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.01500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c00235-f2ef-4588-8159-c6d2e72220bf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.04600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_25","width":null,"height":null,"x":351.969,"y":1109.9323,"touch_down_time":2901703,"touch_up_time":2901824},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b4735f9-0ce4-4307-9744-01f92440e6dd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.74700000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2895451,"on_next_draw_uptime":2895527,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fc7e97a-690a-494e-89cd-ca50d55293d1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3215,"total_pss":40288,"rss":122460,"native_total_heap":25528,"native_free_heap":2535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68407f81-cc09-4c12-b0a9-7c2781f05ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.78700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cd15ec6-e6ee-47d3-b1fb-7c827e018745","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.67100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2904452,"utime":105,"cutime":0,"cstime":0,"stime":114,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ed53956-2842-461b-934a-244c9d54780e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ee92316-e389-498d-8845-fbb66695c631","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:15.71900000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"76d321f1-561d-43c6-81c2-dfff4f4b9d2c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2907451,"utime":106,"cutime":0,"cstime":0,"stime":116,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fb28df4-233c-4b2f-8e9f-9aa9a1673936","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.81200000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_68","width":null,"height":null,"x":551.9641,"y":606.9635,"touch_down_time":2904429,"touch_up_time":2904591},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a58e74a-d4b1-43f2-9c63-161f3e85fc69","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.76700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_26","width":null,"height":null,"x":402.95654,"y":1343.9374,"touch_down_time":2902434,"touch_up_time":2902545},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e2ba629-fcb9-426c-ba5d-2c09f953c7ce","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.09700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_27","width":null,"height":null,"x":321.97632,"y":1709.9176,"touch_down_time":2902754,"touch_up_time":2902875},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"901df2fa-481b-4256-a115-c58db76e0df9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.90000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":487.95776,"y":159.95544,"touch_down_time":2900583,"touch_up_time":2900672},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9297d663-6fd9-4257-9caf-bec37138358e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.77100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2895537,"end_time":2895551,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"25214","content-type":"multipart/form-data; boundary=939f3916-22d4-4881-b6c2-e4a7b92ae647","host":"10.0.2.2:8080","msr-req-id":"41ab73cf-066a-415f-9e80-45974709df51","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:03 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9cd621a5-9f3e-45ee-a430-7a8116a1eef0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.41700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_24","width":null,"height":null,"x":517.9834,"y":972.9437,"touch_down_time":2902116,"touch_up_time":2902193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5b5721-2a7a-4bab-866a-8aacbb95972f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.95000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":590.9546,"y":1577.9425,"touch_down_time":2899644,"touch_up_time":2899729},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d6dafaf-08c9-4bca-8381-f3a6d920ad19","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.35700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":479.9817,"y":1347.9346,"end_x":483.96973,"end_y":781.9592,"direction":"up","touch_down_time":2901003,"touch_up_time":2901136},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8d78f5d-470a-4b39-bd74-85ca94007e34","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2901451,"utime":77,"cutime":0,"cstime":0,"stime":94,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa1fc6bc-5c2d-48cb-9649-41ba01760c8d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.67200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2910453,"utime":107,"cutime":0,"cstime":0,"stime":117,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2b6d3bc-a2b8-4b37-a3f4-d7ae3e4d62a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":382,"total_pss":45603,"rss":128920,"native_total_heap":26040,"native_free_heap":1758,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2fc695e-42c6-4421-b37e-047fc00e77cc","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1059,"total_pss":44295,"rss":127480,"native_total_heap":25784,"native_free_heap":2070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd044dbf-6194-4221-a4eb-b8128481ed44","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2631,"total_pss":35167,"rss":114728,"native_total_heap":26040,"native_free_heap":3026,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdc82b97-4d07-4391-90b0-d3d5de39318d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.00300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c693a830-1b16-41b9-9c49-e77aceaacff3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:05.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2898451,"utime":60,"cutime":0,"cstime":0,"stime":79,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cac42eb3-d001-494c-bc7e-d6c2b08ebfda","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.02000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb73701f-b7aa-4e26-abe1-4641fe13bf86","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2913450,"utime":108,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd370963-6e96-4f0e-a9f1-885f3770d0b1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.20900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d617e679-9fd6-49d3-8868-f0bd23109484","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:12.67300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3123,"total_pss":45329,"rss":128976,"native_total_heap":26040,"native_free_heap":3195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e161534c-eeb1-4e9f-939a-c53adde39797","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2767,"total_pss":34162,"rss":113740,"native_total_heap":26040,"native_free_heap":3072,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4a5a8fe-5582-4c21-84f2-8c0141fb660c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":906,"total_pss":41455,"rss":124696,"native_total_heap":25528,"native_free_heap":1646,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50388a6-c8ff-41f2-a517-0998796a9152","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:16.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2903,"total_pss":36780,"rss":120716,"native_total_heap":26040,"native_free_heap":3168,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f6eb16b4-17d9-4aff-b8c7-5e2b5b1b3223","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3003,"total_pss":44361,"rss":129196,"native_total_heap":26040,"native_free_heap":3166,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb52444a-e428-459a-920b-5053f88495af","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:04.67000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3303,"total_pss":40258,"rss":122460,"native_total_heap":25528,"native_free_heap":2571,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json b/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json index 180a7ed35..8bf84f867 100644 --- a/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json +++ b/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json @@ -1 +1 @@ -[{"id":"03769843-62d1-4bc0-89d1-ec48eb6a4382","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.95600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33878,"total_pss":46806,"rss":142832,"native_total_heap":23292,"native_free_heap":1230,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18157661-4e89-4e7a-be00-0c0575c167eb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.77900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2915468,"end_time":2915560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41001","content-type":"multipart/form-data; boundary=e3d115e4-e341-4e4e-be38-8ab531e1ee5d","host":"10.0.2.2:8080","msr-req-id":"a7828add-b022-412d-9ec4-a30d6f219222","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45c8fe03-4b4e-40ac-b315-21a4105fcbd0","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33718,"total_pss":45269,"rss":140348,"native_total_heap":23292,"native_free_heap":1195,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f6c89f7-70cf-475c-a4c3-b6dd6355b379","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.14100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2927898,"end_time":2927922,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9574","content-type":"multipart/form-data; boundary=d66ee251-cfd1-4968-9bec-980bb5424458","host":"10.0.2.2:8080","msr-req-id":"3fe7faea-e996-4d4f-aa2e-519eca03fc18","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:35 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"634186f5-3902-41ab-8ed5-1f0b550aed78","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2275,"total_pss":37267,"rss":119036,"native_total_heap":26136,"native_free_heap":2717,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6aed1d02-aa24-4791-b5c8-84490de3199d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.28100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2919667,"process_start_requested_uptime":2919501,"content_provider_attach_uptime":2919726,"on_next_draw_uptime":2920062,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"741c6ff9-5cc5-4e25-8dfc-d829509db421","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:34.95900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33666,"total_pss":45078,"rss":140348,"native_total_heap":23292,"native_free_heap":1207,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818f3cc1-b21c-4767-b111-d7a557291c38","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:36.95800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15996,"java_free_heap":0,"total_pss":41063,"rss":129412,"native_total_heap":25084,"native_free_heap":3025,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8208fcb5-c2a0-4a05-8bd6-c0b39c438d2b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:27.39900000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"20369"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8838283e-3b86-4ebe-bf22-6239925ea9d4","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:30.95700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33790,"total_pss":47702,"rss":142864,"native_total_heap":23292,"native_free_heap":1195,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ede68c5-31c2-4e3a-9c31-d56497633308","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.95700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2919738,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29d8a-d468-4d71-acf8-a3b661794ed8","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991dc777-ae54-4083-8b56-5922c2e9a586","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.96900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184049,"total_pss":26805,"rss":128172,"native_total_heap":16996,"native_free_heap":1130,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a26475a8-c5c7-4886-8059-2d110797ea7d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.03500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7c4bed4-1137-4721-a538-ff5047811dbc","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.22600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":551.9641,"y":1334.9268,"touch_down_time":2920915,"touch_up_time":2921004},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2b41151-872e-4b06-bf7e-0b1377dea41b","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.15400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2919867,"end_time":2919935,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15732","content-type":"multipart/form-data; boundary=26f11352-19ae-4d2b-90a2-680f78041b7b","host":"10.0.2.2:8080","msr-req-id":"71d86857-e6e6-458f-be90-9a7831d3150b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:27 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c053dddd-f577-4d11-896b-54d5b01c1d20","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.95600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2928737,"utime":16,"cutime":0,"cstime":0,"stime":26,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c82e5f3e-05cb-47a0-bd3d-d146059a1a35","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2925741,"utime":13,"cutime":0,"cstime":0,"stime":20,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da22f99e-6036-4bd8-a421-389b4051c139","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.02300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5896c78-90ce-40e7-b5ee-438ecbcf85ab","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:29.95700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2922737,"utime":11,"cutime":0,"cstime":0,"stime":19,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7f0fec0-f725-4215-b17f-f90e956ad039","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.72800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":671.9678,"y":785.9564,"touch_down_time":2915401,"touch_up_time":2915506},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03769843-62d1-4bc0-89d1-ec48eb6a4382","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.95600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33878,"total_pss":46806,"rss":142832,"native_total_heap":23292,"native_free_heap":1230,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18157661-4e89-4e7a-be00-0c0575c167eb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.77900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2915468,"end_time":2915560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41001","content-type":"multipart/form-data; boundary=e3d115e4-e341-4e4e-be38-8ab531e1ee5d","host":"10.0.2.2:8080","msr-req-id":"a7828add-b022-412d-9ec4-a30d6f219222","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45c8fe03-4b4e-40ac-b315-21a4105fcbd0","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33718,"total_pss":45269,"rss":140348,"native_total_heap":23292,"native_free_heap":1195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f6c89f7-70cf-475c-a4c3-b6dd6355b379","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.14100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2927898,"end_time":2927922,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9574","content-type":"multipart/form-data; boundary=d66ee251-cfd1-4968-9bec-980bb5424458","host":"10.0.2.2:8080","msr-req-id":"3fe7faea-e996-4d4f-aa2e-519eca03fc18","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:35 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"634186f5-3902-41ab-8ed5-1f0b550aed78","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2275,"total_pss":37267,"rss":119036,"native_total_heap":26136,"native_free_heap":2717,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6aed1d02-aa24-4791-b5c8-84490de3199d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.28100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2919667,"process_start_requested_uptime":2919501,"content_provider_attach_uptime":2919726,"on_next_draw_uptime":2920062,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"741c6ff9-5cc5-4e25-8dfc-d829509db421","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:34.95900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33666,"total_pss":45078,"rss":140348,"native_total_heap":23292,"native_free_heap":1207,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818f3cc1-b21c-4767-b111-d7a557291c38","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:36.95800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15996,"java_free_heap":0,"total_pss":41063,"rss":129412,"native_total_heap":25084,"native_free_heap":3025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8208fcb5-c2a0-4a05-8bd6-c0b39c438d2b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:27.39900000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"20369"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8838283e-3b86-4ebe-bf22-6239925ea9d4","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:30.95700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33790,"total_pss":47702,"rss":142864,"native_total_heap":23292,"native_free_heap":1195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ede68c5-31c2-4e3a-9c31-d56497633308","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.95700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2919738,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29d8a-d468-4d71-acf8-a3b661794ed8","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991dc777-ae54-4083-8b56-5922c2e9a586","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.96900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184049,"total_pss":26805,"rss":128172,"native_total_heap":16996,"native_free_heap":1130,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a26475a8-c5c7-4886-8059-2d110797ea7d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.03500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7c4bed4-1137-4721-a538-ff5047811dbc","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.22600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":551.9641,"y":1334.9268,"touch_down_time":2920915,"touch_up_time":2921004},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2b41151-872e-4b06-bf7e-0b1377dea41b","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.15400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2919867,"end_time":2919935,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15732","content-type":"multipart/form-data; boundary=26f11352-19ae-4d2b-90a2-680f78041b7b","host":"10.0.2.2:8080","msr-req-id":"71d86857-e6e6-458f-be90-9a7831d3150b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:27 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c053dddd-f577-4d11-896b-54d5b01c1d20","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.95600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2928737,"utime":16,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c82e5f3e-05cb-47a0-bd3d-d146059a1a35","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2925741,"utime":13,"cutime":0,"cstime":0,"stime":20,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da22f99e-6036-4bd8-a421-389b4051c139","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.02300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5896c78-90ce-40e7-b5ee-438ecbcf85ab","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:29.95700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2922737,"utime":11,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7f0fec0-f725-4215-b17f-f90e956ad039","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.72800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":671.9678,"y":785.9564,"touch_down_time":2915401,"touch_up_time":2915506},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json b/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json index 32187b605..e207b3258 100644 --- a/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json +++ b/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json @@ -1 +1 @@ -[{"id":"0d2d16e3-1eb1-48d1-8228-6ab0883eac7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:32.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":29248,"rss":84528,"native_total_heap":26296,"native_free_heap":3222,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"170fdf6b-ca3e-4213-9a85-9005abd6dc77","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:27:40.90600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3111,"total_pss":28241,"rss":84380,"native_total_heap":26296,"native_free_heap":3214,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bef6841-523b-423f-bfc5-052945371083","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.04000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4074,"total_pss":27983,"rss":82372,"native_total_heap":26296,"native_free_heap":3359,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20959473-06a0-46b2-aacc-842991c6b080","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1320229,"utime":491,"cutime":0,"cstime":0,"stime":551,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d196ca3-8328-4752-8140-43d8f0c7344c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3094,"total_pss":27907,"rss":83116,"native_total_heap":26296,"native_free_heap":3181,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ea12a25-a2bb-428f-b7da-5c807fde98db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":27926,"rss":83116,"native_total_heap":26296,"native_free_heap":3165,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f02dd6d-a0f0-4825-8f6f-51e2455531fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:31.01500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1317227,"utime":490,"cutime":0,"cstime":0,"stime":550,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33caaf6f-b1f8-4183-8483-f468ef8199cb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:48.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1338,"total_pss":30717,"rss":85968,"native_total_heap":26296,"native_free_heap":2926,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4066f300-1e4c-4285-aa4c-620c29fd2486","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4091,"total_pss":27513,"rss":83996,"native_total_heap":26296,"native_free_heap":3390,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421b4a2d-dafe-4c63-98a3-b000541230a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":302,"total_pss":31251,"rss":87144,"native_total_heap":26296,"native_free_heap":2753,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"444e0750-2ae9-44a4-b374-d601145c1f74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:59.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3307,"total_pss":28973,"rss":85320,"native_total_heap":26296,"native_free_heap":3303,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47b6412c-2be3-469e-b507-e2c6e279317a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1038,"total_pss":29562,"rss":84760,"native_total_heap":26296,"native_free_heap":2820,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f42f714-8fa6-4fd2-b36b-b435cd0ad14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:30.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1178,"total_pss":28805,"rss":84064,"native_total_heap":26296,"native_free_heap":2873,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b4a6c5-449a-4b16-89ed-35b6f3b60ae1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:27.43400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1335226,"utime":502,"cutime":0,"cstime":0,"stime":560,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52794390-89b5-47fe-81b5-4358f15fdf9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:32.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":29584,"rss":84792,"native_total_heap":26296,"native_free_heap":2857,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5612db91-818f-4bb4-be06-6be729a08b93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1326229,"utime":496,"cutime":0,"cstime":0,"stime":554,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57ac5de4-287b-41f8-99a6-c5508660021e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312414,"end_time":1312416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"597d17b9-1498-4750-9326-3e5a30e858aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.21800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332398,"end_time":1332430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65585bf2-1e8a-462a-8167-17555b282af2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:03.20600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3183,"total_pss":28466,"rss":84740,"native_total_heap":26296,"native_free_heap":3251,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6713061f-fa34-4642-847c-19332ee1ce1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.55800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342433,"end_time":1342435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684969b6-a74a-4633-8918-f0f6df007712","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.20400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322405,"end_time":1322416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c5cc849-8ab2-45e8-9b5e-8895c797ab76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:28.43400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":29786,"rss":85220,"native_total_heap":26296,"native_free_heap":2889,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74663673-e158-4502-abf7-c0ab8f4de8cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1332229,"utime":499,"cutime":0,"cstime":0,"stime":557,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a2c0642-6c2b-4208-b5eb-bf065ff6f43e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:42.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29911,"rss":84716,"native_total_heap":26296,"native_free_heap":3041,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"822882e6-ad36-4b87-ab0d-a929745870e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:58.20800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1353228,"utime":512,"cutime":0,"cstime":0,"stime":571,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"915e969f-f8ba-48d1-9b02-cdfafa772543","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.54900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342407,"end_time":1342426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9240eb39-904f-4e48-bf4e-182d3c495b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:17.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":162,"total_pss":31315,"rss":87216,"native_total_heap":26296,"native_free_heap":2701,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"962133ac-b8a7-48b0-af5a-9c104391fb27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:30.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29438,"rss":84464,"native_total_heap":26296,"native_free_heap":3253,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1a5511a-031d-4810-bccd-a09683c7a374","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.39800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352407,"end_time":1352418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a416b084-15b5-4994-a193-6819bb8f7e4e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3235,"total_pss":29019,"rss":85320,"native_total_heap":26296,"native_free_heap":3267,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a471882e-f7a8-4fed-9e4e-3e7c6129d6ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.21400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322422,"end_time":1322426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"afd73f59-2127-488d-bebc-17a1f301d378","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:43.01600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1329228,"utime":497,"cutime":0,"cstime":0,"stime":556,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b33fbbd4-6672-4412-9200-3d890ffe1bb9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4143,"total_pss":28627,"rss":85100,"native_total_heap":26296,"native_free_heap":3406,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9ab31e1-c7ba-4249-bf09-b6217d0252c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.02000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2006,"total_pss":30014,"rss":84812,"native_total_heap":26296,"native_free_heap":2972,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb24f1db-fe37-4677-8aa4-900c8769d71d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:04.30000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1359320,"utime":514,"cutime":0,"cstime":0,"stime":574,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd7e69fe-d040-4fee-b7a9-33832419f289","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2218,"total_pss":29887,"rss":84716,"native_total_heap":26296,"native_free_heap":3061,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c155c115-2e57-4330-a7ce-a959e8016593","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.40900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352422,"end_time":1352429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c27d7de1-e12d-4141-aeaf-2c4a5a3eef22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:15.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":250,"total_pss":31263,"rss":87144,"native_total_heap":26296,"native_free_heap":2737,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2dac04a-85f5-4440-954e-5450c830cd78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1356227,"utime":513,"cutime":0,"cstime":0,"stime":573,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c96a6d08-cd09-42eb-ba74-8a68bc7e5c4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:10.34900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1341226,"utime":503,"cutime":0,"cstime":0,"stime":561,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cdbd9cc6-4933-46c2-b660-4a893db2009e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312400,"end_time":1312410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68b1383-d8fa-4233-beff-ac12ffa60172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1350226,"utime":509,"cutime":0,"cstime":0,"stime":568,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbdc30e5-a281-4446-8164-618289b8e87c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1314229,"utime":489,"cutime":0,"cstime":0,"stime":549,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e09024a1-5d3b-43d5-9498-fc3a74bdda18","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:37.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1323229,"utime":494,"cutime":0,"cstime":0,"stime":553,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e59633ea-2230-413c-bfd0-87c89c6f9802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:16.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1347227,"utime":506,"cutime":0,"cstime":0,"stime":567,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8f8a928-541d-4fea-b4b2-237dffbd0a39","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332437,"end_time":1332443,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaecff7-36ef-4ef2-b8c7-71020015a322","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:44.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29962,"rss":84812,"native_total_heap":26296,"native_free_heap":3009,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efc698e8-a320-4634-9355-2fc98b1b6375","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1344229,"utime":505,"cutime":0,"cstime":0,"stime":564,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fea4bc17-7cac-4039-98c1-ae07271c23a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:38.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2322,"total_pss":29835,"rss":84640,"native_total_heap":26296,"native_free_heap":3098,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff25e758-e926-4038-9094-b70c0b4983c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3306,"total_pss":29424,"rss":84464,"native_total_heap":26296,"native_free_heap":3274,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0d2d16e3-1eb1-48d1-8228-6ab0883eac7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:32.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":29248,"rss":84528,"native_total_heap":26296,"native_free_heap":3222,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"170fdf6b-ca3e-4213-9a85-9005abd6dc77","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:27:40.90600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3111,"total_pss":28241,"rss":84380,"native_total_heap":26296,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bef6841-523b-423f-bfc5-052945371083","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.04000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4074,"total_pss":27983,"rss":82372,"native_total_heap":26296,"native_free_heap":3359,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20959473-06a0-46b2-aacc-842991c6b080","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1320229,"utime":491,"cutime":0,"cstime":0,"stime":551,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d196ca3-8328-4752-8140-43d8f0c7344c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3094,"total_pss":27907,"rss":83116,"native_total_heap":26296,"native_free_heap":3181,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ea12a25-a2bb-428f-b7da-5c807fde98db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":27926,"rss":83116,"native_total_heap":26296,"native_free_heap":3165,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f02dd6d-a0f0-4825-8f6f-51e2455531fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:31.01500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1317227,"utime":490,"cutime":0,"cstime":0,"stime":550,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33caaf6f-b1f8-4183-8483-f468ef8199cb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:48.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1338,"total_pss":30717,"rss":85968,"native_total_heap":26296,"native_free_heap":2926,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4066f300-1e4c-4285-aa4c-620c29fd2486","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4091,"total_pss":27513,"rss":83996,"native_total_heap":26296,"native_free_heap":3390,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421b4a2d-dafe-4c63-98a3-b000541230a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":302,"total_pss":31251,"rss":87144,"native_total_heap":26296,"native_free_heap":2753,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"444e0750-2ae9-44a4-b374-d601145c1f74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:59.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3307,"total_pss":28973,"rss":85320,"native_total_heap":26296,"native_free_heap":3303,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47b6412c-2be3-469e-b507-e2c6e279317a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1038,"total_pss":29562,"rss":84760,"native_total_heap":26296,"native_free_heap":2820,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f42f714-8fa6-4fd2-b36b-b435cd0ad14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:30.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1178,"total_pss":28805,"rss":84064,"native_total_heap":26296,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b4a6c5-449a-4b16-89ed-35b6f3b60ae1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:27.43400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1335226,"utime":502,"cutime":0,"cstime":0,"stime":560,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52794390-89b5-47fe-81b5-4358f15fdf9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:32.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":29584,"rss":84792,"native_total_heap":26296,"native_free_heap":2857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5612db91-818f-4bb4-be06-6be729a08b93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1326229,"utime":496,"cutime":0,"cstime":0,"stime":554,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57ac5de4-287b-41f8-99a6-c5508660021e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312414,"end_time":1312416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"597d17b9-1498-4750-9326-3e5a30e858aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.21800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332398,"end_time":1332430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65585bf2-1e8a-462a-8167-17555b282af2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:03.20600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3183,"total_pss":28466,"rss":84740,"native_total_heap":26296,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6713061f-fa34-4642-847c-19332ee1ce1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.55800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342433,"end_time":1342435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684969b6-a74a-4633-8918-f0f6df007712","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.20400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322405,"end_time":1322416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c5cc849-8ab2-45e8-9b5e-8895c797ab76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:28.43400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":29786,"rss":85220,"native_total_heap":26296,"native_free_heap":2889,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74663673-e158-4502-abf7-c0ab8f4de8cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1332229,"utime":499,"cutime":0,"cstime":0,"stime":557,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a2c0642-6c2b-4208-b5eb-bf065ff6f43e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:42.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29911,"rss":84716,"native_total_heap":26296,"native_free_heap":3041,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"822882e6-ad36-4b87-ab0d-a929745870e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:58.20800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1353228,"utime":512,"cutime":0,"cstime":0,"stime":571,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"915e969f-f8ba-48d1-9b02-cdfafa772543","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.54900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342407,"end_time":1342426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9240eb39-904f-4e48-bf4e-182d3c495b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:17.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":162,"total_pss":31315,"rss":87216,"native_total_heap":26296,"native_free_heap":2701,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"962133ac-b8a7-48b0-af5a-9c104391fb27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:30.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29438,"rss":84464,"native_total_heap":26296,"native_free_heap":3253,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1a5511a-031d-4810-bccd-a09683c7a374","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.39800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352407,"end_time":1352418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a416b084-15b5-4994-a193-6819bb8f7e4e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3235,"total_pss":29019,"rss":85320,"native_total_heap":26296,"native_free_heap":3267,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a471882e-f7a8-4fed-9e4e-3e7c6129d6ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.21400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322422,"end_time":1322426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"afd73f59-2127-488d-bebc-17a1f301d378","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:43.01600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1329228,"utime":497,"cutime":0,"cstime":0,"stime":556,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b33fbbd4-6672-4412-9200-3d890ffe1bb9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4143,"total_pss":28627,"rss":85100,"native_total_heap":26296,"native_free_heap":3406,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9ab31e1-c7ba-4249-bf09-b6217d0252c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.02000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2006,"total_pss":30014,"rss":84812,"native_total_heap":26296,"native_free_heap":2972,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb24f1db-fe37-4677-8aa4-900c8769d71d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:04.30000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1359320,"utime":514,"cutime":0,"cstime":0,"stime":574,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd7e69fe-d040-4fee-b7a9-33832419f289","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2218,"total_pss":29887,"rss":84716,"native_total_heap":26296,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c155c115-2e57-4330-a7ce-a959e8016593","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.40900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352422,"end_time":1352429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c27d7de1-e12d-4141-aeaf-2c4a5a3eef22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:15.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":250,"total_pss":31263,"rss":87144,"native_total_heap":26296,"native_free_heap":2737,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2dac04a-85f5-4440-954e-5450c830cd78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1356227,"utime":513,"cutime":0,"cstime":0,"stime":573,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c96a6d08-cd09-42eb-ba74-8a68bc7e5c4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:10.34900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1341226,"utime":503,"cutime":0,"cstime":0,"stime":561,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cdbd9cc6-4933-46c2-b660-4a893db2009e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312400,"end_time":1312410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68b1383-d8fa-4233-beff-ac12ffa60172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1350226,"utime":509,"cutime":0,"cstime":0,"stime":568,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbdc30e5-a281-4446-8164-618289b8e87c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1314229,"utime":489,"cutime":0,"cstime":0,"stime":549,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e09024a1-5d3b-43d5-9498-fc3a74bdda18","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:37.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1323229,"utime":494,"cutime":0,"cstime":0,"stime":553,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e59633ea-2230-413c-bfd0-87c89c6f9802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:16.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1347227,"utime":506,"cutime":0,"cstime":0,"stime":567,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8f8a928-541d-4fea-b4b2-237dffbd0a39","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332437,"end_time":1332443,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaecff7-36ef-4ef2-b8c7-71020015a322","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:44.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29962,"rss":84812,"native_total_heap":26296,"native_free_heap":3009,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efc698e8-a320-4634-9355-2fc98b1b6375","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1344229,"utime":505,"cutime":0,"cstime":0,"stime":564,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fea4bc17-7cac-4039-98c1-ae07271c23a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:38.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2322,"total_pss":29835,"rss":84640,"native_total_heap":26296,"native_free_heap":3098,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff25e758-e926-4038-9094-b70c0b4983c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3306,"total_pss":29424,"rss":84464,"native_total_heap":26296,"native_free_heap":3274,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json b/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json index 9dd229e5b..a6e83497e 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json +++ b/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json @@ -1 +1 @@ -[{"id":"0487f8aa-1fc4-4468-b51e-9a75133c1dfa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32204,"total_pss":50867,"rss":125776,"native_total_heap":23804,"native_free_heap":1652,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07945d25-b935-4a82-9b38-8a3eb0345482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522409,"end_time":522420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"093ba921-a903-4bf8-8089-bbca39798769","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522397,"end_time":522404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10ded645-e619-466d-8ff6-5c4a6c0195b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502413,"end_time":502417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11841007-2085-458b-9e4c-d22a05250569","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31896,"total_pss":49882,"rss":126076,"native_total_heap":23804,"native_free_heap":1410,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"156888ef-e58f-456a-a8c5-6b5165d7a116","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":504227,"utime":28,"cutime":0,"cstime":0,"stime":35,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bb5bbd0-0889-4d19-821f-bb8a1e762fff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.74600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22053695-9e4e-473c-a519-394624404c0f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:42.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":531226,"utime":41,"cutime":0,"cstime":0,"stime":49,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2234af35-1a7d-4b69-bd43-18b83989f887","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532412,"end_time":532420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22e27086-70bb-495b-ac55-1b59618ce88a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532396,"end_time":532405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22ecbf1b-8db8-486b-aafb-de68a5cba591","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":507228,"utime":30,"cutime":0,"cstime":0,"stime":36,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274d15ec-ad0c-487d-8ac8-3c3efbf192a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3632,"total_pss":45816,"rss":119860,"native_total_heap":25016,"native_free_heap":2575,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28cc260d-bf7b-4ca0-b743-d6da3cf595d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":519227,"utime":35,"cutime":0,"cstime":0,"stime":42,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a0514c1-57f5-47c8-a404-a7efff8c4cb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.19700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":808,"total_pss":47134,"rss":122352,"native_total_heap":25016,"native_free_heap":2224,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c4918a8-b99e-4119-bd9a-63b00a25ebe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f7c8446-e347-4b33-bc0f-056ee6646312","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3808,"total_pss":46341,"rss":119036,"native_total_heap":25016,"native_free_heap":2643,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f3ecf2-6ba3-4b96-99e0-6dcc64516abf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1772,"total_pss":46240,"rss":121256,"native_total_heap":25016,"native_free_heap":2265,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3692dee3-3a49-40c8-a9b7-0ad9f28e1230","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":525227,"utime":39,"cutime":0,"cstime":0,"stime":46,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"410b8632-7599-4081-95b7-1ada1359adac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":528228,"utime":40,"cutime":0,"cstime":0,"stime":47,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"463310d8-8f11-4132-9baf-36e4510bef88","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":498226,"utime":17,"cutime":0,"cstime":0,"stime":25,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59062ca1-b7ae-4049-ae4a-fea864215233","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1860,"total_pss":46188,"rss":121256,"native_total_heap":25016,"native_free_heap":2302,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c450269-b3ca-4c76-8f72-a20da6dca770","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502398,"end_time":502406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d6eef18-962c-4672-b4fc-276ce35d47db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f47b545-ad9e-4e28-aa70-78290a7fe6f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.78100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65693d2f-8d95-464c-831c-415fa37b2681","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666f21e5-7819-43fc-985f-e5443f40f90f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2648,"total_pss":45595,"rss":120532,"native_total_heap":25016,"native_free_heap":2408,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684b68a1-86bc-41fc-8c9d-4029dceed3bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.26800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6900f217-420f-4bd3-975e-11a993b0cba8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.35100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512396,"end_time":512403,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cbc0cb4-8d8a-4c6f-af26-bf001f295f28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2756,"total_pss":45769,"rss":120532,"native_total_heap":25016,"native_free_heap":2460,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"713f2665-7a23-4934-bdb6-7fdbdeab9ad7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.71600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":413.96484,"y":1714.931,"touch_down_time":500712,"touch_up_time":500767},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b4adae6-dc4a-4633-9961-95b28769a5c8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2860,"total_pss":45719,"rss":120532,"native_total_heap":25016,"native_free_heap":2492,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"817bca42-dc1b-4a5b-aaee-9134d28227ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.29200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6b8c33a-4794-46df-be03-18dd0bdd0c2b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2720,"total_pss":45792,"rss":120532,"native_total_heap":25016,"native_free_heap":2440,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac5cc551-ef09-4ab2-bf8f-8ebbe3f0d51a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":510227,"utime":30,"cutime":0,"cstime":0,"stime":37,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"adaafd4c-ee13-4159-93a8-145642f127b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18251,"java_free_heap":0,"total_pss":55142,"rss":132740,"native_total_heap":24760,"native_free_heap":1538,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7caddea-dfbc-4902-b8dc-2c1d8b3e551c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1560,"total_pss":46392,"rss":121508,"native_total_heap":25016,"native_free_heap":2227,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c787697a-fbc7-4bec-af84-af0a2228a4e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:12.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":501227,"utime":24,"cutime":0,"cstime":0,"stime":33,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c81191e6-5c28-48eb-be11-e6214e4c2c95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":534230,"utime":42,"cutime":0,"cstime":0,"stime":50,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cce5273c-0745-4f1f-b2a5-80c2b1cddf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512407,"end_time":512416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55a508e-5330-4df5-915e-2435575a10bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3580,"total_pss":45840,"rss":119860,"native_total_heap":25016,"native_free_heap":2559,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7de74d0-981c-4d51-b243-b8b2a236584a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2544,"total_pss":45617,"rss":120536,"native_total_heap":25016,"native_free_heap":2371,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d993184e-c36c-4684-ab22-9baf7903b8cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1684,"total_pss":46292,"rss":121256,"native_total_heap":25016,"native_free_heap":2233,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da17cb26-b85a-4d52-8866-e5cf0581a5ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.24100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcf1120f-3885-4006-8221-669bd701442e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":522229,"utime":36,"cutime":0,"cstime":0,"stime":43,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e571b1b6-6efa-4e75-97fe-63b204a4ce58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":516227,"utime":34,"cutime":0,"cstime":0,"stime":40,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6969df5-f1ba-403b-851e-296c2527bc70","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3704,"total_pss":46271,"rss":119860,"native_total_heap":25016,"native_free_heap":2611,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea7950e6-e1e3-4543-b0ff-942fd3eb2cac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bbe3d7-dcd1-40de-a720-2a8ab5e3ef27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":513228,"utime":33,"cutime":0,"cstime":0,"stime":39,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9346409-8cc1-46ca-a2c8-90bde0af5705","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1664,"total_pss":46316,"rss":121256,"native_total_heap":25016,"native_free_heap":2213,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc7c7803-514f-40dc-a97f-7b8816e158f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3860,"total_pss":47084,"rss":119012,"native_total_heap":25016,"native_free_heap":2663,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0487f8aa-1fc4-4468-b51e-9a75133c1dfa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32204,"total_pss":50867,"rss":125776,"native_total_heap":23804,"native_free_heap":1652,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07945d25-b935-4a82-9b38-8a3eb0345482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522409,"end_time":522420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"093ba921-a903-4bf8-8089-bbca39798769","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522397,"end_time":522404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10ded645-e619-466d-8ff6-5c4a6c0195b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502413,"end_time":502417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11841007-2085-458b-9e4c-d22a05250569","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31896,"total_pss":49882,"rss":126076,"native_total_heap":23804,"native_free_heap":1410,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"156888ef-e58f-456a-a8c5-6b5165d7a116","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":504227,"utime":28,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bb5bbd0-0889-4d19-821f-bb8a1e762fff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.74600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22053695-9e4e-473c-a519-394624404c0f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:42.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":531226,"utime":41,"cutime":0,"cstime":0,"stime":49,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2234af35-1a7d-4b69-bd43-18b83989f887","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532412,"end_time":532420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22e27086-70bb-495b-ac55-1b59618ce88a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532396,"end_time":532405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22ecbf1b-8db8-486b-aafb-de68a5cba591","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":507228,"utime":30,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274d15ec-ad0c-487d-8ac8-3c3efbf192a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3632,"total_pss":45816,"rss":119860,"native_total_heap":25016,"native_free_heap":2575,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28cc260d-bf7b-4ca0-b743-d6da3cf595d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":519227,"utime":35,"cutime":0,"cstime":0,"stime":42,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a0514c1-57f5-47c8-a404-a7efff8c4cb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.19700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":808,"total_pss":47134,"rss":122352,"native_total_heap":25016,"native_free_heap":2224,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c4918a8-b99e-4119-bd9a-63b00a25ebe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f7c8446-e347-4b33-bc0f-056ee6646312","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3808,"total_pss":46341,"rss":119036,"native_total_heap":25016,"native_free_heap":2643,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f3ecf2-6ba3-4b96-99e0-6dcc64516abf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1772,"total_pss":46240,"rss":121256,"native_total_heap":25016,"native_free_heap":2265,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3692dee3-3a49-40c8-a9b7-0ad9f28e1230","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":525227,"utime":39,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"410b8632-7599-4081-95b7-1ada1359adac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":528228,"utime":40,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"463310d8-8f11-4132-9baf-36e4510bef88","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":498226,"utime":17,"cutime":0,"cstime":0,"stime":25,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59062ca1-b7ae-4049-ae4a-fea864215233","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1860,"total_pss":46188,"rss":121256,"native_total_heap":25016,"native_free_heap":2302,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c450269-b3ca-4c76-8f72-a20da6dca770","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502398,"end_time":502406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d6eef18-962c-4672-b4fc-276ce35d47db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f47b545-ad9e-4e28-aa70-78290a7fe6f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.78100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65693d2f-8d95-464c-831c-415fa37b2681","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666f21e5-7819-43fc-985f-e5443f40f90f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2648,"total_pss":45595,"rss":120532,"native_total_heap":25016,"native_free_heap":2408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684b68a1-86bc-41fc-8c9d-4029dceed3bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.26800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6900f217-420f-4bd3-975e-11a993b0cba8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.35100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512396,"end_time":512403,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cbc0cb4-8d8a-4c6f-af26-bf001f295f28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2756,"total_pss":45769,"rss":120532,"native_total_heap":25016,"native_free_heap":2460,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"713f2665-7a23-4934-bdb6-7fdbdeab9ad7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.71600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":413.96484,"y":1714.931,"touch_down_time":500712,"touch_up_time":500767},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b4adae6-dc4a-4633-9961-95b28769a5c8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2860,"total_pss":45719,"rss":120532,"native_total_heap":25016,"native_free_heap":2492,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"817bca42-dc1b-4a5b-aaee-9134d28227ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.29200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6b8c33a-4794-46df-be03-18dd0bdd0c2b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2720,"total_pss":45792,"rss":120532,"native_total_heap":25016,"native_free_heap":2440,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac5cc551-ef09-4ab2-bf8f-8ebbe3f0d51a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":510227,"utime":30,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"adaafd4c-ee13-4159-93a8-145642f127b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18251,"java_free_heap":0,"total_pss":55142,"rss":132740,"native_total_heap":24760,"native_free_heap":1538,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7caddea-dfbc-4902-b8dc-2c1d8b3e551c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1560,"total_pss":46392,"rss":121508,"native_total_heap":25016,"native_free_heap":2227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c787697a-fbc7-4bec-af84-af0a2228a4e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:12.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":501227,"utime":24,"cutime":0,"cstime":0,"stime":33,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c81191e6-5c28-48eb-be11-e6214e4c2c95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":534230,"utime":42,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cce5273c-0745-4f1f-b2a5-80c2b1cddf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512407,"end_time":512416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55a508e-5330-4df5-915e-2435575a10bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3580,"total_pss":45840,"rss":119860,"native_total_heap":25016,"native_free_heap":2559,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7de74d0-981c-4d51-b243-b8b2a236584a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2544,"total_pss":45617,"rss":120536,"native_total_heap":25016,"native_free_heap":2371,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d993184e-c36c-4684-ab22-9baf7903b8cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1684,"total_pss":46292,"rss":121256,"native_total_heap":25016,"native_free_heap":2233,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da17cb26-b85a-4d52-8866-e5cf0581a5ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.24100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcf1120f-3885-4006-8221-669bd701442e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":522229,"utime":36,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e571b1b6-6efa-4e75-97fe-63b204a4ce58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":516227,"utime":34,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6969df5-f1ba-403b-851e-296c2527bc70","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3704,"total_pss":46271,"rss":119860,"native_total_heap":25016,"native_free_heap":2611,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea7950e6-e1e3-4543-b0ff-942fd3eb2cac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bbe3d7-dcd1-40de-a720-2a8ab5e3ef27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":513228,"utime":33,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9346409-8cc1-46ca-a2c8-90bde0af5705","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1664,"total_pss":46316,"rss":121256,"native_total_heap":25016,"native_free_heap":2213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc7c7803-514f-40dc-a97f-7b8816e158f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3860,"total_pss":47084,"rss":119012,"native_total_heap":25016,"native_free_heap":2663,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json b/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json index 009877bd6..f137bc3b1 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json +++ b/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json @@ -1 +1 @@ -[{"id":"0e3e195f-ddf5-4ce1-9996-1cad4313ff7d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.18700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":232,"total_pss":35929,"rss":105628,"native_total_heap":25272,"native_free_heap":2188,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b8398f9-79d7-4970-9fab-5e2ac7591892","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":606227,"utime":94,"cutime":0,"cstime":0,"stime":112,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1caeb8b2-bf4f-47c9-9dcf-264d3b7dc14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":585227,"utime":82,"cutime":0,"cstime":0,"stime":91,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e5f0425-c323-4845-aa4c-bba8d7734e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":612228,"utime":96,"cutime":0,"cstime":0,"stime":117,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1fb141a2-1a1c-4c2c-a71d-8b89e001ee61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4124,"total_pss":32078,"rss":101672,"native_total_heap":25272,"native_free_heap":3381,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2390d198-9214-4d89-8cc7-6ae7de7f6192","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1144,"total_pss":34690,"rss":104436,"native_total_heap":25528,"native_free_heap":2886,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"240a5127-fcf6-4ad3-91bd-93e728df0ceb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":621228,"utime":105,"cutime":0,"cstime":0,"stime":122,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed97ef6-9b13-406e-a397-f7b28d01ce7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622425,"end_time":622437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2fc46c3b-30d8-4354-bd18-db7f59945750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":594228,"utime":88,"cutime":0,"cstime":0,"stime":100,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35470867-5215-48ae-a258-4f03f0660661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2216,"total_pss":33905,"rss":103360,"native_total_heap":25528,"native_free_heap":3094,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3976cae1-941d-4fc0-9e01-c1aa55b87e50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2128,"total_pss":33934,"rss":103360,"native_total_heap":25528,"native_free_heap":3062,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c8ee1ad-c2c3-4fb4-bbfc-0cbffb73e777","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":615228,"utime":101,"cutime":0,"cstime":0,"stime":119,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4207cf94-1893-43fd-9b06-21e2583c782f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":627227,"utime":110,"cutime":0,"cstime":0,"stime":127,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"422ceae4-5855-4250-bac0-fd6172feed1d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592426,"end_time":592435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b15f7dc-2966-4b65-bd11-b12e524918b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":591228,"utime":86,"cutime":0,"cstime":0,"stime":98,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"509911e7-01df-4a24-8a1f-8b2059aa6f19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":588231,"utime":83,"cutime":0,"cstime":0,"stime":94,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50c1bef5-f496-4e4d-afc0-4e74956cb172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1180,"total_pss":34666,"rss":104436,"native_total_heap":25528,"native_free_heap":2902,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6263db89-5e38-4af6-8238-18ab890a7524","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":392,"total_pss":35831,"rss":105408,"native_total_heap":25016,"native_free_heap":2193,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6432f1d9-6083-403e-8ba5-259401e70c57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622398,"end_time":622417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"672706f5-50fb-456a-804f-5acb81b0cee3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3340,"total_pss":32722,"rss":102104,"native_total_heap":25272,"native_free_heap":3314,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81d4960a-d685-443f-ba36-822e6338e3c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1284,"total_pss":34698,"rss":104436,"native_total_heap":25528,"native_free_heap":2938,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a4ff800-fdae-428f-ba9b-bd3380a9bda5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2340,"total_pss":33836,"rss":103360,"native_total_heap":25528,"native_free_heap":3146,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b2ce96c-fced-4092-829e-dcc8f20a757a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632397,"end_time":632413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90eccd70-7203-42ca-a8e5-54cb9eab7e73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4105,"total_pss":32195,"rss":102172,"native_total_heap":25528,"native_free_heap":3400,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"926061f7-593e-4663-a381-1348abfc71b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":624228,"utime":108,"cutime":0,"cstime":0,"stime":124,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9291c2ec-6b02-4121-8a31-6f99af5fcb73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3304,"total_pss":32746,"rss":102104,"native_total_heap":25272,"native_free_heap":3298,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96829291-b76b-4099-81fe-7a55b70c4f29","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":92,"total_pss":35455,"rss":105268,"native_total_heap":25528,"native_free_heap":2680,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a28f1149-a271-4762-b574-dc1f6a3df9c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2056,"total_pss":33994,"rss":103608,"native_total_heap":25528,"native_free_heap":3021,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b19c1c98-159b-4fd8-bfe5-d8688d61a75f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592399,"end_time":592416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1e0b2c0-9684-4967-bf44-3a650ad58282","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":600229,"utime":90,"cutime":0,"cstime":0,"stime":106,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b29595c3-eb91-4bed-afcd-3602ffe7887d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1356,"total_pss":34646,"rss":104224,"native_total_heap":25528,"native_free_heap":2970,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b918c202-9dac-4da5-a814-7b78ca84d6d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":304,"total_pss":35208,"rss":104940,"native_total_heap":25528,"native_free_heap":2769,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9c73c45-f130-42ff-a584-3f34706a21b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602417,"end_time":602427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba0c7e47-39de-4fea-a679-55fc76fd513f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":609227,"utime":95,"cutime":0,"cstime":0,"stime":115,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfe96429-fbfa-42f4-bf6c-a54d7b3d801d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":597228,"utime":90,"cutime":0,"cstime":0,"stime":103,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d086aa8f-5bb5-4e1c-8113-f71b9c109b86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3076,"total_pss":33152,"rss":102604,"native_total_heap":25272,"native_free_heap":3214,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3781dd4-8bf0-4954-b281-04677b28a5c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1072,"total_pss":34742,"rss":104436,"native_total_heap":25528,"native_free_heap":2854,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d40099ab-425a-4d61-97ee-c409e488a23a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3216,"total_pss":32798,"rss":102104,"native_total_heap":25272,"native_free_heap":3266,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5e1f619-8f72-468c-ad52-d5f7170287f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":630232,"utime":112,"cutime":0,"cstime":0,"stime":129,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9919b9f-805f-46c7-ba36-b97d465f1055","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2268,"total_pss":33892,"rss":103360,"native_total_heap":25528,"native_free_heap":3110,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df0d1a85-b0c2-4e88-bef1-f536b42d3e12","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3144,"total_pss":32886,"rss":102308,"native_total_heap":25272,"native_free_heap":3225,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa598c3-3fb2-4332-bab5-b6d91c3008c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4212,"total_pss":32022,"rss":101672,"native_total_heap":25272,"native_free_heap":3417,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dffc3f14-0be9-42a1-ba58-0b020c080195","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612427,"end_time":612435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3cec7ab-11c6-4a94-bc7c-7674fd5a8a55","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":180,"total_pss":35271,"rss":104940,"native_total_heap":25528,"native_free_heap":2716,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ed872c-c417-46a1-860b-84344c57aa76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":284,"total_pss":35219,"rss":104940,"native_total_heap":25528,"native_free_heap":2748,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ede71c85-92c1-43ab-bb56-62df01ccc7c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":320,"total_pss":35907,"rss":105408,"native_total_heap":25016,"native_free_heap":2173,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f05d8b3a-0f8c-4f64-9a20-bb4866f7282d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612398,"end_time":612419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8ad8d9b-bc0d-4796-9c3a-cf9e4261a426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602397,"end_time":602410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f98a4edd-514c-41bf-9ec1-c0d649c13540","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":603227,"utime":93,"cutime":0,"cstime":0,"stime":110,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc4d273-4b31-48d9-8350-7417d6305bd1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":618227,"utime":102,"cutime":0,"cstime":0,"stime":120,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0e3e195f-ddf5-4ce1-9996-1cad4313ff7d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.18700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":232,"total_pss":35929,"rss":105628,"native_total_heap":25272,"native_free_heap":2188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b8398f9-79d7-4970-9fab-5e2ac7591892","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":606227,"utime":94,"cutime":0,"cstime":0,"stime":112,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1caeb8b2-bf4f-47c9-9dcf-264d3b7dc14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":585227,"utime":82,"cutime":0,"cstime":0,"stime":91,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e5f0425-c323-4845-aa4c-bba8d7734e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":612228,"utime":96,"cutime":0,"cstime":0,"stime":117,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1fb141a2-1a1c-4c2c-a71d-8b89e001ee61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4124,"total_pss":32078,"rss":101672,"native_total_heap":25272,"native_free_heap":3381,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2390d198-9214-4d89-8cc7-6ae7de7f6192","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1144,"total_pss":34690,"rss":104436,"native_total_heap":25528,"native_free_heap":2886,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"240a5127-fcf6-4ad3-91bd-93e728df0ceb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":621228,"utime":105,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed97ef6-9b13-406e-a397-f7b28d01ce7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622425,"end_time":622437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2fc46c3b-30d8-4354-bd18-db7f59945750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":594228,"utime":88,"cutime":0,"cstime":0,"stime":100,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35470867-5215-48ae-a258-4f03f0660661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2216,"total_pss":33905,"rss":103360,"native_total_heap":25528,"native_free_heap":3094,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3976cae1-941d-4fc0-9e01-c1aa55b87e50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2128,"total_pss":33934,"rss":103360,"native_total_heap":25528,"native_free_heap":3062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c8ee1ad-c2c3-4fb4-bbfc-0cbffb73e777","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":615228,"utime":101,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4207cf94-1893-43fd-9b06-21e2583c782f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":627227,"utime":110,"cutime":0,"cstime":0,"stime":127,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"422ceae4-5855-4250-bac0-fd6172feed1d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592426,"end_time":592435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b15f7dc-2966-4b65-bd11-b12e524918b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":591228,"utime":86,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"509911e7-01df-4a24-8a1f-8b2059aa6f19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":588231,"utime":83,"cutime":0,"cstime":0,"stime":94,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50c1bef5-f496-4e4d-afc0-4e74956cb172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1180,"total_pss":34666,"rss":104436,"native_total_heap":25528,"native_free_heap":2902,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6263db89-5e38-4af6-8238-18ab890a7524","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":392,"total_pss":35831,"rss":105408,"native_total_heap":25016,"native_free_heap":2193,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6432f1d9-6083-403e-8ba5-259401e70c57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622398,"end_time":622417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"672706f5-50fb-456a-804f-5acb81b0cee3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3340,"total_pss":32722,"rss":102104,"native_total_heap":25272,"native_free_heap":3314,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81d4960a-d685-443f-ba36-822e6338e3c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1284,"total_pss":34698,"rss":104436,"native_total_heap":25528,"native_free_heap":2938,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a4ff800-fdae-428f-ba9b-bd3380a9bda5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2340,"total_pss":33836,"rss":103360,"native_total_heap":25528,"native_free_heap":3146,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b2ce96c-fced-4092-829e-dcc8f20a757a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632397,"end_time":632413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90eccd70-7203-42ca-a8e5-54cb9eab7e73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4105,"total_pss":32195,"rss":102172,"native_total_heap":25528,"native_free_heap":3400,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"926061f7-593e-4663-a381-1348abfc71b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":624228,"utime":108,"cutime":0,"cstime":0,"stime":124,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9291c2ec-6b02-4121-8a31-6f99af5fcb73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3304,"total_pss":32746,"rss":102104,"native_total_heap":25272,"native_free_heap":3298,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96829291-b76b-4099-81fe-7a55b70c4f29","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":92,"total_pss":35455,"rss":105268,"native_total_heap":25528,"native_free_heap":2680,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a28f1149-a271-4762-b574-dc1f6a3df9c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2056,"total_pss":33994,"rss":103608,"native_total_heap":25528,"native_free_heap":3021,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b19c1c98-159b-4fd8-bfe5-d8688d61a75f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592399,"end_time":592416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1e0b2c0-9684-4967-bf44-3a650ad58282","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":600229,"utime":90,"cutime":0,"cstime":0,"stime":106,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b29595c3-eb91-4bed-afcd-3602ffe7887d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1356,"total_pss":34646,"rss":104224,"native_total_heap":25528,"native_free_heap":2970,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b918c202-9dac-4da5-a814-7b78ca84d6d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":304,"total_pss":35208,"rss":104940,"native_total_heap":25528,"native_free_heap":2769,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9c73c45-f130-42ff-a584-3f34706a21b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602417,"end_time":602427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba0c7e47-39de-4fea-a679-55fc76fd513f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":609227,"utime":95,"cutime":0,"cstime":0,"stime":115,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfe96429-fbfa-42f4-bf6c-a54d7b3d801d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":597228,"utime":90,"cutime":0,"cstime":0,"stime":103,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d086aa8f-5bb5-4e1c-8113-f71b9c109b86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3076,"total_pss":33152,"rss":102604,"native_total_heap":25272,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3781dd4-8bf0-4954-b281-04677b28a5c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1072,"total_pss":34742,"rss":104436,"native_total_heap":25528,"native_free_heap":2854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d40099ab-425a-4d61-97ee-c409e488a23a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3216,"total_pss":32798,"rss":102104,"native_total_heap":25272,"native_free_heap":3266,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5e1f619-8f72-468c-ad52-d5f7170287f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":630232,"utime":112,"cutime":0,"cstime":0,"stime":129,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9919b9f-805f-46c7-ba36-b97d465f1055","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2268,"total_pss":33892,"rss":103360,"native_total_heap":25528,"native_free_heap":3110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df0d1a85-b0c2-4e88-bef1-f536b42d3e12","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3144,"total_pss":32886,"rss":102308,"native_total_heap":25272,"native_free_heap":3225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa598c3-3fb2-4332-bab5-b6d91c3008c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4212,"total_pss":32022,"rss":101672,"native_total_heap":25272,"native_free_heap":3417,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dffc3f14-0be9-42a1-ba58-0b020c080195","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612427,"end_time":612435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3cec7ab-11c6-4a94-bc7c-7674fd5a8a55","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":180,"total_pss":35271,"rss":104940,"native_total_heap":25528,"native_free_heap":2716,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ed872c-c417-46a1-860b-84344c57aa76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":284,"total_pss":35219,"rss":104940,"native_total_heap":25528,"native_free_heap":2748,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ede71c85-92c1-43ab-bb56-62df01ccc7c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":320,"total_pss":35907,"rss":105408,"native_total_heap":25016,"native_free_heap":2173,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f05d8b3a-0f8c-4f64-9a20-bb4866f7282d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612398,"end_time":612419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8ad8d9b-bc0d-4796-9c3a-cf9e4261a426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602397,"end_time":602410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f98a4edd-514c-41bf-9ec1-c0d649c13540","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":603227,"utime":93,"cutime":0,"cstime":0,"stime":110,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc4d273-4b31-48d9-8350-7417d6305bd1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":618227,"utime":102,"cutime":0,"cstime":0,"stime":120,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json b/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json index df57f0216..cdc3ed351 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json +++ b/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json @@ -1 +1 @@ -[{"id":"0f486a31-13e0-4680-a006-bf8142f781f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":232,"total_pss":35933,"rss":108052,"native_total_heap":25784,"native_free_heap":2718,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e44115-74b1-4ab2-9045-467a1871ca0e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842419,"end_time":842428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19838b15-9daa-4dd0-b416-7cfc8bc76073","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":828228,"utime":238,"cutime":0,"cstime":0,"stime":270,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21e2de20-c222-44a2-b261-2b9a30f6fa3d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":867227,"utime":261,"cutime":0,"cstime":0,"stime":294,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"226d5075-ece6-4a45-8890-ff4775644e93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2108,"total_pss":34298,"rss":106248,"native_total_heap":25784,"native_free_heap":3023,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"266b15ce-ea9e-4378-af21-d13dde13a303","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":117,"total_pss":36092,"rss":108236,"native_total_heap":25784,"native_free_heap":2693,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28695ebc-ddd2-466f-818a-2f46c3772100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3180,"total_pss":33432,"rss":105052,"native_total_heap":25784,"native_free_heap":3227,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"311122e5-391d-47ea-932c-a7d14364b34a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":831228,"utime":240,"cutime":0,"cstime":0,"stime":273,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31188392-75e0-4301-89e2-04354ac18034","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862418,"end_time":862427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37cf933b-2d81-4ed2-9ebc-671a3c655899","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4248,"total_pss":32548,"rss":104544,"native_total_heap":25784,"native_free_heap":3415,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bd5b9c6-9da8-4f99-98cd-b77b4d1aef46","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":849227,"utime":251,"cutime":0,"cstime":0,"stime":284,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4952689c-b57c-4c83-99be-e901fc689228","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":852227,"utime":252,"cutime":0,"cstime":0,"stime":284,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4af015e6-b95d-4461-99ec-50adbba800bd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":864228,"utime":260,"cutime":0,"cstime":0,"stime":291,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ec5d6d0-8224-4f15-af3e-3e7b1bd52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":336,"total_pss":35877,"rss":108052,"native_total_heap":25784,"native_free_heap":2750,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ee150ba-add4-4b52-9601-697d535e55d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.37300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832414,"end_time":832425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"51bb64ce-7db3-4273-9516-54202752d9b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":846227,"utime":249,"cutime":0,"cstime":0,"stime":282,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5caf58d4-2c08-4b7a-a059-ab2a920f79e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4160,"total_pss":32604,"rss":104544,"native_total_heap":25784,"native_free_heap":3378,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d75ef0c-4c69-41a9-bf81-0bce01787d36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":840228,"utime":245,"cutime":0,"cstime":0,"stime":279,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0229e7-0f27-42da-8b35-6b52c715abbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":861227,"utime":257,"cutime":0,"cstime":0,"stime":289,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0ef01b-b51b-45ba-9d64-54647eebd643","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":858227,"utime":255,"cutime":0,"cstime":0,"stime":288,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6074cfbf-ff0a-4c5e-a487-5457554af19a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":144,"total_pss":35993,"rss":108392,"native_total_heap":25784,"native_free_heap":2682,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6202edd1-d5f5-43b2-8c0c-d4e303bf667c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":843227,"utime":248,"cutime":0,"cstime":0,"stime":281,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63c3bf45-503e-4835-9fb3-673cb6fba8a1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1196,"total_pss":35070,"rss":106972,"native_total_heap":25784,"native_free_heap":2870,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68be5ce3-9040-4668-8c9e-bf69321ae61c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":873227,"utime":265,"cutime":0,"cstime":0,"stime":297,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"695a11eb-504c-45b3-9248-53426a780ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852396,"end_time":852409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c9da54-59a0-4735-820b-5bae1a75f806","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2268,"total_pss":34216,"rss":106248,"native_total_heap":25784,"native_free_heap":3092,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79437902-df12-47aa-90ed-7fd3ef339d87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1336,"total_pss":34994,"rss":106972,"native_total_heap":25784,"native_free_heap":2922,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a37f81d-0971-464b-bdeb-f7903f57c70c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3252,"total_pss":33380,"rss":105052,"native_total_heap":25784,"native_free_heap":3264,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b995164-390e-4c94-9afe-45a4e96ca5c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4134,"total_pss":32837,"rss":105056,"native_total_heap":25784,"native_free_heap":3403,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f8e1a88-0288-42ff-a3bd-f2c63b92b038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872396,"end_time":872405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a01853c0-cece-4752-bcb2-950364fa7a72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832398,"end_time":832409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a300e144-952a-4300-ae34-f3939c6c01a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":356,"total_pss":35853,"rss":108052,"native_total_heap":25784,"native_free_heap":2771,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a30e40ee-67ca-4358-b531-c6e8d3cc3e9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:06.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":855227,"utime":255,"cutime":0,"cstime":0,"stime":287,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a3920866-30a0-46c4-bea8-01615cef31ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862398,"end_time":862409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa0c554a-dabc-44fa-a531-4c0018c7e7e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2320,"total_pss":34196,"rss":106248,"native_total_heap":25784,"native_free_heap":3108,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac01d7c1-be49-4ccd-b7df-58a9fcd1a29d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":870227,"utime":262,"cutime":0,"cstime":0,"stime":295,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac228053-25f7-4400-a05a-6552b1917dfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1124,"total_pss":35122,"rss":106972,"native_total_heap":25784,"native_free_heap":2838,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad35374d-e21f-4f45-b464-5500b53e5f27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":837228,"utime":244,"cutime":0,"cstime":0,"stime":277,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8d0617-f444-49f1-b592-be97bf080ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842397,"end_time":842409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdb2d5b6-23b0-45bc-b865-16e8c7650508","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3128,"total_pss":33456,"rss":105512,"native_total_heap":25784,"native_free_heap":3211,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beb81a25-2f59-420f-b32f-0e00f071a1cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1408,"total_pss":34942,"rss":106756,"native_total_heap":25784,"native_free_heap":2954,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6d926da-ceec-4e5b-8d6f-5ae51477520b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1232,"total_pss":35046,"rss":106972,"native_total_heap":25784,"native_free_heap":2886,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0dc1f41-70fc-4236-a0a9-b6ef0d3c9e38","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2180,"total_pss":34238,"rss":106248,"native_total_heap":25784,"native_free_heap":3060,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6ac5fda-cd8c-46ae-9a4f-5e2f723fe02c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872408,"end_time":872411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb5b09a-2fa6-4db8-a780-8e5b17914801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":834227,"utime":242,"cutime":0,"cstime":0,"stime":275,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f1ff5a-4564-490d-86b3-3be3776bb908","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2392,"total_pss":34140,"rss":106248,"native_total_heap":25784,"native_free_heap":3144,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e46af755-6ed5-428e-a4fb-10e06f0ade7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":205,"total_pss":36097,"rss":108152,"native_total_heap":25784,"native_free_heap":2730,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7fc7f66-1416-4e47-b988-22ea014213c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3376,"total_pss":33304,"rss":105052,"native_total_heap":25784,"native_free_heap":3311,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea225995-24a3-4870-9da6-9c8062db930c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3340,"total_pss":33328,"rss":105052,"native_total_heap":25784,"native_free_heap":3295,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffc0f21e-fd0d-445e-a5eb-a833b1658d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852415,"end_time":852420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0f486a31-13e0-4680-a006-bf8142f781f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":232,"total_pss":35933,"rss":108052,"native_total_heap":25784,"native_free_heap":2718,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e44115-74b1-4ab2-9045-467a1871ca0e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842419,"end_time":842428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19838b15-9daa-4dd0-b416-7cfc8bc76073","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":828228,"utime":238,"cutime":0,"cstime":0,"stime":270,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21e2de20-c222-44a2-b261-2b9a30f6fa3d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":867227,"utime":261,"cutime":0,"cstime":0,"stime":294,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"226d5075-ece6-4a45-8890-ff4775644e93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2108,"total_pss":34298,"rss":106248,"native_total_heap":25784,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"266b15ce-ea9e-4378-af21-d13dde13a303","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":117,"total_pss":36092,"rss":108236,"native_total_heap":25784,"native_free_heap":2693,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28695ebc-ddd2-466f-818a-2f46c3772100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3180,"total_pss":33432,"rss":105052,"native_total_heap":25784,"native_free_heap":3227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"311122e5-391d-47ea-932c-a7d14364b34a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":831228,"utime":240,"cutime":0,"cstime":0,"stime":273,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31188392-75e0-4301-89e2-04354ac18034","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862418,"end_time":862427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37cf933b-2d81-4ed2-9ebc-671a3c655899","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4248,"total_pss":32548,"rss":104544,"native_total_heap":25784,"native_free_heap":3415,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bd5b9c6-9da8-4f99-98cd-b77b4d1aef46","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":849227,"utime":251,"cutime":0,"cstime":0,"stime":284,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4952689c-b57c-4c83-99be-e901fc689228","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":852227,"utime":252,"cutime":0,"cstime":0,"stime":284,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4af015e6-b95d-4461-99ec-50adbba800bd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":864228,"utime":260,"cutime":0,"cstime":0,"stime":291,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ec5d6d0-8224-4f15-af3e-3e7b1bd52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":336,"total_pss":35877,"rss":108052,"native_total_heap":25784,"native_free_heap":2750,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ee150ba-add4-4b52-9601-697d535e55d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.37300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832414,"end_time":832425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"51bb64ce-7db3-4273-9516-54202752d9b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":846227,"utime":249,"cutime":0,"cstime":0,"stime":282,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5caf58d4-2c08-4b7a-a059-ab2a920f79e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4160,"total_pss":32604,"rss":104544,"native_total_heap":25784,"native_free_heap":3378,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d75ef0c-4c69-41a9-bf81-0bce01787d36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":840228,"utime":245,"cutime":0,"cstime":0,"stime":279,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0229e7-0f27-42da-8b35-6b52c715abbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":861227,"utime":257,"cutime":0,"cstime":0,"stime":289,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0ef01b-b51b-45ba-9d64-54647eebd643","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":858227,"utime":255,"cutime":0,"cstime":0,"stime":288,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6074cfbf-ff0a-4c5e-a487-5457554af19a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":144,"total_pss":35993,"rss":108392,"native_total_heap":25784,"native_free_heap":2682,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6202edd1-d5f5-43b2-8c0c-d4e303bf667c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":843227,"utime":248,"cutime":0,"cstime":0,"stime":281,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63c3bf45-503e-4835-9fb3-673cb6fba8a1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1196,"total_pss":35070,"rss":106972,"native_total_heap":25784,"native_free_heap":2870,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68be5ce3-9040-4668-8c9e-bf69321ae61c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":873227,"utime":265,"cutime":0,"cstime":0,"stime":297,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"695a11eb-504c-45b3-9248-53426a780ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852396,"end_time":852409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c9da54-59a0-4735-820b-5bae1a75f806","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2268,"total_pss":34216,"rss":106248,"native_total_heap":25784,"native_free_heap":3092,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79437902-df12-47aa-90ed-7fd3ef339d87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1336,"total_pss":34994,"rss":106972,"native_total_heap":25784,"native_free_heap":2922,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a37f81d-0971-464b-bdeb-f7903f57c70c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3252,"total_pss":33380,"rss":105052,"native_total_heap":25784,"native_free_heap":3264,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b995164-390e-4c94-9afe-45a4e96ca5c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4134,"total_pss":32837,"rss":105056,"native_total_heap":25784,"native_free_heap":3403,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f8e1a88-0288-42ff-a3bd-f2c63b92b038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872396,"end_time":872405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a01853c0-cece-4752-bcb2-950364fa7a72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832398,"end_time":832409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a300e144-952a-4300-ae34-f3939c6c01a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":356,"total_pss":35853,"rss":108052,"native_total_heap":25784,"native_free_heap":2771,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a30e40ee-67ca-4358-b531-c6e8d3cc3e9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:06.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":855227,"utime":255,"cutime":0,"cstime":0,"stime":287,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a3920866-30a0-46c4-bea8-01615cef31ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862398,"end_time":862409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa0c554a-dabc-44fa-a531-4c0018c7e7e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2320,"total_pss":34196,"rss":106248,"native_total_heap":25784,"native_free_heap":3108,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac01d7c1-be49-4ccd-b7df-58a9fcd1a29d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":870227,"utime":262,"cutime":0,"cstime":0,"stime":295,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac228053-25f7-4400-a05a-6552b1917dfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1124,"total_pss":35122,"rss":106972,"native_total_heap":25784,"native_free_heap":2838,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad35374d-e21f-4f45-b464-5500b53e5f27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":837228,"utime":244,"cutime":0,"cstime":0,"stime":277,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8d0617-f444-49f1-b592-be97bf080ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842397,"end_time":842409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdb2d5b6-23b0-45bc-b865-16e8c7650508","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3128,"total_pss":33456,"rss":105512,"native_total_heap":25784,"native_free_heap":3211,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beb81a25-2f59-420f-b32f-0e00f071a1cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1408,"total_pss":34942,"rss":106756,"native_total_heap":25784,"native_free_heap":2954,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6d926da-ceec-4e5b-8d6f-5ae51477520b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1232,"total_pss":35046,"rss":106972,"native_total_heap":25784,"native_free_heap":2886,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0dc1f41-70fc-4236-a0a9-b6ef0d3c9e38","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2180,"total_pss":34238,"rss":106248,"native_total_heap":25784,"native_free_heap":3060,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6ac5fda-cd8c-46ae-9a4f-5e2f723fe02c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872408,"end_time":872411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb5b09a-2fa6-4db8-a780-8e5b17914801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":834227,"utime":242,"cutime":0,"cstime":0,"stime":275,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f1ff5a-4564-490d-86b3-3be3776bb908","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2392,"total_pss":34140,"rss":106248,"native_total_heap":25784,"native_free_heap":3144,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e46af755-6ed5-428e-a4fb-10e06f0ade7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":205,"total_pss":36097,"rss":108152,"native_total_heap":25784,"native_free_heap":2730,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7fc7f66-1416-4e47-b988-22ea014213c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3376,"total_pss":33304,"rss":105052,"native_total_heap":25784,"native_free_heap":3311,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea225995-24a3-4870-9da6-9c8062db930c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3340,"total_pss":33328,"rss":105052,"native_total_heap":25784,"native_free_heap":3295,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffc0f21e-fd0d-445e-a5eb-a833b1658d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852415,"end_time":852420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json b/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json index f5daf4fa5..51b1acdde 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json +++ b/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json @@ -1 +1 @@ -[{"id":"0cbcb287-239d-4edf-a059-819b8d20ecf3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":380672,"utime":157,"cutime":0,"cstime":0,"stime":182,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11fab02a-de0e-424f-a8cd-a06e4bdca118","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2628,"total_pss":24534,"rss":76728,"native_total_heap":23548,"native_free_heap":2247,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea4dc70-1ef9-4fb0-8a43-a923d833f3e2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3193,"total_pss":25414,"rss":77888,"native_total_heap":23548,"native_free_heap":2308,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2222020f-1644-4dac-b630-fef43fdf6a56","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1592,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":2059,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c9db8c-6a9c-44f2-8d78-ab17c031e5ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364904,"end_time":364910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"292e2417-3f3b-4cef-9212-085f3dddcc9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2540,"total_pss":24586,"rss":76728,"native_total_heap":23548,"native_free_heap":2210,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a1afb70-ad7a-4369-8d21-e8585aa587a8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":265,"total_pss":25672,"rss":78084,"native_total_heap":23548,"native_free_heap":1839,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c3e9ef7-54a2-42f5-9628-930e1b7ef469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2145,"total_pss":24319,"rss":76300,"native_total_heap":23548,"native_free_heap":2134,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2da38509-b26c-428b-93ab-392183f24b8e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":374675,"utime":153,"cutime":0,"cstime":0,"stime":178,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"314afe3d-0657-41c3-9773-d5803a8b92fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1409,"total_pss":25768,"rss":78228,"native_total_heap":23548,"native_free_heap":2079,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31819259-e996-4bce-bee1-590e95222a10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:14.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":383672,"utime":158,"cutime":0,"cstime":0,"stime":184,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c92d8dc-641b-4b3c-8025-79b7d4a139c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2416,"total_pss":22130,"rss":71716,"native_total_heap":23548,"native_free_heap":2162,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e65096e-6a80-4d95-9927-c642422c7263","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394921,"end_time":394925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"456f1fa0-78b6-470b-989f-f36e7eea253b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354906,"end_time":354920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bb9c6c4-05c2-4a0d-8a3a-fffc614d137f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2680,"total_pss":24510,"rss":76728,"native_total_heap":23548,"native_free_heap":2262,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b956937-e426-434c-ae65-35234339436b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:08.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":377675,"utime":156,"cutime":0,"cstime":0,"stime":181,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c0f2ac9-4a3a-4593-8bf4-f0a9b6aa7fa6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1556,"total_pss":27313,"rss":78864,"native_total_heap":23548,"native_free_heap":2043,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"617ce1bd-027a-45d6-8e05-39094287e253","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374910,"end_time":374929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f001c7b-77da-4bc1-89d3-069f17764980","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394905,"end_time":394916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70dd649b-1a93-4daf-bb5b-934ebafb6558","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374936,"end_time":374944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"725c64fc-bc0e-4c6c-b51e-efea29398ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364916,"end_time":364931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74ab64b9-a709-4c68-980d-cec9405a4b8f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1285,"total_pss":24754,"rss":77044,"native_total_heap":23548,"native_free_heap":2031,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f5ad0d2-0198-40d4-b81c-23b0e26c7b6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":356673,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83bfdc13-4e3c-43df-ab00-2ecbd68aedab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":425,"total_pss":25575,"rss":77984,"native_total_heap":23548,"native_free_heap":1911,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8516c22e-53f4-44a9-b023-198af6e8846e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2377,"total_pss":26183,"rss":79176,"native_total_heap":23548,"native_free_heap":2223,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"885d459e-516e-4293-bd75-527046f6fe0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2341,"total_pss":26207,"rss":79176,"native_total_heap":23548,"native_free_heap":2202,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a602213-4814-4a1f-954a-1aecfa8f4f51","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:56.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":365674,"utime":150,"cutime":0,"cstime":0,"stime":172,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b27bb8f-f3e6-444f-bca2-9f0084360bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":398673,"utime":167,"cutime":0,"cstime":0,"stime":191,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29bec-d903-4388-8f38-046a8bcd9a40","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":337,"total_pss":25620,"rss":78084,"native_total_heap":23548,"native_free_heap":1875,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9af2a974-45e9-481c-9534-403c5ce247a4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":395674,"utime":166,"cutime":0,"cstime":0,"stime":190,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f037313-683a-4c39-ac57-5901a3bdf727","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2269,"total_pss":26048,"rss":79428,"native_total_heap":23548,"native_free_heap":2170,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acfbeaa0-aae8-4199-a06b-a7622e6c81bc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":213,"total_pss":25693,"rss":78084,"native_total_heap":23548,"native_free_heap":1823,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0a023d0-b619-4a91-91bc-a26ca23b9792","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":359675,"utime":147,"cutime":0,"cstime":0,"stime":169,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf11e0d-321f-48ce-a3f5-49c5304e8efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":386672,"utime":163,"cutime":0,"cstime":0,"stime":185,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf6b5cac-f3c6-419c-a4ad-3b345aa523f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:32.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":401672,"utime":167,"cutime":0,"cstime":0,"stime":192,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfb2972c-e237-4448-aa8e-0c144b806932","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384921,"end_time":384929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c0fd90d5-c261-4e78-ae0b-8b66fe31d8f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2468,"total_pss":24545,"rss":76932,"native_total_heap":23548,"native_free_heap":2178,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2fd6d74-1018-4edb-9a54-754858c1147d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1125,"total_pss":24880,"rss":77160,"native_total_heap":23548,"native_free_heap":1963,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4f2a858-2a14-4408-8400-c1177dcf0a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:02.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":371675,"utime":152,"cutime":0,"cstime":0,"stime":177,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7d4b70f-731f-4ee5-80d3-8c204896efc7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1484,"total_pss":27366,"rss":78864,"native_total_heap":23548,"native_free_heap":2007,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd24d5ef-ca90-4565-af08-db47bc537b91","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354925,"end_time":354936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfa2939e-8a61-4f6d-a1a7-593bd4797cd1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":368674,"utime":150,"cutime":0,"cstime":0,"stime":174,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cffe8fca-abe5-468e-8f50-2a4c664e0141","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384904,"end_time":384914,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d1e4dda0-8acf-4da7-abb2-50b7b2229113","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":141,"total_pss":25758,"rss":78100,"native_total_heap":23548,"native_free_heap":1786,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d72032a4-6549-4e42-8680-806027c9b8c0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1696,"total_pss":27372,"rss":78760,"native_total_heap":23548,"native_free_heap":2095,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d737136a-3fda-4e44-8b1e-be5cc874406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1197,"total_pss":24852,"rss":77160,"native_total_heap":23548,"native_free_heap":1995,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e41116af-54aa-4ce8-8eb9-2844ce541171","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:53.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2181,"total_pss":24166,"rss":76052,"native_total_heap":23548,"native_free_heap":2154,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37a61c8-1eaf-4b31-8351-fcd8a0fe8c62","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:20.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":389673,"utime":164,"cutime":0,"cstime":0,"stime":187,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe275941-76c7-4316-80d0-221b491f5871","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.61900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":392671,"utime":165,"cutime":0,"cstime":0,"stime":187,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffbc8b09-cbfa-4ee7-b0ca-3dd7754ecea0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1321,"total_pss":25779,"rss":78228,"native_total_heap":23548,"native_free_heap":2047,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0cbcb287-239d-4edf-a059-819b8d20ecf3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":380672,"utime":157,"cutime":0,"cstime":0,"stime":182,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11fab02a-de0e-424f-a8cd-a06e4bdca118","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2628,"total_pss":24534,"rss":76728,"native_total_heap":23548,"native_free_heap":2247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea4dc70-1ef9-4fb0-8a43-a923d833f3e2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3193,"total_pss":25414,"rss":77888,"native_total_heap":23548,"native_free_heap":2308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2222020f-1644-4dac-b630-fef43fdf6a56","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1592,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":2059,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c9db8c-6a9c-44f2-8d78-ab17c031e5ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364904,"end_time":364910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"292e2417-3f3b-4cef-9212-085f3dddcc9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2540,"total_pss":24586,"rss":76728,"native_total_heap":23548,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a1afb70-ad7a-4369-8d21-e8585aa587a8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":265,"total_pss":25672,"rss":78084,"native_total_heap":23548,"native_free_heap":1839,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c3e9ef7-54a2-42f5-9628-930e1b7ef469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2145,"total_pss":24319,"rss":76300,"native_total_heap":23548,"native_free_heap":2134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2da38509-b26c-428b-93ab-392183f24b8e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":374675,"utime":153,"cutime":0,"cstime":0,"stime":178,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"314afe3d-0657-41c3-9773-d5803a8b92fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1409,"total_pss":25768,"rss":78228,"native_total_heap":23548,"native_free_heap":2079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31819259-e996-4bce-bee1-590e95222a10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:14.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":383672,"utime":158,"cutime":0,"cstime":0,"stime":184,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c92d8dc-641b-4b3c-8025-79b7d4a139c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2416,"total_pss":22130,"rss":71716,"native_total_heap":23548,"native_free_heap":2162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e65096e-6a80-4d95-9927-c642422c7263","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394921,"end_time":394925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"456f1fa0-78b6-470b-989f-f36e7eea253b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354906,"end_time":354920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bb9c6c4-05c2-4a0d-8a3a-fffc614d137f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2680,"total_pss":24510,"rss":76728,"native_total_heap":23548,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b956937-e426-434c-ae65-35234339436b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:08.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":377675,"utime":156,"cutime":0,"cstime":0,"stime":181,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c0f2ac9-4a3a-4593-8bf4-f0a9b6aa7fa6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1556,"total_pss":27313,"rss":78864,"native_total_heap":23548,"native_free_heap":2043,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"617ce1bd-027a-45d6-8e05-39094287e253","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374910,"end_time":374929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f001c7b-77da-4bc1-89d3-069f17764980","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394905,"end_time":394916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70dd649b-1a93-4daf-bb5b-934ebafb6558","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374936,"end_time":374944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"725c64fc-bc0e-4c6c-b51e-efea29398ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364916,"end_time":364931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74ab64b9-a709-4c68-980d-cec9405a4b8f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1285,"total_pss":24754,"rss":77044,"native_total_heap":23548,"native_free_heap":2031,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f5ad0d2-0198-40d4-b81c-23b0e26c7b6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":356673,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83bfdc13-4e3c-43df-ab00-2ecbd68aedab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":425,"total_pss":25575,"rss":77984,"native_total_heap":23548,"native_free_heap":1911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8516c22e-53f4-44a9-b023-198af6e8846e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2377,"total_pss":26183,"rss":79176,"native_total_heap":23548,"native_free_heap":2223,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"885d459e-516e-4293-bd75-527046f6fe0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2341,"total_pss":26207,"rss":79176,"native_total_heap":23548,"native_free_heap":2202,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a602213-4814-4a1f-954a-1aecfa8f4f51","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:56.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":365674,"utime":150,"cutime":0,"cstime":0,"stime":172,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b27bb8f-f3e6-444f-bca2-9f0084360bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":398673,"utime":167,"cutime":0,"cstime":0,"stime":191,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29bec-d903-4388-8f38-046a8bcd9a40","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":337,"total_pss":25620,"rss":78084,"native_total_heap":23548,"native_free_heap":1875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9af2a974-45e9-481c-9534-403c5ce247a4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":395674,"utime":166,"cutime":0,"cstime":0,"stime":190,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f037313-683a-4c39-ac57-5901a3bdf727","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2269,"total_pss":26048,"rss":79428,"native_total_heap":23548,"native_free_heap":2170,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acfbeaa0-aae8-4199-a06b-a7622e6c81bc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":213,"total_pss":25693,"rss":78084,"native_total_heap":23548,"native_free_heap":1823,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0a023d0-b619-4a91-91bc-a26ca23b9792","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":359675,"utime":147,"cutime":0,"cstime":0,"stime":169,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf11e0d-321f-48ce-a3f5-49c5304e8efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":386672,"utime":163,"cutime":0,"cstime":0,"stime":185,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf6b5cac-f3c6-419c-a4ad-3b345aa523f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:32.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":401672,"utime":167,"cutime":0,"cstime":0,"stime":192,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfb2972c-e237-4448-aa8e-0c144b806932","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384921,"end_time":384929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c0fd90d5-c261-4e78-ae0b-8b66fe31d8f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2468,"total_pss":24545,"rss":76932,"native_total_heap":23548,"native_free_heap":2178,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2fd6d74-1018-4edb-9a54-754858c1147d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1125,"total_pss":24880,"rss":77160,"native_total_heap":23548,"native_free_heap":1963,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4f2a858-2a14-4408-8400-c1177dcf0a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:02.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":371675,"utime":152,"cutime":0,"cstime":0,"stime":177,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7d4b70f-731f-4ee5-80d3-8c204896efc7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1484,"total_pss":27366,"rss":78864,"native_total_heap":23548,"native_free_heap":2007,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd24d5ef-ca90-4565-af08-db47bc537b91","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354925,"end_time":354936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfa2939e-8a61-4f6d-a1a7-593bd4797cd1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":368674,"utime":150,"cutime":0,"cstime":0,"stime":174,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cffe8fca-abe5-468e-8f50-2a4c664e0141","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384904,"end_time":384914,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d1e4dda0-8acf-4da7-abb2-50b7b2229113","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":141,"total_pss":25758,"rss":78100,"native_total_heap":23548,"native_free_heap":1786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d72032a4-6549-4e42-8680-806027c9b8c0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1696,"total_pss":27372,"rss":78760,"native_total_heap":23548,"native_free_heap":2095,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d737136a-3fda-4e44-8b1e-be5cc874406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1197,"total_pss":24852,"rss":77160,"native_total_heap":23548,"native_free_heap":1995,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e41116af-54aa-4ce8-8eb9-2844ce541171","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:53.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2181,"total_pss":24166,"rss":76052,"native_total_heap":23548,"native_free_heap":2154,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37a61c8-1eaf-4b31-8351-fcd8a0fe8c62","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:20.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":389673,"utime":164,"cutime":0,"cstime":0,"stime":187,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe275941-76c7-4316-80d0-221b491f5871","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.61900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":392671,"utime":165,"cutime":0,"cstime":0,"stime":187,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffbc8b09-cbfa-4ee7-b0ca-3dd7754ecea0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1321,"total_pss":25779,"rss":78228,"native_total_heap":23548,"native_free_heap":2047,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json b/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json index f784a3e2b..5fa7ec5d4 100644 --- a/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json +++ b/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json @@ -1 +1 @@ -[{"id":"028c7f23-dc82-4f1a-b215-709d59060ad0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1602,"total_pss":25099,"rss":78832,"native_total_heap":23036,"native_free_heap":1965,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05e8f240-1ebe-48aa-8740-bdc7a34c4735","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":340,"total_pss":25844,"rss":80496,"native_total_heap":23036,"native_free_heap":1702,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1662fed0-5455-4aa8-a5ca-0c377ba195b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":552,"total_pss":25706,"rss":80496,"native_total_heap":23036,"native_free_heap":1786,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1d1ad68d-c7ed-411e-b61d-95ab46864c71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":254673,"utime":74,"cutime":0,"cstime":0,"stime":92,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2274ac98-7f9f-4c63-8a46-9c338175f023","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2654,"total_pss":25020,"rss":80260,"native_total_heap":23036,"native_free_heap":2148,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c13fedf-6820-4d00-bb14-928784c8c9d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1390,"total_pss":25218,"rss":78864,"native_total_heap":23036,"native_free_heap":1876,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33233ada-7758-4d28-af16-4063cdee24c3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":236673,"utime":61,"cutime":0,"cstime":0,"stime":80,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dfe3e13-643b-428a-813e-50cf6fe479ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2468,"total_pss":26213,"rss":81260,"native_total_heap":23036,"native_free_heap":2109,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f1d348a-fc39-419b-91fc-ee1583978549","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2308,"total_pss":25722,"rss":80428,"native_total_heap":23036,"native_free_heap":2037,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4432e916-ba81-4c44-a388-da6002652983","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:26.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":215673,"utime":47,"cutime":0,"cstime":0,"stime":64,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d981eec-320c-4368-ae32-c8ecb826c516","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234945,"end_time":234954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57620ccb-6daf-4451-818b-18490e6eb09a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:50.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":239672,"utime":65,"cutime":0,"cstime":0,"stime":82,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a541fb5-944c-4f47-adbd-31a3a0900729","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2256,"total_pss":26692,"rss":81216,"native_total_heap":23036,"native_free_heap":2025,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a7c11b4-753f-4aa4-ae7b-bc73db57ff1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224908,"end_time":224924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d193e09-1ba4-4274-8235-40a46b2d34d5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2690,"total_pss":24956,"rss":80208,"native_total_heap":23036,"native_free_heap":2169,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dfe63c8-4ef7-4ad4-8643-cdce88166408","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":248673,"utime":70,"cutime":0,"cstime":0,"stime":88,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e4aba50-769f-43c4-a856-624fe4f18b42","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":242672,"utime":66,"cutime":0,"cstime":0,"stime":84,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6086be72-9137-457a-93c4-4b3060a4e3e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":464,"total_pss":25762,"rss":80496,"native_total_heap":23036,"native_free_heap":1754,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71031e9f-5567-42b9-8fab-13ee0270babf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1536,"total_pss":27335,"rss":81732,"native_total_heap":23036,"native_free_heap":1958,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7122bffe-f314-4f01-8fa4-f84c9951d3a3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1236,"total_pss":25051,"rss":79816,"native_total_heap":23036,"native_free_heap":1837,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b1ffa9-d7f1-4548-b797-bf44cd704f9d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1324,"total_pss":27004,"rss":81772,"native_total_heap":23036,"native_free_heap":1874,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8408f885-0b82-4703-b806-c10d650b444f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:44.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":233674,"utime":56,"cutime":0,"cstime":0,"stime":78,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"85a1fd3e-1dd6-486a-8952-40f6b46b8f0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254910,"end_time":254927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89c39b3f-fa6c-484a-a306-ff660aacf455","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244908,"end_time":244927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ef48228-6c5a-4638-a97d-d38451b9d7f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1412,"total_pss":26952,"rss":81772,"native_total_heap":23036,"native_free_heap":1905,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"952231a8-2050-43aa-a48e-e324a52ae8b6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1448,"total_pss":27326,"rss":81772,"native_total_heap":23036,"native_free_heap":1921,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5a8aa8-5e0d-4de1-88cf-61b83014b546","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2478,"total_pss":25120,"rss":80260,"native_total_heap":23036,"native_free_heap":2080,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a10d72fb-3416-4dc2-9b02-51e9a0fe6bf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":224673,"utime":51,"cutime":0,"cstime":0,"stime":69,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a271d9ce-b77b-42b7-883c-7a0c6d48309c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:38.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":227674,"utime":54,"cutime":0,"cstime":0,"stime":73,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a29afe73-624d-41b9-939c-0b2d005d864a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":212672,"utime":44,"cutime":0,"cstime":0,"stime":61,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9a89101-14c5-45a9-be92-00506d6087bf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1550,"total_pss":25114,"rss":78832,"native_total_heap":23036,"native_free_heap":1944,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa56e14d-0977-4073-baaa-60920caada61","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244936,"end_time":244950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af01f6d6-8385-4077-ba96-5d8f76064c5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":230674,"utime":55,"cutime":0,"cstime":0,"stime":75,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b260e08c-d76d-4716-96ae-050d8103790c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1690,"total_pss":25901,"rss":80856,"native_total_heap":23036,"native_free_heap":1997,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb63f099-39ae-415e-962e-7142f1c508ce","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1478,"total_pss":25166,"rss":78864,"native_total_heap":23036,"native_free_heap":1913,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf20eff4-7ae2-463e-990b-a38af54894cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:02.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":251674,"utime":72,"cutime":0,"cstime":0,"stime":90,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1bf924d-b99e-4006-bd32-5634d0a490a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":218672,"utime":48,"cutime":0,"cstime":0,"stime":65,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c283c551-4d24-4857-87b6-7043d2db0106","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224934,"end_time":224943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6e39438-299f-4d46-81ee-cd6826c6a277","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2442,"total_pss":25130,"rss":80260,"native_total_heap":23036,"native_free_heap":2064,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c76c0cc7-f6da-4178-b5cb-6847df86428c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":209676,"utime":42,"cutime":0,"cstime":0,"stime":60,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df5efd7b-dcc1-4e2c-b220-0eb0e0b43b81","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214908,"end_time":214929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1b12a45-9262-44a4-b908-c5291a7cfcf9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234917,"end_time":234933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea336e04-8e5a-4d91-9d7d-9e2b0abb8b26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":252,"total_pss":25918,"rss":80720,"native_total_heap":23036,"native_free_heap":1670,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb53e195-a3c2-4143-9a1c-e892cb4d8677","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:32.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":221675,"utime":50,"cutime":0,"cstime":0,"stime":67,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed813b8a-33f6-43d2-990a-649d50175845","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:56.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":245674,"utime":69,"cutime":0,"cstime":0,"stime":87,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee9ea633-8382-40c4-9b29-d482c4e743c2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":392,"total_pss":25808,"rss":80496,"native_total_heap":23036,"native_free_heap":1718,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2071c66-1b86-4f3e-b9e2-0466f2c0aff9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254936,"end_time":254948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4b6e509-890c-4b33-96aa-9dadaf8c6be6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2396,"total_pss":26354,"rss":81456,"native_total_heap":23036,"native_free_heap":2077,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa27e4d8-4f0b-4697-be72-95c1f06b7143","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2550,"total_pss":25072,"rss":80260,"native_total_heap":23036,"native_free_heap":2116,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbae44c6-3e76-444f-8557-1cdae0a72d75","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214939,"end_time":214945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"028c7f23-dc82-4f1a-b215-709d59060ad0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1602,"total_pss":25099,"rss":78832,"native_total_heap":23036,"native_free_heap":1965,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05e8f240-1ebe-48aa-8740-bdc7a34c4735","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":340,"total_pss":25844,"rss":80496,"native_total_heap":23036,"native_free_heap":1702,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1662fed0-5455-4aa8-a5ca-0c377ba195b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":552,"total_pss":25706,"rss":80496,"native_total_heap":23036,"native_free_heap":1786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1d1ad68d-c7ed-411e-b61d-95ab46864c71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":254673,"utime":74,"cutime":0,"cstime":0,"stime":92,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2274ac98-7f9f-4c63-8a46-9c338175f023","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2654,"total_pss":25020,"rss":80260,"native_total_heap":23036,"native_free_heap":2148,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c13fedf-6820-4d00-bb14-928784c8c9d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1390,"total_pss":25218,"rss":78864,"native_total_heap":23036,"native_free_heap":1876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33233ada-7758-4d28-af16-4063cdee24c3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":236673,"utime":61,"cutime":0,"cstime":0,"stime":80,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dfe3e13-643b-428a-813e-50cf6fe479ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2468,"total_pss":26213,"rss":81260,"native_total_heap":23036,"native_free_heap":2109,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f1d348a-fc39-419b-91fc-ee1583978549","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2308,"total_pss":25722,"rss":80428,"native_total_heap":23036,"native_free_heap":2037,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4432e916-ba81-4c44-a388-da6002652983","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:26.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":215673,"utime":47,"cutime":0,"cstime":0,"stime":64,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d981eec-320c-4368-ae32-c8ecb826c516","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234945,"end_time":234954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57620ccb-6daf-4451-818b-18490e6eb09a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:50.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":239672,"utime":65,"cutime":0,"cstime":0,"stime":82,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a541fb5-944c-4f47-adbd-31a3a0900729","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2256,"total_pss":26692,"rss":81216,"native_total_heap":23036,"native_free_heap":2025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a7c11b4-753f-4aa4-ae7b-bc73db57ff1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224908,"end_time":224924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d193e09-1ba4-4274-8235-40a46b2d34d5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2690,"total_pss":24956,"rss":80208,"native_total_heap":23036,"native_free_heap":2169,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dfe63c8-4ef7-4ad4-8643-cdce88166408","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":248673,"utime":70,"cutime":0,"cstime":0,"stime":88,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e4aba50-769f-43c4-a856-624fe4f18b42","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":242672,"utime":66,"cutime":0,"cstime":0,"stime":84,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6086be72-9137-457a-93c4-4b3060a4e3e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":464,"total_pss":25762,"rss":80496,"native_total_heap":23036,"native_free_heap":1754,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71031e9f-5567-42b9-8fab-13ee0270babf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1536,"total_pss":27335,"rss":81732,"native_total_heap":23036,"native_free_heap":1958,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7122bffe-f314-4f01-8fa4-f84c9951d3a3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1236,"total_pss":25051,"rss":79816,"native_total_heap":23036,"native_free_heap":1837,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b1ffa9-d7f1-4548-b797-bf44cd704f9d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1324,"total_pss":27004,"rss":81772,"native_total_heap":23036,"native_free_heap":1874,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8408f885-0b82-4703-b806-c10d650b444f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:44.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":233674,"utime":56,"cutime":0,"cstime":0,"stime":78,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"85a1fd3e-1dd6-486a-8952-40f6b46b8f0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254910,"end_time":254927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89c39b3f-fa6c-484a-a306-ff660aacf455","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244908,"end_time":244927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ef48228-6c5a-4638-a97d-d38451b9d7f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1412,"total_pss":26952,"rss":81772,"native_total_heap":23036,"native_free_heap":1905,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"952231a8-2050-43aa-a48e-e324a52ae8b6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1448,"total_pss":27326,"rss":81772,"native_total_heap":23036,"native_free_heap":1921,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5a8aa8-5e0d-4de1-88cf-61b83014b546","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2478,"total_pss":25120,"rss":80260,"native_total_heap":23036,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a10d72fb-3416-4dc2-9b02-51e9a0fe6bf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":224673,"utime":51,"cutime":0,"cstime":0,"stime":69,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a271d9ce-b77b-42b7-883c-7a0c6d48309c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:38.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":227674,"utime":54,"cutime":0,"cstime":0,"stime":73,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a29afe73-624d-41b9-939c-0b2d005d864a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":212672,"utime":44,"cutime":0,"cstime":0,"stime":61,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9a89101-14c5-45a9-be92-00506d6087bf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1550,"total_pss":25114,"rss":78832,"native_total_heap":23036,"native_free_heap":1944,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa56e14d-0977-4073-baaa-60920caada61","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244936,"end_time":244950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af01f6d6-8385-4077-ba96-5d8f76064c5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":230674,"utime":55,"cutime":0,"cstime":0,"stime":75,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b260e08c-d76d-4716-96ae-050d8103790c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1690,"total_pss":25901,"rss":80856,"native_total_heap":23036,"native_free_heap":1997,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb63f099-39ae-415e-962e-7142f1c508ce","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1478,"total_pss":25166,"rss":78864,"native_total_heap":23036,"native_free_heap":1913,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf20eff4-7ae2-463e-990b-a38af54894cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:02.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":251674,"utime":72,"cutime":0,"cstime":0,"stime":90,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1bf924d-b99e-4006-bd32-5634d0a490a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":218672,"utime":48,"cutime":0,"cstime":0,"stime":65,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c283c551-4d24-4857-87b6-7043d2db0106","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224934,"end_time":224943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6e39438-299f-4d46-81ee-cd6826c6a277","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2442,"total_pss":25130,"rss":80260,"native_total_heap":23036,"native_free_heap":2064,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c76c0cc7-f6da-4178-b5cb-6847df86428c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":209676,"utime":42,"cutime":0,"cstime":0,"stime":60,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df5efd7b-dcc1-4e2c-b220-0eb0e0b43b81","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214908,"end_time":214929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1b12a45-9262-44a4-b908-c5291a7cfcf9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234917,"end_time":234933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea336e04-8e5a-4d91-9d7d-9e2b0abb8b26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":252,"total_pss":25918,"rss":80720,"native_total_heap":23036,"native_free_heap":1670,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb53e195-a3c2-4143-9a1c-e892cb4d8677","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:32.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":221675,"utime":50,"cutime":0,"cstime":0,"stime":67,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed813b8a-33f6-43d2-990a-649d50175845","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:56.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":245674,"utime":69,"cutime":0,"cstime":0,"stime":87,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee9ea633-8382-40c4-9b29-d482c4e743c2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":392,"total_pss":25808,"rss":80496,"native_total_heap":23036,"native_free_heap":1718,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2071c66-1b86-4f3e-b9e2-0466f2c0aff9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254936,"end_time":254948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4b6e509-890c-4b33-96aa-9dadaf8c6be6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2396,"total_pss":26354,"rss":81456,"native_total_heap":23036,"native_free_heap":2077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa27e4d8-4f0b-4697-be72-95c1f06b7143","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2550,"total_pss":25072,"rss":80260,"native_total_heap":23036,"native_free_heap":2116,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbae44c6-3e76-444f-8557-1cdae0a72d75","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214939,"end_time":214945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json b/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json index 95a7322bc..2eb1a331e 100644 --- a/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json +++ b/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json @@ -1 +1 @@ -[{"id":"0902c41b-d08b-43ce-be5d-7141ad64d8f6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:47.86000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5681818,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"18589455-4374-492b-a213-f55c4c39bfe6","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:45.06100000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14491"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3d30add3-7377-410d-bdd3-bb69518c226f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185465,"total_pss":28355,"rss":126000,"native_total_heap":16996,"native_free_heap":1250,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"42abfcfe-e6f8-48db-9086-3dfab3b79d9f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.02200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5678764,"process_start_requested_uptime":5678636,"content_provider_attach_uptime":5678804,"on_next_draw_uptime":5678980,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d046e79-56e5-455c-a960-d4330a4d302e","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.11100000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7b3ef638-264b-4dd1-9e80-e99fcbdbea86","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:46.85800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35794,"total_pss":49254,"rss":141368,"native_total_heap":22268,"native_free_heap":1061,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b392ccee-6ad7-487b-bc91-dbea1c651c0c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.07100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5d88d48-15bb-4e8f-952f-13ccd2eb281b","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7771e4e-ad71-4b29-a908-2e59f3d07ae0","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:48.85900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35642,"total_pss":49479,"rss":141368,"native_total_heap":22268,"native_free_heap":1023,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7f6228e-f953-4c14-9599-c23ce4143cca","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5679044,"end_time":5679064,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"6745","content-type":"multipart/form-data; boundary=ce80998b-e4d8-407d-97f2-36aa7df1a3b3","host":"10.0.2.2:8080","msr-req-id":"7c66168e-48b5-445e-9910-72b56fce54d3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:47 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f5a36b36-7e21-4413-b379-d3aa287647c8","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fb8db3eb-1fee-4336-9f6c-904694dcc1fc","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"0902c41b-d08b-43ce-be5d-7141ad64d8f6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:47.86000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5681818,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"18589455-4374-492b-a213-f55c4c39bfe6","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:45.06100000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14491"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3d30add3-7377-410d-bdd3-bb69518c226f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185465,"total_pss":28355,"rss":126000,"native_total_heap":16996,"native_free_heap":1250,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"42abfcfe-e6f8-48db-9086-3dfab3b79d9f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.02200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5678764,"process_start_requested_uptime":5678636,"content_provider_attach_uptime":5678804,"on_next_draw_uptime":5678980,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d046e79-56e5-455c-a960-d4330a4d302e","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.11100000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7b3ef638-264b-4dd1-9e80-e99fcbdbea86","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:46.85800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35794,"total_pss":49254,"rss":141368,"native_total_heap":22268,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b392ccee-6ad7-487b-bc91-dbea1c651c0c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.07100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5d88d48-15bb-4e8f-952f-13ccd2eb281b","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7771e4e-ad71-4b29-a908-2e59f3d07ae0","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:48.85900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35642,"total_pss":49479,"rss":141368,"native_total_heap":22268,"native_free_heap":1023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7f6228e-f953-4c14-9599-c23ce4143cca","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5679044,"end_time":5679064,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"6745","content-type":"multipart/form-data; boundary=ce80998b-e4d8-407d-97f2-36aa7df1a3b3","host":"10.0.2.2:8080","msr-req-id":"7c66168e-48b5-445e-9910-72b56fce54d3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:47 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f5a36b36-7e21-4413-b379-d3aa287647c8","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fb8db3eb-1fee-4336-9f6c-904694dcc1fc","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/c69b41cd-a9f8-46a9-800e-cc9746ce5299.json b/self-host/session-data/sh.measure.sample/1.0/c69b41cd-a9f8-46a9-800e-cc9746ce5299.json index 5f7cda064..bf6a40fac 100644 --- a/self-host/session-data/sh.measure.sample/1.0/c69b41cd-a9f8-46a9-800e-cc9746ce5299.json +++ b/self-host/session-data/sh.measure.sample/1.0/c69b41cd-a9f8-46a9-800e-cc9746ce5299.json @@ -1 +1 @@ -[{"id":"0a369de4-d066-44c3-9496-964974341d49","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:06.38800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":589.9658,"y":1079.9194,"touch_down_time":5640267,"touch_up_time":5640344},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2dcccecb-e4ff-423f-afab-91df5b6382d3","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.68700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"47eaf92d-54a8-49e3-a8b6-9c3d38be9aa8","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:06.97400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5640864,"end_time":5640932,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"10389","content-type":"multipart/form-data; boundary=f5bcf291-8637-400f-95db-7e22fa82c1a6","host":"10.0.2.2:8080","msr-req-id":"4597adcb-1b83-4742-97d4-e6002d1bf623","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:09 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"64bd5a9b-b1dc-4903-90c9-588acc91a0c0","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.84400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5638494,"process_start_requested_uptime":5638319,"content_provider_attach_uptime":5638547,"on_next_draw_uptime":5638801,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8820dd1e-3107-4543-b9dd-958683368bac","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:05.03700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5638882,"end_time":5638995,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"19125","content-type":"multipart/form-data; boundary=ec1295af-40d9-4749-9aa9-6ccd66858eec","host":"10.0.2.2:8080","msr-req-id":"615f7151-9423-43fc-883f-37f8ca0bb121","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:07 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8b26d2da-7bfe-4300-b899-50eb92631229","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.61900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185830,"total_pss":21710,"rss":126132,"native_total_heap":16996,"native_free_heap":1207,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a9a83ea8-9748-49bc-bf24-2b8e38a856ce","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:06.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":18570,"total_pss":75739,"rss":182420,"native_total_heap":23412,"native_free_heap":1349,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d15b8f83-fbe8-48d6-ba05-ca1ff7a1a2f9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:46:04.90300000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14270"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dca49674-134f-4d27-b41c-13abc522aac2","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.79200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"0a369de4-d066-44c3-9496-964974341d49","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:06.38800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":589.9658,"y":1079.9194,"touch_down_time":5640267,"touch_up_time":5640344},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2dcccecb-e4ff-423f-afab-91df5b6382d3","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.68700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"47eaf92d-54a8-49e3-a8b6-9c3d38be9aa8","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:06.97400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5640864,"end_time":5640932,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"10389","content-type":"multipart/form-data; boundary=f5bcf291-8637-400f-95db-7e22fa82c1a6","host":"10.0.2.2:8080","msr-req-id":"4597adcb-1b83-4742-97d4-e6002d1bf623","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:09 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"64bd5a9b-b1dc-4903-90c9-588acc91a0c0","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.84400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5638494,"process_start_requested_uptime":5638319,"content_provider_attach_uptime":5638547,"on_next_draw_uptime":5638801,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8820dd1e-3107-4543-b9dd-958683368bac","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:05.03700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5638882,"end_time":5638995,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"19125","content-type":"multipart/form-data; boundary=ec1295af-40d9-4749-9aa9-6ccd66858eec","host":"10.0.2.2:8080","msr-req-id":"615f7151-9423-43fc-883f-37f8ca0bb121","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:07 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8b26d2da-7bfe-4300-b899-50eb92631229","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.61900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185830,"total_pss":21710,"rss":126132,"native_total_heap":16996,"native_free_heap":1207,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a9a83ea8-9748-49bc-bf24-2b8e38a856ce","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:06.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":18570,"total_pss":75739,"rss":182420,"native_total_heap":23412,"native_free_heap":1349,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d15b8f83-fbe8-48d6-ba05-ca1ff7a1a2f9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:46:04.90300000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14270"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dca49674-134f-4d27-b41c-13abc522aac2","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.79200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json b/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json index 4fc89de46..ab88b335e 100644 --- a/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json +++ b/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json @@ -1 +1 @@ -[{"id":"080e74f2-5adb-4a61-9e67-c88f1c964e6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08ae34c4-563b-47fd-831f-dc49010421ac","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.06400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5182110,"end_time":5183561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:35:14 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"092aa6f8-181c-45bc-9d99-aea4ea3bd5a6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c9cd45a-0fb8-4e0a-8237-ebb77a116be5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.14600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1215d131-110e-4cf5-b714-577e30444ad0","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.40900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22272a41-bace-4b70-9606-7b078327f998","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.19500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5182659,"end_time":5182691,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"95485","content-type":"multipart/form-data; boundary=5d47d260-f826-49c7-859a-696a9e4fa238","host":"10.0.2.2:8080","msr-req-id":"846997c8-5161-4a7a-877e-c38595ade128","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:13 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27eea315-a598-4a50-9f54-190142202219","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":223.98926,"y":457.9834,"touch_down_time":5179536,"touch_up_time":5179616},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d7225b4-4844-4580-9ce5-804a1c967f1e","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.91100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":519392,"uptime":5194407,"utime":17,"cutime":0,"cstime":0,"stime":6,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319ce33f-e90a-402f-9e77-df6ac1751485","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.23700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5169734,"utime":158,"cutime":0,"cstime":0,"stime":79,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4244b553-4bdd-4958-870c-5702eb19139c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.81300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"439deed3-53b7-4fbf-aed1-4bd869306c13","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3685,"total_pss":88789,"rss":175800,"native_total_heap":25084,"native_free_heap":2393,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46f51a6c-b57b-418b-a9b3-6cf43aba754f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.18200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5172644,"on_next_draw_uptime":5172678,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527f8622-cd65-414f-b6fe-6fe3ff2efd62","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:25.11200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5561cff0-5f38-4d2e-82c9-283d08b8d496","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69ffd79a-bbaa-4a69-910e-fcfca2ed92ad","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.67200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":529.98047,"y":1327.9486,"touch_down_time":5184070,"touch_up_time":5184167},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f58e4c8-ece8-4614-8f6e-6edb5592c5ea","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.36300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":507.96387,"y":1712.8986,"touch_down_time":5176782,"touch_up_time":5176858},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73bf7a76-a09a-4502-b8e0-6b96ede52e2e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31800000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":127.97974,"y":338.94836,"touch_down_time":5177728,"touch_up_time":5177809},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77405e5c-8615-4879-9d7b-cfa7b7d9e86d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:09.55100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818b4c3a-eab7-4f92-b0a3-60426139db8b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3680,"total_pss":87919,"rss":174516,"native_total_heap":25084,"native_free_heap":1449,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"887a383f-82c8-476c-9251-9e15ea29b414","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.62100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8992c540-1ded-4a03-b20b-bb5c31bef39a","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.99800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9eb916f7-168f-4c7f-9aef-12233d13c2c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":422.88593,"y":1927.934,"end_x":620.9802,"end_y":774.9133,"direction":"up","touch_down_time":5169189,"touch_up_time":5169331},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5c39f29-a4ec-45cb-b965-5fc1e67a6859","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.27300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5171732,"end_time":5171769,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"90342","content-type":"multipart/form-data; boundary=6b6e60b5-acf3-46ab-b65a-494968f8f368","host":"10.0.2.2:8080","msr-req-id":"25b45a45-20a2-4ed8-b8f5-43148e8ee35e","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:02 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a82f2770-66df-4a62-80ed-19cdedaf1220","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.15000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8563cb7-b419-492b-817c-916f3a4203b1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab8d1271-4d9f-4088-9e7f-45a04451e7eb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.17500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b234fda2-0da4-427e-b979-b56cbd8c7f07","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.75700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":697.9724,"y":326.9568,"end_x":697.9724,"end_y":998.95935,"direction":"down","touch_down_time":5170129,"touch_up_time":5170251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bae61d19-589a-4b34-a20f-1f37040df90e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31600000Z","type":"navigation","navigation":{"to":"checkout"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcb2354b-df61-4b85-8cff-34bb8fbb4086","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.71200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c25f401e-757f-4b8f-adb5-acd1b7f0932c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.45800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2aaf009-c12b-4399-96eb-42853ef6343c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.24700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9ee072-83d8-4b64-a525-8ce15f0f7880","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12300000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc289fd0-a231-4aa5-9641-a0e80a397653","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf86902a-f4be-404c-8a8f-1fc8b1182e00","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.59500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d33cb8ba-cc0a-4eaa-98c3-2ca6c7aba1ee","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.69800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d46455ab-4151-4f4b-80b4-9790b64d74b8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1841b96-56a4-4daa-8687-b9a497dd83c1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8962829-1896-4527-8adc-241f40ea5d4e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.43700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ca4b1-bd1e-4e38-9552-51e69d671077","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.16700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6697a3d-ccb8-4241-ad39-3a4128e2607b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.53500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":552.9529,"y":1468.9343,"touch_down_time":5181960,"touch_up_time":5182029},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7eaa0b7-a0a9-43d7-9e98-41e7eca3f54c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.20400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb24b291-e2a3-4dd8-ab69-513927eb1d91","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.80000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"080e74f2-5adb-4a61-9e67-c88f1c964e6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08ae34c4-563b-47fd-831f-dc49010421ac","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.06400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5182110,"end_time":5183561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:35:14 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"092aa6f8-181c-45bc-9d99-aea4ea3bd5a6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c9cd45a-0fb8-4e0a-8237-ebb77a116be5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.14600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1215d131-110e-4cf5-b714-577e30444ad0","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.40900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22272a41-bace-4b70-9606-7b078327f998","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.19500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5182659,"end_time":5182691,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"95485","content-type":"multipart/form-data; boundary=5d47d260-f826-49c7-859a-696a9e4fa238","host":"10.0.2.2:8080","msr-req-id":"846997c8-5161-4a7a-877e-c38595ade128","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:13 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27eea315-a598-4a50-9f54-190142202219","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":223.98926,"y":457.9834,"touch_down_time":5179536,"touch_up_time":5179616},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d7225b4-4844-4580-9ce5-804a1c967f1e","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.91100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":519392,"uptime":5194407,"utime":17,"cutime":0,"cstime":0,"stime":6,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319ce33f-e90a-402f-9e77-df6ac1751485","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.23700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5169734,"utime":158,"cutime":0,"cstime":0,"stime":79,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4244b553-4bdd-4958-870c-5702eb19139c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.81300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"439deed3-53b7-4fbf-aed1-4bd869306c13","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3685,"total_pss":88789,"rss":175800,"native_total_heap":25084,"native_free_heap":2393,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46f51a6c-b57b-418b-a9b3-6cf43aba754f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.18200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5172644,"on_next_draw_uptime":5172678,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527f8622-cd65-414f-b6fe-6fe3ff2efd62","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:25.11200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5561cff0-5f38-4d2e-82c9-283d08b8d496","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69ffd79a-bbaa-4a69-910e-fcfca2ed92ad","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.67200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":529.98047,"y":1327.9486,"touch_down_time":5184070,"touch_up_time":5184167},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f58e4c8-ece8-4614-8f6e-6edb5592c5ea","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.36300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":507.96387,"y":1712.8986,"touch_down_time":5176782,"touch_up_time":5176858},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73bf7a76-a09a-4502-b8e0-6b96ede52e2e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31800000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":127.97974,"y":338.94836,"touch_down_time":5177728,"touch_up_time":5177809},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77405e5c-8615-4879-9d7b-cfa7b7d9e86d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:09.55100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818b4c3a-eab7-4f92-b0a3-60426139db8b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3680,"total_pss":87919,"rss":174516,"native_total_heap":25084,"native_free_heap":1449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"887a383f-82c8-476c-9251-9e15ea29b414","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.62100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8992c540-1ded-4a03-b20b-bb5c31bef39a","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.99800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9eb916f7-168f-4c7f-9aef-12233d13c2c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":422.88593,"y":1927.934,"end_x":620.9802,"end_y":774.9133,"direction":"up","touch_down_time":5169189,"touch_up_time":5169331},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5c39f29-a4ec-45cb-b965-5fc1e67a6859","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.27300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5171732,"end_time":5171769,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"90342","content-type":"multipart/form-data; boundary=6b6e60b5-acf3-46ab-b65a-494968f8f368","host":"10.0.2.2:8080","msr-req-id":"25b45a45-20a2-4ed8-b8f5-43148e8ee35e","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:02 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a82f2770-66df-4a62-80ed-19cdedaf1220","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.15000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8563cb7-b419-492b-817c-916f3a4203b1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab8d1271-4d9f-4088-9e7f-45a04451e7eb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.17500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b234fda2-0da4-427e-b979-b56cbd8c7f07","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.75700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":697.9724,"y":326.9568,"end_x":697.9724,"end_y":998.95935,"direction":"down","touch_down_time":5170129,"touch_up_time":5170251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bae61d19-589a-4b34-a20f-1f37040df90e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31600000Z","type":"navigation","navigation":{"to":"checkout"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcb2354b-df61-4b85-8cff-34bb8fbb4086","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.71200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c25f401e-757f-4b8f-adb5-acd1b7f0932c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.45800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2aaf009-c12b-4399-96eb-42853ef6343c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.24700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9ee072-83d8-4b64-a525-8ce15f0f7880","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12300000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc289fd0-a231-4aa5-9641-a0e80a397653","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf86902a-f4be-404c-8a8f-1fc8b1182e00","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.59500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d33cb8ba-cc0a-4eaa-98c3-2ca6c7aba1ee","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.69800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d46455ab-4151-4f4b-80b4-9790b64d74b8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1841b96-56a4-4daa-8687-b9a497dd83c1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8962829-1896-4527-8adc-241f40ea5d4e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.43700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ca4b1-bd1e-4e38-9552-51e69d671077","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.16700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6697a3d-ccb8-4241-ad39-3a4128e2607b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.53500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":552.9529,"y":1468.9343,"touch_down_time":5181960,"touch_up_time":5182029},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7eaa0b7-a0a9-43d7-9e98-41e7eca3f54c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.20400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb24b291-e2a3-4dd8-ab69-513927eb1d91","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.80000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json b/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json index 6a12560dd..46beb2690 100644 --- a/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json +++ b/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json @@ -1 +1 @@ -[{"id":"00c90e10-8f2b-4364-9876-43247515b357","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3440,"total_pss":33003,"rss":106124,"native_total_heap":26040,"native_free_heap":3369,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b09b1ce-1d50-47e2-8392-4bb1654f615c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1050229,"utime":370,"cutime":0,"cstime":0,"stime":411,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e86dc39-f03e-45c2-864e-be0b0ad18886","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1035228,"utime":363,"cutime":0,"cstime":0,"stime":402,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1086631b-fb88-4893-9a73-e610fd8bef8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2280,"total_pss":33939,"rss":106956,"native_total_heap":26040,"native_free_heap":3111,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11310f57-3006-41aa-8410-5a600303cb34","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3244,"total_pss":33127,"rss":106120,"native_total_heap":26040,"native_free_heap":3284,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13c37652-f87b-49a9-b8b0-a918f9d555f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3264,"total_pss":33099,"rss":106120,"native_total_heap":26040,"native_free_heap":3300,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14106de6-562e-45e3-a242-2a403646f6d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":34618,"rss":107492,"native_total_heap":25784,"native_free_heap":2863,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16beb44c-18e9-4fb8-ae84-aaaa47999f2f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":332,"total_pss":35611,"rss":108656,"native_total_heap":26040,"native_free_heap":2773,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16d85b58-10a4-49e5-a035-05c87ca77b74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:31.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1208,"total_pss":34831,"rss":108028,"native_total_heap":26040,"native_free_heap":2907,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18452145-6a88-4974-b87e-b2b7bd6a9a28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":146,"total_pss":35495,"rss":108556,"native_total_heap":26040,"native_free_heap":2684,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"194edb31-bb57-41f6-b64a-20147cbc6bd4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1044227,"utime":367,"cutime":0,"cstime":0,"stime":408,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1999254c-4858-4b70-b327-e7c6c59e4621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":35375,"rss":108428,"native_total_heap":26040,"native_free_heap":2752,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c367a36-4e42-48be-ae56-b5dfe3d96962","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1038227,"utime":364,"cutime":0,"cstime":0,"stime":404,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ff36937-2b5d-45b0-9435-c4f1b4c5d597","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":420,"total_pss":35555,"rss":108656,"native_total_heap":26040,"native_free_heap":2805,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2103131b-e13e-4cd5-9883-2cf32ea0b599","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052418,"end_time":1052433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"230e941d-14c6-471f-8026-8d284e05da67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1059227,"utime":374,"cutime":0,"cstime":0,"stime":419,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"317be00d-c425-4e87-9c7e-296b8f14b2f4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1053228,"utime":372,"cutime":0,"cstime":0,"stime":415,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"330d6041-6aeb-4f52-affb-5d8977c92153","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1065228,"utime":380,"cutime":0,"cstime":0,"stime":420,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38706358-fd9c-4b4b-b0bb-6e3709035cbb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1296,"total_pss":34779,"rss":107780,"native_total_heap":26040,"native_free_heap":2943,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a38a9cb-94ad-45fb-8c60-d77e1a4d98af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2404,"total_pss":33863,"rss":106956,"native_total_heap":26040,"native_free_heap":3163,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465dc9cf-5233-4032-be63-13f25716e830","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1348,"total_pss":34751,"rss":107780,"native_total_heap":26040,"native_free_heap":2959,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4aa5b716-9239-405e-8c23-ddea2a7fbfc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1136,"total_pss":34883,"rss":108028,"native_total_heap":26040,"native_free_heap":2875,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dfbbc20-e54d-4424-8394-d5ccbbb796a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1029227,"utime":357,"cutime":0,"cstime":0,"stime":400,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f268f86-9f14-4312-a206-d9876181ceab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3352,"total_pss":33051,"rss":106120,"native_total_heap":26040,"native_free_heap":3332,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f9a7851-697b-47a8-a33e-a5bf2e08384e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1056229,"utime":372,"cutime":0,"cstime":0,"stime":417,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5628699e-d852-4ab3-8409-b04d4b039d13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032416,"end_time":1032421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6992e320-4122-45f6-8fca-030e34721f78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1026227,"utime":355,"cutime":0,"cstime":0,"stime":398,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"752ca335-8f95-4112-aaf0-29c34d683768","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1047227,"utime":368,"cutime":0,"cstime":0,"stime":410,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7901ce74-5a87-4456-873b-6f797dbb65d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":234,"total_pss":35431,"rss":108428,"native_total_heap":26040,"native_free_heap":2716,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7945bd2d-fc66-4d2e-89c6-f916972490c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2208,"total_pss":33991,"rss":106956,"native_total_heap":26040,"native_free_heap":3079,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb55a47-ade5-4ba3-8b77-f098b982ca3f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052398,"end_time":1052411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8134fc8d-b4fa-4cd7-9920-298dff346e54","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1041227,"utime":365,"cutime":0,"cstime":0,"stime":406,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83966fd9-d015-4180-8e4d-cbed274a65ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1032227,"utime":358,"cutime":0,"cstime":0,"stime":400,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86560cf5-eae6-4e68-9530-60a955c8aa58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1062228,"utime":375,"cutime":0,"cstime":0,"stime":419,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"867f6b3f-3f60-4dc0-b7c7-4e844b2d4745","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1420,"total_pss":34699,"rss":107568,"native_total_heap":26040,"native_free_heap":2996,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d72fa6a-4252-43af-ab99-8e8884b6307e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":446,"total_pss":35303,"rss":108220,"native_total_heap":26040,"native_free_heap":2800,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e6f210c-bd77-4991-b9b5-aede36e28b17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022418,"end_time":1022426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90f9549d-1e45-456b-bf63-9a732ff3ec1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042397,"end_time":1042410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a2107103-48a3-4606-be7a-8aa8030ebe52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:54.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1023229,"utime":354,"cutime":0,"cstime":0,"stime":397,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7196326-8bc4-48af-b2d2-405502b9b4d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1068228,"utime":381,"cutime":0,"cstime":0,"stime":422,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d05ab351-2161-4e08-a875-296734c1bbd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2368,"total_pss":33887,"rss":106956,"native_total_heap":26040,"native_free_heap":3147,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22a2195-b9d5-47e4-9025-7da263561772","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1234,"total_pss":34594,"rss":107492,"native_total_heap":25784,"native_free_heap":2884,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da6a0f20-6b41-4e6a-b214-d1f27f2d1530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042416,"end_time":1042419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbefdab9-97ab-4810-a033-2f04f9e9977b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":358,"total_pss":35355,"rss":108432,"native_total_heap":26040,"native_free_heap":2768,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e144ec7c-1330-49ae-9fd4-2490bd329762","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3140,"total_pss":33179,"rss":106332,"native_total_heap":26040,"native_free_heap":3248,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e21ad5f6-c58d-4653-a769-7cbb96788615","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2156,"total_pss":34019,"rss":106956,"native_total_heap":26040,"native_free_heap":3063,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e882164f-482a-4a95-827b-2508c9a2d776","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032399,"end_time":1032411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a792fa-be9c-494c-9cb5-118823a63fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062397,"end_time":1062412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0d11afe-369c-4f15-bf3c-6e994696a097","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062418,"end_time":1062429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc096f19-96f8-44f0-8a18-5fc16c740f91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022397,"end_time":1022411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"00c90e10-8f2b-4364-9876-43247515b357","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3440,"total_pss":33003,"rss":106124,"native_total_heap":26040,"native_free_heap":3369,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b09b1ce-1d50-47e2-8392-4bb1654f615c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1050229,"utime":370,"cutime":0,"cstime":0,"stime":411,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e86dc39-f03e-45c2-864e-be0b0ad18886","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1035228,"utime":363,"cutime":0,"cstime":0,"stime":402,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1086631b-fb88-4893-9a73-e610fd8bef8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2280,"total_pss":33939,"rss":106956,"native_total_heap":26040,"native_free_heap":3111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11310f57-3006-41aa-8410-5a600303cb34","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3244,"total_pss":33127,"rss":106120,"native_total_heap":26040,"native_free_heap":3284,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13c37652-f87b-49a9-b8b0-a918f9d555f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3264,"total_pss":33099,"rss":106120,"native_total_heap":26040,"native_free_heap":3300,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14106de6-562e-45e3-a242-2a403646f6d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":34618,"rss":107492,"native_total_heap":25784,"native_free_heap":2863,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16beb44c-18e9-4fb8-ae84-aaaa47999f2f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":332,"total_pss":35611,"rss":108656,"native_total_heap":26040,"native_free_heap":2773,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16d85b58-10a4-49e5-a035-05c87ca77b74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:31.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1208,"total_pss":34831,"rss":108028,"native_total_heap":26040,"native_free_heap":2907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18452145-6a88-4974-b87e-b2b7bd6a9a28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":146,"total_pss":35495,"rss":108556,"native_total_heap":26040,"native_free_heap":2684,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"194edb31-bb57-41f6-b64a-20147cbc6bd4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1044227,"utime":367,"cutime":0,"cstime":0,"stime":408,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1999254c-4858-4b70-b327-e7c6c59e4621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":35375,"rss":108428,"native_total_heap":26040,"native_free_heap":2752,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c367a36-4e42-48be-ae56-b5dfe3d96962","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1038227,"utime":364,"cutime":0,"cstime":0,"stime":404,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ff36937-2b5d-45b0-9435-c4f1b4c5d597","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":420,"total_pss":35555,"rss":108656,"native_total_heap":26040,"native_free_heap":2805,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2103131b-e13e-4cd5-9883-2cf32ea0b599","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052418,"end_time":1052433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"230e941d-14c6-471f-8026-8d284e05da67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1059227,"utime":374,"cutime":0,"cstime":0,"stime":419,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"317be00d-c425-4e87-9c7e-296b8f14b2f4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1053228,"utime":372,"cutime":0,"cstime":0,"stime":415,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"330d6041-6aeb-4f52-affb-5d8977c92153","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1065228,"utime":380,"cutime":0,"cstime":0,"stime":420,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38706358-fd9c-4b4b-b0bb-6e3709035cbb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1296,"total_pss":34779,"rss":107780,"native_total_heap":26040,"native_free_heap":2943,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a38a9cb-94ad-45fb-8c60-d77e1a4d98af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2404,"total_pss":33863,"rss":106956,"native_total_heap":26040,"native_free_heap":3163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465dc9cf-5233-4032-be63-13f25716e830","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1348,"total_pss":34751,"rss":107780,"native_total_heap":26040,"native_free_heap":2959,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4aa5b716-9239-405e-8c23-ddea2a7fbfc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1136,"total_pss":34883,"rss":108028,"native_total_heap":26040,"native_free_heap":2875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dfbbc20-e54d-4424-8394-d5ccbbb796a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1029227,"utime":357,"cutime":0,"cstime":0,"stime":400,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f268f86-9f14-4312-a206-d9876181ceab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3352,"total_pss":33051,"rss":106120,"native_total_heap":26040,"native_free_heap":3332,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f9a7851-697b-47a8-a33e-a5bf2e08384e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1056229,"utime":372,"cutime":0,"cstime":0,"stime":417,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5628699e-d852-4ab3-8409-b04d4b039d13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032416,"end_time":1032421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6992e320-4122-45f6-8fca-030e34721f78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1026227,"utime":355,"cutime":0,"cstime":0,"stime":398,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"752ca335-8f95-4112-aaf0-29c34d683768","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1047227,"utime":368,"cutime":0,"cstime":0,"stime":410,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7901ce74-5a87-4456-873b-6f797dbb65d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":234,"total_pss":35431,"rss":108428,"native_total_heap":26040,"native_free_heap":2716,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7945bd2d-fc66-4d2e-89c6-f916972490c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2208,"total_pss":33991,"rss":106956,"native_total_heap":26040,"native_free_heap":3079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb55a47-ade5-4ba3-8b77-f098b982ca3f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052398,"end_time":1052411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8134fc8d-b4fa-4cd7-9920-298dff346e54","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1041227,"utime":365,"cutime":0,"cstime":0,"stime":406,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83966fd9-d015-4180-8e4d-cbed274a65ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1032227,"utime":358,"cutime":0,"cstime":0,"stime":400,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86560cf5-eae6-4e68-9530-60a955c8aa58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1062228,"utime":375,"cutime":0,"cstime":0,"stime":419,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"867f6b3f-3f60-4dc0-b7c7-4e844b2d4745","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1420,"total_pss":34699,"rss":107568,"native_total_heap":26040,"native_free_heap":2996,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d72fa6a-4252-43af-ab99-8e8884b6307e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":446,"total_pss":35303,"rss":108220,"native_total_heap":26040,"native_free_heap":2800,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e6f210c-bd77-4991-b9b5-aede36e28b17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022418,"end_time":1022426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90f9549d-1e45-456b-bf63-9a732ff3ec1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042397,"end_time":1042410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a2107103-48a3-4606-be7a-8aa8030ebe52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:54.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1023229,"utime":354,"cutime":0,"cstime":0,"stime":397,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7196326-8bc4-48af-b2d2-405502b9b4d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1068228,"utime":381,"cutime":0,"cstime":0,"stime":422,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d05ab351-2161-4e08-a875-296734c1bbd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2368,"total_pss":33887,"rss":106956,"native_total_heap":26040,"native_free_heap":3147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22a2195-b9d5-47e4-9025-7da263561772","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1234,"total_pss":34594,"rss":107492,"native_total_heap":25784,"native_free_heap":2884,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da6a0f20-6b41-4e6a-b214-d1f27f2d1530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042416,"end_time":1042419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbefdab9-97ab-4810-a033-2f04f9e9977b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":358,"total_pss":35355,"rss":108432,"native_total_heap":26040,"native_free_heap":2768,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e144ec7c-1330-49ae-9fd4-2490bd329762","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3140,"total_pss":33179,"rss":106332,"native_total_heap":26040,"native_free_heap":3248,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e21ad5f6-c58d-4653-a769-7cbb96788615","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2156,"total_pss":34019,"rss":106956,"native_total_heap":26040,"native_free_heap":3063,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e882164f-482a-4a95-827b-2508c9a2d776","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032399,"end_time":1032411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a792fa-be9c-494c-9cb5-118823a63fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062397,"end_time":1062412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0d11afe-369c-4f15-bf3c-6e994696a097","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062418,"end_time":1062429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc096f19-96f8-44f0-8a18-5fc16c740f91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022397,"end_time":1022411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json b/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json index b0b37e7f6..c98074bba 100644 --- a/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json +++ b/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json @@ -1 +1 @@ -[{"id":"16eb3bfa-5694-4da1-ab93-3c1ea9085f7b","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.21600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5210157,"end_time":5210174,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11639","content-type":"multipart/form-data; boundary=6dfe4c68-8662-4855-bfa9-2b793a5c1811","host":"10.0.2.2:8080","msr-req-id":"0530d43a-f7ab-42d1-8bbf-96e789a04b1a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:58 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1d91daeb-dedb-40d2-85ae-43e5d20ae955","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:50.13900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5204097,"utime":9,"cutime":0,"cstime":0,"stime":11,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1efdd6f9-c531-4e46-95b0-38480146484a","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.70500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5201479,"end_time":5201663,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"5232","content-type":"multipart/form-data; boundary=ad877c80-ce58-4aec-af87-d87510f3649a","host":"10.0.2.2:8080","msr-req-id":"9ba32a49-6884-4183-bb88-330089292b4f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:50 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3fc019d1-621a-4fb2-bdcf-aa2da9733327","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.13500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":464.98535,"y":692.937,"touch_down_time":5209943,"touch_up_time":5210069},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4ca1b5ae-dbf1-41fe-9c8d-13ce738b1620","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:51.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35673,"total_pss":52124,"rss":139500,"native_total_heap":22268,"native_free_heap":1039,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d7e417a-c2b0-4a64-ae59-4deba5bc93a8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.69100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5d55d029-c8c0-4049-90cd-6ed40ed91bf0","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34505,"total_pss":53138,"rss":141208,"native_total_heap":22524,"native_free_heap":1299,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"68840f59-b4e6-4cf5-bcee-6b8c1da31c21","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:55.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34453,"total_pss":54383,"rss":141208,"native_total_heap":22524,"native_free_heap":1308,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8d65ffbf-fb81-4563-86aa-c3a23a331802","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.22900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5210187,"utime":14,"cutime":0,"cstime":0,"stime":17,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b95a3ee3-3f51-42e4-81b4-28d4d539806e","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:49.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35761,"total_pss":52204,"rss":139492,"native_total_heap":22268,"native_free_heap":1056,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c31d6c94-f0bc-4af8-a53e-e21dfad79055","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5207098,"utime":10,"cutime":0,"cstime":0,"stime":13,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1490e0b-1b9b-488e-bfe2-defd3878a0e3","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.55900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5200891,"process_start_requested_uptime":5200621,"content_provider_attach_uptime":5201075,"on_next_draw_uptime":5201516,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ea1d5380-c64a-4455-8ada-548908a16c2e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"16eb3bfa-5694-4da1-ab93-3c1ea9085f7b","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.21600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5210157,"end_time":5210174,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11639","content-type":"multipart/form-data; boundary=6dfe4c68-8662-4855-bfa9-2b793a5c1811","host":"10.0.2.2:8080","msr-req-id":"0530d43a-f7ab-42d1-8bbf-96e789a04b1a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:58 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1d91daeb-dedb-40d2-85ae-43e5d20ae955","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:50.13900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5204097,"utime":9,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1efdd6f9-c531-4e46-95b0-38480146484a","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.70500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5201479,"end_time":5201663,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"5232","content-type":"multipart/form-data; boundary=ad877c80-ce58-4aec-af87-d87510f3649a","host":"10.0.2.2:8080","msr-req-id":"9ba32a49-6884-4183-bb88-330089292b4f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:50 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3fc019d1-621a-4fb2-bdcf-aa2da9733327","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.13500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":464.98535,"y":692.937,"touch_down_time":5209943,"touch_up_time":5210069},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4ca1b5ae-dbf1-41fe-9c8d-13ce738b1620","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:51.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35673,"total_pss":52124,"rss":139500,"native_total_heap":22268,"native_free_heap":1039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d7e417a-c2b0-4a64-ae59-4deba5bc93a8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.69100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5d55d029-c8c0-4049-90cd-6ed40ed91bf0","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34505,"total_pss":53138,"rss":141208,"native_total_heap":22524,"native_free_heap":1299,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"68840f59-b4e6-4cf5-bcee-6b8c1da31c21","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:55.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34453,"total_pss":54383,"rss":141208,"native_total_heap":22524,"native_free_heap":1308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8d65ffbf-fb81-4563-86aa-c3a23a331802","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.22900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5210187,"utime":14,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b95a3ee3-3f51-42e4-81b4-28d4d539806e","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:49.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35761,"total_pss":52204,"rss":139492,"native_total_heap":22268,"native_free_heap":1056,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c31d6c94-f0bc-4af8-a53e-e21dfad79055","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5207098,"utime":10,"cutime":0,"cstime":0,"stime":13,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1490e0b-1b9b-488e-bfe2-defd3878a0e3","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.55900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5200891,"process_start_requested_uptime":5200621,"content_provider_attach_uptime":5201075,"on_next_draw_uptime":5201516,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ea1d5380-c64a-4455-8ada-548908a16c2e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json b/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json index 988f67255..2476c04be 100644 --- a/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json +++ b/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json @@ -1 +1 @@ -[{"id":"044f6811-23c4-48bb-ba0b-40c2b95d886b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3322,"total_pss":23453,"rss":78180,"native_total_heap":23036,"native_free_heap":2214,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07d2f623-8d46-4443-91ee-0faae55e70a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1378,"total_pss":24715,"rss":75384,"native_total_heap":23292,"native_free_heap":1893,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0afc36f5-1edd-48a9-b19b-a56657047ba8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2438,"total_pss":24961,"rss":77056,"native_total_heap":23292,"native_free_heap":2110,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2142bf80-e29c-454a-b199-b33b923ef757","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2386,"total_pss":25580,"rss":78192,"native_total_heap":23292,"native_free_heap":2099,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2554c31c-2657-4e28-9144-676ac740bc38","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":466,"total_pss":25684,"rss":76792,"native_total_heap":23292,"native_free_heap":1757,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"282f2835-76f6-46b8-b1ed-3f17f85bb5e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264934,"end_time":264945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29212164-90d1-47e8-9660-76d55621449c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.89900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294943,"end_time":294951,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3123ef64-de2e-4faf-907d-5a176fafc318","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274918,"end_time":274931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37232496-b07f-47a1-bc21-48bc1c062f71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2510,"total_pss":24605,"rss":76180,"native_total_heap":23292,"native_free_heap":2147,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39fa3676-5b49-4cf1-98a6-f2be1deb5525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2238,"total_pss":22622,"rss":72788,"native_total_heap":23036,"native_free_heap":2012,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4216e425-0b26-4efd-8f7b-e4beb2b30cc0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304909,"end_time":304926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42d16d28-a5a9-461b-bfc8-602b68147e52","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":260675,"utime":77,"cutime":0,"cstime":0,"stime":98,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47416fc4-43e7-4816-8a27-8f6e7fa9a56d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.63200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2434,"total_pss":22612,"rss":72788,"native_total_heap":23036,"native_free_heap":2096,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54afe8be-7eef-47f2-95c2-3727d30f4a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3218,"total_pss":24069,"rss":78992,"native_total_heap":23036,"native_free_heap":2182,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a6dc4e7-b589-4454-8c35-f0f4fce64918","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2598,"total_pss":24554,"rss":76140,"native_total_heap":23292,"native_free_heap":2183,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ee8dfcf-a0f9-4d56-8e72-dcc50f7397cd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":290,"total_pss":25716,"rss":76956,"native_total_heap":23292,"native_free_heap":1684,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66244426-b45e-4ee3-a783-7f8c973c67a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:08.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":257673,"utime":77,"cutime":0,"cstime":0,"stime":95,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6800b0c9-77c6-4310-bb33-f2d5ba20a2e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":290672,"utime":99,"cutime":0,"cstime":0,"stime":123,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b81473-e103-4549-be3c-34a9bfa313e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284941,"end_time":284952,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6de5e570-72ee-4482-9c3b-5f7f4e7f63c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":272675,"utime":86,"cutime":0,"cstime":0,"stime":108,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77ee3745-4992-4787-84f4-40db731e725f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":302673,"utime":106,"cutime":0,"cstime":0,"stime":134,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7823f289-6ee0-49b1-85b4-547c90522543","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:27.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1450,"total_pss":24655,"rss":75384,"native_total_heap":23292,"native_free_heap":1924,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79d8b79b-a3a7-45d9-80f6-2b891e7a937d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":254,"total_pss":25751,"rss":76956,"native_total_heap":23292,"native_free_heap":1668,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"835d48a7-175f-4c84-be2d-ac8521b781c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":269676,"utime":84,"cutime":0,"cstime":0,"stime":108,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87bd04eb-4a69-4b36-83a1-265870297862","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":278673,"utime":90,"cutime":0,"cstime":0,"stime":115,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88ebdce6-3337-4061-8026-91c1613bbdf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264911,"end_time":264926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9003d593-922e-4794-ac27-61b4480c755e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284910,"end_time":284927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92a63902-436b-47e0-8daa-50b761d7f469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":394,"total_pss":25738,"rss":76956,"native_total_heap":23292,"native_free_heap":1720,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a8c874-7fb7-4fa6-bd04-eac94109156a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":263675,"utime":80,"cutime":0,"cstime":0,"stime":101,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a911c129-a22f-4205-9a0e-f989734626b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":266678,"utime":82,"cutime":0,"cstime":0,"stime":105,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9b927fa-132e-4d6b-b4d3-0584206e7701","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274940,"end_time":274948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec0c7f1-200a-47e2-aa35-ef9ad083cf3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":674,"total_pss":25874,"rss":79540,"native_total_heap":23036,"native_free_heap":1829,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1d271a7-afc4-484e-ae89-8753d2572b2e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":514,"total_pss":25977,"rss":79500,"native_total_heap":23036,"native_free_heap":1761,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b53e1242-fdaf-453a-898b-ad2537754e0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":602,"total_pss":25925,"rss":79540,"native_total_heap":23036,"native_free_heap":1793,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b548ca1b-762d-4437-b8d8-57b0bc8bb18f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":296675,"utime":103,"cutime":0,"cstime":0,"stime":130,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b62d1fa3-08ff-4005-ba4b-58785612d431","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2650,"total_pss":24642,"rss":76104,"native_total_heap":23292,"native_free_heap":2199,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8fb8fc8-e07a-4089-8c42-03188e3e6d5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2186,"total_pss":22646,"rss":72788,"native_total_heap":23036,"native_free_heap":1992,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"baafe43d-b700-4b66-962d-4724a53eed53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2310,"total_pss":22598,"rss":72788,"native_total_heap":23036,"native_free_heap":2044,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb9506b8-fadb-40bf-9aa5-1d5d4ea44dbe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":275674,"utime":89,"cutime":0,"cstime":0,"stime":113,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be8fb032-3c8a-4713-81e6-93aea14b8d6d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:32.62700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":281679,"utime":92,"cutime":0,"cstime":0,"stime":116,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8ae03a-e316-48d5-baed-f49f80c6b6e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":284672,"utime":93,"cutime":0,"cstime":0,"stime":119,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd8d51e-800b-486e-9b7a-c0fdad1f0632","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":299675,"utime":106,"cutime":0,"cstime":0,"stime":132,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8f4a686-d90c-43a3-8f45-59d9a495f7c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:19.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2398,"total_pss":22504,"rss":72788,"native_total_heap":23036,"native_free_heap":2080,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0c70861-3a1b-4c69-9426-24a7791d8e1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1166,"total_pss":24776,"rss":75384,"native_total_heap":23292,"native_free_heap":1808,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d52579fd-a963-4178-ab08-a58aa2320311","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1326,"total_pss":24734,"rss":75384,"native_total_heap":23292,"native_free_heap":1877,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d991188a-4f71-4995-92ef-d8310189cc8b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294909,"end_time":294930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4debb78-ceb8-43f8-9ab1-5fc6619f80ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1238,"total_pss":24789,"rss":75384,"native_total_heap":23292,"native_free_heap":1840,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eed53a23-6b3f-4762-bcf2-083aaaa98658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:44.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":293673,"utime":101,"cutime":0,"cstime":0,"stime":125,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ae50f-f985-47b2-84f9-adf01fad645a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":287673,"utime":97,"cutime":0,"cstime":0,"stime":122,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37aee22-5e89-4afa-abd7-3e1a3ad8b071","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":182,"total_pss":25537,"rss":76552,"native_total_heap":23292,"native_free_heap":1632,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"044f6811-23c4-48bb-ba0b-40c2b95d886b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3322,"total_pss":23453,"rss":78180,"native_total_heap":23036,"native_free_heap":2214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07d2f623-8d46-4443-91ee-0faae55e70a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1378,"total_pss":24715,"rss":75384,"native_total_heap":23292,"native_free_heap":1893,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0afc36f5-1edd-48a9-b19b-a56657047ba8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2438,"total_pss":24961,"rss":77056,"native_total_heap":23292,"native_free_heap":2110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2142bf80-e29c-454a-b199-b33b923ef757","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2386,"total_pss":25580,"rss":78192,"native_total_heap":23292,"native_free_heap":2099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2554c31c-2657-4e28-9144-676ac740bc38","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":466,"total_pss":25684,"rss":76792,"native_total_heap":23292,"native_free_heap":1757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"282f2835-76f6-46b8-b1ed-3f17f85bb5e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264934,"end_time":264945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29212164-90d1-47e8-9660-76d55621449c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.89900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294943,"end_time":294951,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3123ef64-de2e-4faf-907d-5a176fafc318","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274918,"end_time":274931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37232496-b07f-47a1-bc21-48bc1c062f71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2510,"total_pss":24605,"rss":76180,"native_total_heap":23292,"native_free_heap":2147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39fa3676-5b49-4cf1-98a6-f2be1deb5525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2238,"total_pss":22622,"rss":72788,"native_total_heap":23036,"native_free_heap":2012,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4216e425-0b26-4efd-8f7b-e4beb2b30cc0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304909,"end_time":304926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42d16d28-a5a9-461b-bfc8-602b68147e52","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":260675,"utime":77,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47416fc4-43e7-4816-8a27-8f6e7fa9a56d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.63200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2434,"total_pss":22612,"rss":72788,"native_total_heap":23036,"native_free_heap":2096,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54afe8be-7eef-47f2-95c2-3727d30f4a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3218,"total_pss":24069,"rss":78992,"native_total_heap":23036,"native_free_heap":2182,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a6dc4e7-b589-4454-8c35-f0f4fce64918","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2598,"total_pss":24554,"rss":76140,"native_total_heap":23292,"native_free_heap":2183,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ee8dfcf-a0f9-4d56-8e72-dcc50f7397cd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":290,"total_pss":25716,"rss":76956,"native_total_heap":23292,"native_free_heap":1684,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66244426-b45e-4ee3-a783-7f8c973c67a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:08.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":257673,"utime":77,"cutime":0,"cstime":0,"stime":95,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6800b0c9-77c6-4310-bb33-f2d5ba20a2e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":290672,"utime":99,"cutime":0,"cstime":0,"stime":123,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b81473-e103-4549-be3c-34a9bfa313e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284941,"end_time":284952,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6de5e570-72ee-4482-9c3b-5f7f4e7f63c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":272675,"utime":86,"cutime":0,"cstime":0,"stime":108,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77ee3745-4992-4787-84f4-40db731e725f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":302673,"utime":106,"cutime":0,"cstime":0,"stime":134,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7823f289-6ee0-49b1-85b4-547c90522543","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:27.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1450,"total_pss":24655,"rss":75384,"native_total_heap":23292,"native_free_heap":1924,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79d8b79b-a3a7-45d9-80f6-2b891e7a937d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":254,"total_pss":25751,"rss":76956,"native_total_heap":23292,"native_free_heap":1668,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"835d48a7-175f-4c84-be2d-ac8521b781c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":269676,"utime":84,"cutime":0,"cstime":0,"stime":108,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87bd04eb-4a69-4b36-83a1-265870297862","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":278673,"utime":90,"cutime":0,"cstime":0,"stime":115,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88ebdce6-3337-4061-8026-91c1613bbdf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264911,"end_time":264926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9003d593-922e-4794-ac27-61b4480c755e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284910,"end_time":284927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92a63902-436b-47e0-8daa-50b761d7f469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":394,"total_pss":25738,"rss":76956,"native_total_heap":23292,"native_free_heap":1720,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a8c874-7fb7-4fa6-bd04-eac94109156a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":263675,"utime":80,"cutime":0,"cstime":0,"stime":101,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a911c129-a22f-4205-9a0e-f989734626b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":266678,"utime":82,"cutime":0,"cstime":0,"stime":105,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9b927fa-132e-4d6b-b4d3-0584206e7701","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274940,"end_time":274948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec0c7f1-200a-47e2-aa35-ef9ad083cf3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":674,"total_pss":25874,"rss":79540,"native_total_heap":23036,"native_free_heap":1829,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1d271a7-afc4-484e-ae89-8753d2572b2e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":514,"total_pss":25977,"rss":79500,"native_total_heap":23036,"native_free_heap":1761,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b53e1242-fdaf-453a-898b-ad2537754e0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":602,"total_pss":25925,"rss":79540,"native_total_heap":23036,"native_free_heap":1793,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b548ca1b-762d-4437-b8d8-57b0bc8bb18f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":296675,"utime":103,"cutime":0,"cstime":0,"stime":130,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b62d1fa3-08ff-4005-ba4b-58785612d431","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2650,"total_pss":24642,"rss":76104,"native_total_heap":23292,"native_free_heap":2199,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8fb8fc8-e07a-4089-8c42-03188e3e6d5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2186,"total_pss":22646,"rss":72788,"native_total_heap":23036,"native_free_heap":1992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"baafe43d-b700-4b66-962d-4724a53eed53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2310,"total_pss":22598,"rss":72788,"native_total_heap":23036,"native_free_heap":2044,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb9506b8-fadb-40bf-9aa5-1d5d4ea44dbe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":275674,"utime":89,"cutime":0,"cstime":0,"stime":113,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be8fb032-3c8a-4713-81e6-93aea14b8d6d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:32.62700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":281679,"utime":92,"cutime":0,"cstime":0,"stime":116,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8ae03a-e316-48d5-baed-f49f80c6b6e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":284672,"utime":93,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd8d51e-800b-486e-9b7a-c0fdad1f0632","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":299675,"utime":106,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8f4a686-d90c-43a3-8f45-59d9a495f7c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:19.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2398,"total_pss":22504,"rss":72788,"native_total_heap":23036,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0c70861-3a1b-4c69-9426-24a7791d8e1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1166,"total_pss":24776,"rss":75384,"native_total_heap":23292,"native_free_heap":1808,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d52579fd-a963-4178-ab08-a58aa2320311","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1326,"total_pss":24734,"rss":75384,"native_total_heap":23292,"native_free_heap":1877,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d991188a-4f71-4995-92ef-d8310189cc8b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294909,"end_time":294930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4debb78-ceb8-43f8-9ab1-5fc6619f80ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1238,"total_pss":24789,"rss":75384,"native_total_heap":23292,"native_free_heap":1840,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eed53a23-6b3f-4762-bcf2-083aaaa98658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:44.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":293673,"utime":101,"cutime":0,"cstime":0,"stime":125,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ae50f-f985-47b2-84f9-adf01fad645a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":287673,"utime":97,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37aee22-5e89-4afa-abd7-3e1a3ad8b071","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":182,"total_pss":25537,"rss":76552,"native_total_heap":23292,"native_free_heap":1632,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json b/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json index 3109e5b0b..69bacaeb6 100644 --- a/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json +++ b/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json @@ -1 +1 @@ -[{"id":"004b0389-e3c3-4c65-a86b-a80521a2c87a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.12700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"04e4a443-c6bb-4afd-87dc-29444c305727","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"050e178b-fee1-405a-97af-1a59d25f5632","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:40.63600000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"msr-ee\" prio=5 tid=22 Runnable\n at K2.p.e(SourceFile:1)\n at x2.y.d(SourceFile:157)\n at x2.y.c(SourceFile:2)\n at C2.b.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at B2.a.a(SourceFile:97)\n at C2.f.b(SourceFile:124)\n at z2.a.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at C2.a.a(SourceFile:171)\n at C2.f.b(SourceFile:124)\n at C2.g.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at Z2.f.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at J2.b.a(SourceFile:513)\n at C2.f.b(SourceFile:124)\n at U2.q.a(SourceFile:32)\n at C2.f.b(SourceFile:124)\n at B2.j.g(SourceFile:97)\n at B2.j.e(SourceFile:42)\n at U2.n.a(SourceFile:432)\n at U2.g.run(SourceFile:44)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:463)\n at java.util.concurrent.FutureTask.run(FutureTask.java:264)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at androidx.activity.d.run(SourceFile:35)\n - waiting to lock \u003c0x0c91569a\u003e (a java.lang.Object) held by thread 27\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"perfetto_hprof_listener\" prio=10 tid=4 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=5 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=18 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=19 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Okio Watchdog\" daemon prio=5 tid=21 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at F2.d.d(SourceFile:64)\n at K2.b.run(SourceFile:8)\n\n\"hwuiTask1\" daemon prio=6 tid=23 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"x2.A TaskRunner\" daemon prio=5 tid=25 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x099e4266\u003e (a A2.f)\n at A2.f.c(SourceFile:175)\n at A2.e.run(SourceFile:4)\n - locked \u003c0x099e4266\u003e (a A2.f)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"APP: Locker\" prio=5 tid=27 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at d3.l.run(SourceFile:11)\n - locked \u003c0x0c91569a\u003e (a java.lang.Object)\n\n\"Thread-3\" prio=10 tid=3 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 000000000005f868 /apex/com.android.runtime/lib64/bionic/libc.so (sem_wait+108) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 0000000000001a68 /data/app/~~uZvFgqbP6TTH_8urrT3qkg==/sh.measure.sample-pq4zBuoHJGkFAtdQKvWBjQ==/lib/arm64/libmeasure-ndk.so (???) (BuildId: 771b5405e3fafa88592fb3ab23027ba272fab25e)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 20679 -----\n","process_name":"sh.measure.sample","pid":"20679"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e190efc-6b52-4579-b47a-0b409e3a431a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1192ccb0-73a1-4f6a-aded-0db6c1f694f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2941507,"utime":28,"cutime":0,"cstime":0,"stime":30,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1592579d-2567-4a65-b942-c4a07340af66","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184017,"total_pss":32476,"rss":129632,"native_total_heap":16996,"native_free_heap":1147,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b00da30-9c11-481b-9a18-f11271a845fd","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.07100000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f4cfa48-8a5e-431a-9ae4-f9fbd6f1d296","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227e6bee-dcc0-4aa9-9e58-0cd00d311854","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22d8f4b7-ed9e-4756-8194-c7ca5950c884","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.97000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bb7dcc-480f-4f01-8292-172fc1dfad86","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16500000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bfa3dd-4ca8-4b3c-a529-92a3c2129776","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.11000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":730.96436,"y":1730.9198,"touch_down_time":2934739,"touch_up_time":2934891},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f5dd72-33c0-452f-9389-94d96e81b406","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.55200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4617a449-d25a-421d-94ee-cd864dc007ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":125.96924,"y":419.9762,"touch_down_time":2935847,"touch_up_time":2935941},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50dd2a6e-fd89-4cbd-a155-f76dca1feac8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.15100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"594a6693-7353-47ac-8691-f66ea41df793","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3459,"total_pss":53645,"rss":140784,"native_total_heap":25016,"native_free_heap":1858,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dbfb483-d7eb-4842-b540-cc0222edc5e3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:49.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30753,"total_pss":58235,"rss":150468,"native_total_heap":24504,"native_free_heap":1083,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7070d524-fb56-492c-b0d1-1773bb036720","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.14800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"735d5da4-23bc-4a3d-92c4-7be2f53fa1f1","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.58100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2932996,"process_start_requested_uptime":2932897,"content_provider_attach_uptime":2933047,"on_next_draw_uptime":2933360,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"787520b0-e84b-447c-87b1-31200ee84958","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.01900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79a41b42-c5c5-443f-bc5d-b32d29aae2aa","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.29500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a9ecd53-37ac-495a-9a47-02e99eaf3a73","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2938506,"utime":21,"cutime":0,"cstime":0,"stime":21,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8146c76a-abee-4e19-8948-a42744985be0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.96100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b8a50c8-0f1b-4234-a8d4-393f072698a6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2933061,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94403699-701d-4fba-a0db-325e6e15f19f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.77100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1722e60-9409-4d73-88f5-33668051f0da","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.18000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae6bd79e-565d-415b-906a-af0291cf9592","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.85600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2938507,"on_next_draw_uptime":2938636,"launched_activity":"sh.measure.sample.ComposeNavigationActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc14c963-e8ff-4b87-9a1b-d42f658fc673","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bca3c6b4-0d72-45be-a437-e2fc0ce04f4c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31597,"total_pss":57503,"rss":149460,"native_total_heap":24504,"native_free_heap":1278,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c62917ae-43cd-4d0e-ac5d-687e95ae3b51","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.95400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":602.95166,"y":1432.8918,"touch_down_time":2943644,"touch_up_time":2943734},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c65901d1-5124-4d63-96ad-6c42681e8b7d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31765,"total_pss":57132,"rss":148476,"native_total_heap":24504,"native_free_heap":1201,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc9d89a0-d3e0-4f90-a26e-d1e4fc7e73c3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31481,"total_pss":57522,"rss":149260,"native_total_heap":24504,"native_free_heap":1261,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce83b7c2-cf52-418f-82e3-3952a752b8a8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.05400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d134c47d-6cfa-4574-8fc1-290fad029db0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.05300000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2943811,"end_time":2944834,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:15:52 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dab97ddd-9752-44e2-84a5-5b15788771ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.97600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ca87e1-3867-43d3-88f8-2456424c8909","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.63800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2933179,"end_time":2933419,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"1704","content-type":"multipart/form-data; boundary=1aef0466-47e1-4851-9325-5b391bd08f3e","host":"10.0.2.2:8080","msr-req-id":"a3bfa946-2188-4819-bedd-97c963c47e68","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:41 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e63b6174-6c09-44e7-b0fb-4d5b8dc079d4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2944507,"utime":36,"cutime":0,"cstime":0,"stime":37,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6d7d23d-e811-41d7-b0a4-6a610608557b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e972dfac-410b-4cc3-851c-8d714f8151bf","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32318,"total_pss":56535,"rss":148032,"native_total_heap":23992,"native_free_heap":1045,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaf4eb88-b070-4ec0-a663-950e3735ce12","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.54700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f26a76c6-2831-47aa-af88-18b764b112c7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.08100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bd500d-b5d3-4a3c-9095-79de67564a9c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50f79b5-0e73-48a0-bc8c-4b6085776f78","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.28000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2936060,"utime":16,"cutime":0,"cstime":0,"stime":18,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f68f3795-3bc9-49a3-8576-5fe3c478b7db","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"004b0389-e3c3-4c65-a86b-a80521a2c87a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.12700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"04e4a443-c6bb-4afd-87dc-29444c305727","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"050e178b-fee1-405a-97af-1a59d25f5632","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:40.63600000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"msr-ee\" prio=5 tid=22 Runnable\n at K2.p.e(SourceFile:1)\n at x2.y.d(SourceFile:157)\n at x2.y.c(SourceFile:2)\n at C2.b.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at B2.a.a(SourceFile:97)\n at C2.f.b(SourceFile:124)\n at z2.a.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at C2.a.a(SourceFile:171)\n at C2.f.b(SourceFile:124)\n at C2.g.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at Z2.f.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at J2.b.a(SourceFile:513)\n at C2.f.b(SourceFile:124)\n at U2.q.a(SourceFile:32)\n at C2.f.b(SourceFile:124)\n at B2.j.g(SourceFile:97)\n at B2.j.e(SourceFile:42)\n at U2.n.a(SourceFile:432)\n at U2.g.run(SourceFile:44)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:463)\n at java.util.concurrent.FutureTask.run(FutureTask.java:264)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at androidx.activity.d.run(SourceFile:35)\n - waiting to lock \u003c0x0c91569a\u003e (a java.lang.Object) held by thread 27\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"perfetto_hprof_listener\" prio=10 tid=4 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=5 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=18 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=19 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Okio Watchdog\" daemon prio=5 tid=21 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at F2.d.d(SourceFile:64)\n at K2.b.run(SourceFile:8)\n\n\"hwuiTask1\" daemon prio=6 tid=23 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"x2.A TaskRunner\" daemon prio=5 tid=25 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x099e4266\u003e (a A2.f)\n at A2.f.c(SourceFile:175)\n at A2.e.run(SourceFile:4)\n - locked \u003c0x099e4266\u003e (a A2.f)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"APP: Locker\" prio=5 tid=27 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at d3.l.run(SourceFile:11)\n - locked \u003c0x0c91569a\u003e (a java.lang.Object)\n\n\"Thread-3\" prio=10 tid=3 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 000000000005f868 /apex/com.android.runtime/lib64/bionic/libc.so (sem_wait+108) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 0000000000001a68 /data/app/~~uZvFgqbP6TTH_8urrT3qkg==/sh.measure.sample-pq4zBuoHJGkFAtdQKvWBjQ==/lib/arm64/libmeasure-ndk.so (???) (BuildId: 771b5405e3fafa88592fb3ab23027ba272fab25e)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 20679 -----\n","process_name":"sh.measure.sample","pid":"20679"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e190efc-6b52-4579-b47a-0b409e3a431a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1192ccb0-73a1-4f6a-aded-0db6c1f694f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2941507,"utime":28,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1592579d-2567-4a65-b942-c4a07340af66","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184017,"total_pss":32476,"rss":129632,"native_total_heap":16996,"native_free_heap":1147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b00da30-9c11-481b-9a18-f11271a845fd","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.07100000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f4cfa48-8a5e-431a-9ae4-f9fbd6f1d296","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227e6bee-dcc0-4aa9-9e58-0cd00d311854","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22d8f4b7-ed9e-4756-8194-c7ca5950c884","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.97000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bb7dcc-480f-4f01-8292-172fc1dfad86","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16500000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bfa3dd-4ca8-4b3c-a529-92a3c2129776","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.11000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":730.96436,"y":1730.9198,"touch_down_time":2934739,"touch_up_time":2934891},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f5dd72-33c0-452f-9389-94d96e81b406","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.55200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4617a449-d25a-421d-94ee-cd864dc007ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":125.96924,"y":419.9762,"touch_down_time":2935847,"touch_up_time":2935941},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50dd2a6e-fd89-4cbd-a155-f76dca1feac8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.15100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"594a6693-7353-47ac-8691-f66ea41df793","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3459,"total_pss":53645,"rss":140784,"native_total_heap":25016,"native_free_heap":1858,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dbfb483-d7eb-4842-b540-cc0222edc5e3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:49.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30753,"total_pss":58235,"rss":150468,"native_total_heap":24504,"native_free_heap":1083,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7070d524-fb56-492c-b0d1-1773bb036720","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.14800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"735d5da4-23bc-4a3d-92c4-7be2f53fa1f1","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.58100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2932996,"process_start_requested_uptime":2932897,"content_provider_attach_uptime":2933047,"on_next_draw_uptime":2933360,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"787520b0-e84b-447c-87b1-31200ee84958","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.01900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79a41b42-c5c5-443f-bc5d-b32d29aae2aa","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.29500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a9ecd53-37ac-495a-9a47-02e99eaf3a73","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2938506,"utime":21,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8146c76a-abee-4e19-8948-a42744985be0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.96100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b8a50c8-0f1b-4234-a8d4-393f072698a6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2933061,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94403699-701d-4fba-a0db-325e6e15f19f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.77100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1722e60-9409-4d73-88f5-33668051f0da","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.18000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae6bd79e-565d-415b-906a-af0291cf9592","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.85600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2938507,"on_next_draw_uptime":2938636,"launched_activity":"sh.measure.sample.ComposeNavigationActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc14c963-e8ff-4b87-9a1b-d42f658fc673","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bca3c6b4-0d72-45be-a437-e2fc0ce04f4c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31597,"total_pss":57503,"rss":149460,"native_total_heap":24504,"native_free_heap":1278,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c62917ae-43cd-4d0e-ac5d-687e95ae3b51","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.95400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":602.95166,"y":1432.8918,"touch_down_time":2943644,"touch_up_time":2943734},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c65901d1-5124-4d63-96ad-6c42681e8b7d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31765,"total_pss":57132,"rss":148476,"native_total_heap":24504,"native_free_heap":1201,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc9d89a0-d3e0-4f90-a26e-d1e4fc7e73c3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31481,"total_pss":57522,"rss":149260,"native_total_heap":24504,"native_free_heap":1261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce83b7c2-cf52-418f-82e3-3952a752b8a8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.05400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d134c47d-6cfa-4574-8fc1-290fad029db0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.05300000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2943811,"end_time":2944834,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:15:52 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dab97ddd-9752-44e2-84a5-5b15788771ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.97600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ca87e1-3867-43d3-88f8-2456424c8909","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.63800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2933179,"end_time":2933419,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"1704","content-type":"multipart/form-data; boundary=1aef0466-47e1-4851-9325-5b391bd08f3e","host":"10.0.2.2:8080","msr-req-id":"a3bfa946-2188-4819-bedd-97c963c47e68","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:41 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e63b6174-6c09-44e7-b0fb-4d5b8dc079d4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2944507,"utime":36,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6d7d23d-e811-41d7-b0a4-6a610608557b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e972dfac-410b-4cc3-851c-8d714f8151bf","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32318,"total_pss":56535,"rss":148032,"native_total_heap":23992,"native_free_heap":1045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaf4eb88-b070-4ec0-a663-950e3735ce12","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.54700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f26a76c6-2831-47aa-af88-18b764b112c7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.08100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bd500d-b5d3-4a3c-9095-79de67564a9c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50f79b5-0e73-48a0-bc8c-4b6085776f78","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.28000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2936060,"utime":16,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f68f3795-3bc9-49a3-8576-5fe3c478b7db","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json b/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json index c8b1b5f50..2ceac11f3 100644 --- a/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json +++ b/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json @@ -1 +1 @@ -[{"id":"03e7b12a-cf90-449e-82ce-80eb72717abd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":147,"total_pss":36383,"rss":108580,"native_total_heap":25784,"native_free_heap":2707,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0600f378-a7b2-4d27-b608-2386fcbcd488","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3466,"total_pss":33008,"rss":105896,"native_total_heap":25784,"native_free_heap":3345,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"087e48f9-efb6-494f-838e-9510cd18a245","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1002228,"utime":339,"cutime":0,"cstime":0,"stime":383,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b833aa1-4b74-487a-963c-77238b9e3460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":978227,"utime":326,"cutime":0,"cstime":0,"stime":368,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0dd1b1f2-f923-486a-a938-41d60ec9e736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3378,"total_pss":33060,"rss":105896,"native_total_heap":25784,"native_free_heap":3313,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1828cab3-59e0-4755-8bd3-0a61bf4d24e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012398,"end_time":1012411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e340e46-68e9-44f7-ae48-be1bea0d0bc2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":987228,"utime":331,"cutime":0,"cstime":0,"stime":374,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21117a22-c6cd-48b9-8c57-5c1dd8cc5386","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32835,"rss":105052,"native_total_heap":25784,"native_free_heap":3412,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24aaf589-af76-4c32-a07b-2d0f106e647e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":33969,"rss":106732,"native_total_heap":25784,"native_free_heap":3089,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cc795cd-0f58-42f1-809b-975e6a777a0c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1011228,"utime":346,"cutime":0,"cstime":0,"stime":388,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35b9034d-b735-4ebf-80c8-2064961d35c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2111,"total_pss":34693,"rss":106860,"native_total_heap":25784,"native_free_heap":3049,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38c657c1-43b0-4f85-9439-d40edd46b750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":999227,"utime":337,"cutime":0,"cstime":0,"stime":382,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a1ade52-9d45-432d-9a89-2fbec53cb3d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972397,"end_time":972410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4090f269-ad89-477d-9a30-b100d7e6d960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1005227,"utime":343,"cutime":0,"cstime":0,"stime":385,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"415fae18-4a68-40a1-a953-769ffc94a81b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992397,"end_time":992412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"437ef994-eb9f-4e11-9386-a79953102c69","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":33134,"rss":105896,"native_total_heap":25784,"native_free_heap":3261,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527731ba-59d5-445e-ae2f-1c7044025514","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":34542,"rss":107492,"native_total_heap":25784,"native_free_heap":2915,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c6cba9-1a51-421b-9be8-ce4dcf782460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1323,"total_pss":35430,"rss":107556,"native_total_heap":25784,"native_free_heap":2965,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771ecb1f-30f3-453a-9bd8-bf473da9a0a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2322,"total_pss":33949,"rss":106520,"native_total_heap":25784,"native_free_heap":3110,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d2b2e48-dffe-4ea7-bc6e-e53c6b9cc9f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1017227,"utime":351,"cutime":0,"cstime":0,"stime":392,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95dd8d-0d85-4d32-b377-bf2b253a5235","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1020228,"utime":351,"cutime":0,"cstime":0,"stime":393,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"809d57c8-1b0e-49d4-b5da-dfcfe24f847a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":984227,"utime":329,"cutime":0,"cstime":0,"stime":372,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81527836-87dd-4d28-a217-03282dd52373","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1199,"total_pss":35506,"rss":107768,"native_total_heap":25784,"native_free_heap":2913,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86761167-fd11-47ff-b216-c9f1da59831d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":33893,"rss":106520,"native_total_heap":25784,"native_free_heap":3142,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d77a68d-aefa-4837-80e1-79a3c3f39fd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":375,"total_pss":36254,"rss":108388,"native_total_heap":25784,"native_free_heap":2796,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f91a3fa-7e89-4952-97de-76219931aa99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1014228,"utime":349,"cutime":0,"cstime":0,"stime":390,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95742f93-babf-4031-8f89-e6e32b02327f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002424,"end_time":1002435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96881eb2-7250-4e91-a674-413312d1afe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1411,"total_pss":35378,"rss":107556,"native_total_heap":25784,"native_free_heap":2997,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"98da78ed-4325-49c0-9477-c19623bb8765","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1251,"total_pss":35482,"rss":107556,"native_total_heap":25784,"native_free_heap":2929,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a265af96-9434-4b7e-964f-c8fe51564181","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":981228,"utime":327,"cutime":0,"cstime":0,"stime":371,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a33b5708-fdd5-43ca-884a-e7084c6af268","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":990227,"utime":332,"cutime":0,"cstime":0,"stime":375,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6ede295-76a7-48ee-b5e2-fb8c2d6b1503","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982399,"end_time":982412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7a7bb5b-f37f-41b3-8b4a-2ede4637246d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:17.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":323,"total_pss":36290,"rss":108388,"native_total_heap":25784,"native_free_heap":2775,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa038917-a792-4ae6-9a7d-679fa961946f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1446,"total_pss":34705,"rss":107492,"native_total_heap":25784,"native_free_heap":2968,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab77a95a-a020-4afb-9916-f355110c2c04","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":33841,"rss":106520,"native_total_heap":25784,"native_free_heap":3178,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc0c55a7-d1c9-4cfe-8c8f-40dbbb2a9564","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1008227,"utime":344,"cutime":0,"cstime":0,"stime":387,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc1c933b-465c-4569-b6fb-c9b8d5b91833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1111,"total_pss":35558,"rss":107768,"native_total_heap":25784,"native_free_heap":2881,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bec1dcfc-39c3-45eb-b70f-b16166909a90","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":33082,"rss":105896,"native_total_heap":25784,"native_free_heap":3293,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8d3412f-8aec-48d5-bfc9-47c43b341bc5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":993228,"utime":336,"cutime":0,"cstime":0,"stime":377,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccfbcbe0-e7e6-4b7d-81b3-02988be6be8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":975228,"utime":325,"cutime":0,"cstime":0,"stime":367,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55958f9-2dc5-4190-98c8-2c62929d09ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3182,"total_pss":33186,"rss":105896,"native_total_heap":25784,"native_free_heap":3225,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d65ba0cd-72f0-4145-8e62-1b9f7735862d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982417,"end_time":982426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9132edf-8ff8-41c1-b71c-aed31220e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":34025,"rss":106732,"native_total_heap":25784,"native_free_heap":3058,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"db35a27e-0650-4a45-9e2f-efe89b56a5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002399,"end_time":1002416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de326c1a-1b19-4ad2-a193-43b4ea0e781b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012418,"end_time":1012423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1857895-882b-4678-8aeb-41290b2b6f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":251,"total_pss":36342,"rss":108632,"native_total_heap":25784,"native_free_heap":2743,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4f07da-587d-4720-a467-1222469c090f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":34492,"rss":107492,"native_total_heap":25784,"native_free_heap":2952,"interval_config":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb986b05-7d8c-46cb-ba4a-9584e24892c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972415,"end_time":972420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4f6275b-c3a4-47da-abb5-8fa3bba7283c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":996227,"utime":337,"cutime":0,"cstime":0,"stime":378,"interval_config":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe6514d4-3a9f-46b8-b591-46f5166228a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992418,"end_time":992422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03e7b12a-cf90-449e-82ce-80eb72717abd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":147,"total_pss":36383,"rss":108580,"native_total_heap":25784,"native_free_heap":2707,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0600f378-a7b2-4d27-b608-2386fcbcd488","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3466,"total_pss":33008,"rss":105896,"native_total_heap":25784,"native_free_heap":3345,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"087e48f9-efb6-494f-838e-9510cd18a245","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1002228,"utime":339,"cutime":0,"cstime":0,"stime":383,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b833aa1-4b74-487a-963c-77238b9e3460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":978227,"utime":326,"cutime":0,"cstime":0,"stime":368,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0dd1b1f2-f923-486a-a938-41d60ec9e736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3378,"total_pss":33060,"rss":105896,"native_total_heap":25784,"native_free_heap":3313,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1828cab3-59e0-4755-8bd3-0a61bf4d24e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012398,"end_time":1012411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e340e46-68e9-44f7-ae48-be1bea0d0bc2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":987228,"utime":331,"cutime":0,"cstime":0,"stime":374,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21117a22-c6cd-48b9-8c57-5c1dd8cc5386","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32835,"rss":105052,"native_total_heap":25784,"native_free_heap":3412,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24aaf589-af76-4c32-a07b-2d0f106e647e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":33969,"rss":106732,"native_total_heap":25784,"native_free_heap":3089,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cc795cd-0f58-42f1-809b-975e6a777a0c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1011228,"utime":346,"cutime":0,"cstime":0,"stime":388,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35b9034d-b735-4ebf-80c8-2064961d35c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2111,"total_pss":34693,"rss":106860,"native_total_heap":25784,"native_free_heap":3049,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38c657c1-43b0-4f85-9439-d40edd46b750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":999227,"utime":337,"cutime":0,"cstime":0,"stime":382,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a1ade52-9d45-432d-9a89-2fbec53cb3d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972397,"end_time":972410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4090f269-ad89-477d-9a30-b100d7e6d960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1005227,"utime":343,"cutime":0,"cstime":0,"stime":385,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"415fae18-4a68-40a1-a953-769ffc94a81b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992397,"end_time":992412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"437ef994-eb9f-4e11-9386-a79953102c69","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":33134,"rss":105896,"native_total_heap":25784,"native_free_heap":3261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527731ba-59d5-445e-ae2f-1c7044025514","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":34542,"rss":107492,"native_total_heap":25784,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c6cba9-1a51-421b-9be8-ce4dcf782460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1323,"total_pss":35430,"rss":107556,"native_total_heap":25784,"native_free_heap":2965,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771ecb1f-30f3-453a-9bd8-bf473da9a0a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2322,"total_pss":33949,"rss":106520,"native_total_heap":25784,"native_free_heap":3110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d2b2e48-dffe-4ea7-bc6e-e53c6b9cc9f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1017227,"utime":351,"cutime":0,"cstime":0,"stime":392,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95dd8d-0d85-4d32-b377-bf2b253a5235","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1020228,"utime":351,"cutime":0,"cstime":0,"stime":393,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"809d57c8-1b0e-49d4-b5da-dfcfe24f847a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":984227,"utime":329,"cutime":0,"cstime":0,"stime":372,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81527836-87dd-4d28-a217-03282dd52373","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1199,"total_pss":35506,"rss":107768,"native_total_heap":25784,"native_free_heap":2913,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86761167-fd11-47ff-b216-c9f1da59831d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":33893,"rss":106520,"native_total_heap":25784,"native_free_heap":3142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d77a68d-aefa-4837-80e1-79a3c3f39fd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":375,"total_pss":36254,"rss":108388,"native_total_heap":25784,"native_free_heap":2796,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f91a3fa-7e89-4952-97de-76219931aa99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1014228,"utime":349,"cutime":0,"cstime":0,"stime":390,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95742f93-babf-4031-8f89-e6e32b02327f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002424,"end_time":1002435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96881eb2-7250-4e91-a674-413312d1afe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1411,"total_pss":35378,"rss":107556,"native_total_heap":25784,"native_free_heap":2997,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"98da78ed-4325-49c0-9477-c19623bb8765","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1251,"total_pss":35482,"rss":107556,"native_total_heap":25784,"native_free_heap":2929,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a265af96-9434-4b7e-964f-c8fe51564181","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":981228,"utime":327,"cutime":0,"cstime":0,"stime":371,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a33b5708-fdd5-43ca-884a-e7084c6af268","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":990227,"utime":332,"cutime":0,"cstime":0,"stime":375,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6ede295-76a7-48ee-b5e2-fb8c2d6b1503","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982399,"end_time":982412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7a7bb5b-f37f-41b3-8b4a-2ede4637246d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:17.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":323,"total_pss":36290,"rss":108388,"native_total_heap":25784,"native_free_heap":2775,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa038917-a792-4ae6-9a7d-679fa961946f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1446,"total_pss":34705,"rss":107492,"native_total_heap":25784,"native_free_heap":2968,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab77a95a-a020-4afb-9916-f355110c2c04","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":33841,"rss":106520,"native_total_heap":25784,"native_free_heap":3178,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc0c55a7-d1c9-4cfe-8c8f-40dbbb2a9564","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1008227,"utime":344,"cutime":0,"cstime":0,"stime":387,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc1c933b-465c-4569-b6fb-c9b8d5b91833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1111,"total_pss":35558,"rss":107768,"native_total_heap":25784,"native_free_heap":2881,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bec1dcfc-39c3-45eb-b70f-b16166909a90","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":33082,"rss":105896,"native_total_heap":25784,"native_free_heap":3293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8d3412f-8aec-48d5-bfc9-47c43b341bc5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":993228,"utime":336,"cutime":0,"cstime":0,"stime":377,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccfbcbe0-e7e6-4b7d-81b3-02988be6be8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":975228,"utime":325,"cutime":0,"cstime":0,"stime":367,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55958f9-2dc5-4190-98c8-2c62929d09ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3182,"total_pss":33186,"rss":105896,"native_total_heap":25784,"native_free_heap":3225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d65ba0cd-72f0-4145-8e62-1b9f7735862d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982417,"end_time":982426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9132edf-8ff8-41c1-b71c-aed31220e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":34025,"rss":106732,"native_total_heap":25784,"native_free_heap":3058,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"db35a27e-0650-4a45-9e2f-efe89b56a5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002399,"end_time":1002416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de326c1a-1b19-4ad2-a193-43b4ea0e781b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012418,"end_time":1012423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1857895-882b-4678-8aeb-41290b2b6f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":251,"total_pss":36342,"rss":108632,"native_total_heap":25784,"native_free_heap":2743,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4f07da-587d-4720-a467-1222469c090f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":34492,"rss":107492,"native_total_heap":25784,"native_free_heap":2952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb986b05-7d8c-46cb-ba4a-9584e24892c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972415,"end_time":972420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4f6275b-c3a4-47da-abb5-8fa3bba7283c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":996227,"utime":337,"cutime":0,"cstime":0,"stime":378,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe6514d4-3a9f-46b8-b591-46f5166228a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992418,"end_time":992422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file From 9f940de8a3545a37929f34214fcc87a420b2a618 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 10:18:28 +0530 Subject: [PATCH 07/14] chore(backend): add dummy percentage usage in session data --- .../7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json | 2 +- .../7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json | 2 +- .../7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json | 2 +- .../7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json | 2 +- .../7.62/b59194de-783c-468b-9ece-65bb2921a097.json | 2 +- .../7.62/eb714993-8c45-4eab-9040-99073290bc57.json | 2 +- .../01685d51-71b9-4482-9668-8b2e5ae8f8dd.json | 2 +- .../17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json | 2 +- .../28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json | 2 +- .../297652fc-0d30-45ef-a68b-e8a8edebbb18.json | 2 +- .../34cc5ee9-6bff-4627-9582-6ad2d52e030a.json | 2 +- .../35c101b3-bf3d-4386-90d3-f0d61406bbeb.json | 2 +- .../3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json | 2 +- .../39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json | 2 +- .../43105f54-8cd6-4c27-802e-d933732a88ea.json | 2 +- .../4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json | 2 +- .../5042cbe5-c87a-4057-855e-bbdc4768196a.json | 2 +- .../579bdc09-24e1-4dcc-ba7d-e954505a9341.json | 2 +- .../5a4065bd-60a3-4146-ac6d-c4d637772a3c.json | 2 +- .../5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json | 2 +- .../71328a17-de01-40c7-b02f-16651a939d92.json | 2 +- .../bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json | 2 +- .../bc40a0ca-34a1-461f-b59f-21b3b3c30297.json | 2 +- .../c3929414-e862-4eeb-a108-6048f47a53ed.json | 2 +- .../c7340029-e1f6-46eb-8dbd-c37da561fd7c.json | 2 +- .../d0be6d67-9f94-42af-8bb9-dfcb7feada57.json | 2 +- .../d739b906-a193-4659-801e-654570f5f1b4.json | 2 +- .../dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json | 2 +- .../fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json | 2 +- .../1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json | 2 +- .../1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json | 2 +- .../1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json | 2 +- .../1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json | 2 +- .../1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json | 2 +- .../1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json | 2 +- .../1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json | 2 +- .../1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json | 2 +- .../1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json | 2 +- .../1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json | 2 +- .../1.0/2659be34-244e-4870-bebe-309369a3f9c7.json | 2 +- .../1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json | 2 +- .../1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json | 2 +- .../1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json | 2 +- .../1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json | 2 +- .../1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json | 2 +- .../1.0/41ab73cf-066a-415f-9e80-45974709df51.json | 2 +- .../1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json | 2 +- .../1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json | 2 +- .../1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json | 2 +- .../1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json | 2 +- .../1.0/53799900-d10a-4673-ad70-85f13f867549.json | 2 +- .../1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json | 2 +- .../1.0/60a6943a-6c11-4ee1-9260-42b988676747.json | 2 +- .../1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json | 2 +- .../1.0/690139b4-0da0-4776-9555-556124f0dd6b.json | 2 +- .../1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json | 2 +- .../1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json | 2 +- .../1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json | 2 +- .../1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json | 2 +- .../1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json | 2 +- .../1.0/846997c8-5161-4a7a-877e-c38595ade128.json | 2 +- .../1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json | 2 +- .../1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json | 2 +- .../1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json | 2 +- .../1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json | 2 +- .../1.0/9ba32a49-6884-4183-bb88-330089292b4f.json | 2 +- .../1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json | 2 +- .../1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json | 2 +- .../1.0/a7828add-b022-412d-9ec4-a30d6f219222.json | 2 +- .../1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json | 2 +- .../1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json | 2 +- .../1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json | 2 +- .../1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json | 2 +- .../1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json | 2 +- .../1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json | 2 +- .../1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json | 2 +- .../1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json | 2 +- .../1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json | 2 +- .../1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json | 2 +- .../1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json | 2 +- .../1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json | 2 +- .../1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json | 2 +- .../1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json | 2 +- 83 files changed, 83 insertions(+), 83 deletions(-) diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json index 85621172a..3d1c7ee3b 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/593dc663-3c37-4878-a651-3d5af0fafeb0.json @@ -1 +1 @@ -[{"id":"0fdf1568-bd09-4a11-9b87-3d55256ed626","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.01800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3e58b4ea-a82c-4fec-80d0-18aded7951b8","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.26700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637227,"uptime":6373225,"utime":21,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"51f58575-f762-4a47-9659-4096fa5fdd77","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.90500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"6aa39463-008e-410d-b3b7-0828d44553d9","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.08200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a374aa52-d8d7-451e-a43a-e92a02b65601","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.18900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b735f173-b620-466d-a32c-5bcf5785b40c","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||a014308b-8620-4c61-a88b-6d4008cb154a|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"c49ebd32-388f-45c1-82b2-ddae968a7fa3","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.29000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512522,"total_pss":75586,"rss":150712,"native_total_heap":12004,"native_free_heap":1548,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file +[{"id":"0fdf1568-bd09-4a11-9b87-3d55256ed626","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.01800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3e58b4ea-a82c-4fec-80d0-18aded7951b8","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.26700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":637227,"uptime":6373225,"utime":21,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"51f58575-f762-4a47-9659-4096fa5fdd77","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.90500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"6aa39463-008e-410d-b3b7-0828d44553d9","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.08200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a374aa52-d8d7-451e-a43a-e92a02b65601","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.18900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b735f173-b620-466d-a32c-5bcf5785b40c","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:20.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||a014308b-8620-4c61-a88b-6d4008cb154a|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"c49ebd32-388f-45c1-82b2-ddae968a7fa3","session_id":"16ad00ae-0bd5-4245-88df-56f88bc2c94b","timestamp":"2024-04-29T11:58:19.29000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512522,"total_pss":75586,"rss":150712,"native_total_heap":12004,"native_free_heap":1548,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json index 07c89fc4e..37951c0e3 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.61/76d3d8ef-4ae1-443a-99c9-0e5aa106b693.json @@ -1 +1 @@ -[{"id":"0727e5e9-ef85-44ef-9c1c-a5acafe1ee4c","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.41100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"129758e7-111d-465f-8d64-0ef74df727cd","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.75900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375681,"end_time":6375717,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"37934","content-type":"multipart/form-data; boundary=b6c3e6b9-236e-4cba-893d-647a7256c524","host":"10.0.2.2:8080","msr-req-id":"0c05d561-5643-469d-b9fd-99989f87ff64","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3478d701-1ed1-4219-91ea-96a65cd55215","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.72000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"391dee0e-33a9-4454-beca-f0338ce23245","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512335,"total_pss":76673,"rss":152208,"native_total_heap":12004,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"42807dfe-13fa-4748-b689-c19f11a63b55","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86300000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512398,"total_pss":69852,"rss":149360,"native_total_heap":11864,"native_free_heap":1544,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4422cb27-7b39-4342-9a05-a92e565e8f08","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.47000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375385,"end_time":6375428,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7871","content-type":"multipart/form-data; boundary=f19f0e00-6506-4528-bb0f-a965c0673d45","host":"10.0.2.2:8080","msr-req-id":"593dc663-3c37-4878-a651-3d5af0fafeb0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4495d842-b58b-435b-9928-7bfcc7d133d1","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.49700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"53d95cf2-5930-4143-bc93-fce2a73f3f1f","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.58600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375433,"end_time":6375541,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"40015","content-type":"multipart/form-data; boundary=394b755f-ba3e-4648-b3c4-1b5f7ad8e215","host":"10.0.2.2:8080","msr-req-id":"d30ee46b-20d6-4c6b-9fb5-8678ceb3c9df","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"57195690-1ea7-4048-9256-00dea98adf7d","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:22.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11173,"total_pss":117157,"rss":195636,"native_total_heap":14896,"native_free_heap":1107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"63b56841-f3db-4595-b210-82c2be5a849e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:24.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11101,"total_pss":117216,"rss":195760,"native_total_heap":14896,"native_free_heap":1075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"7074c496-44c8-4ba4-a07e-36c4a8dd5b12","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":639921,"uptime":6399818,"utime":24,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"78019d75-ddc6-4331-ba93-990b37701286","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"895e5f0d-32a7-40d2-89d5-d62742419371","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6374849,"utime":19,"cutime":0,"cstime":0,"stime":5,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"89f6e4c2-ce97-42cb-8dbe-d6d866df97a6","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"8f009f90-8e3d-4240-81f5-81a10402732c","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.73600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f519a7b0-0065-4d30-818b-537399980193|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a1c990a3-684a-4826-b85f-c736392069e0","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.59700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a5b3470d-ac25-425f-8382-5ba317d9d119","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.62700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"aae43787-987f-490c-aabc-5530f9a96c2e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.45200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b30d409e-0f65-4c8d-9b50-faa6f7e2f475","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:23.87400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6377832,"utime":73,"cutime":0,"cstime":0,"stime":13,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"cfe28761-170c-4522-ae02-1021093c3090","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.69000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||21495f64-811e-45d7-886a-50185ed7e652|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"da3e459f-fd8c-4f34-8cd6-e3c20b350145","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.54500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"e9c3d7d2-350b-45fd-9b30-97c8a533ed98","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"eefe2114-cd27-428c-85db-81fdc1c51b1a","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.57400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file +[{"id":"0727e5e9-ef85-44ef-9c1c-a5acafe1ee4c","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.41100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"129758e7-111d-465f-8d64-0ef74df727cd","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.75900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375681,"end_time":6375717,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"37934","content-type":"multipart/form-data; boundary=b6c3e6b9-236e-4cba-893d-647a7256c524","host":"10.0.2.2:8080","msr-req-id":"0c05d561-5643-469d-b9fd-99989f87ff64","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"3478d701-1ed1-4219-91ea-96a65cd55215","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.72000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"391dee0e-33a9-4454-beca-f0338ce23245","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512335,"total_pss":76673,"rss":152208,"native_total_heap":12004,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"42807dfe-13fa-4748-b689-c19f11a63b55","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86300000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512398,"total_pss":69852,"rss":149360,"native_total_heap":11864,"native_free_heap":1544,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4422cb27-7b39-4342-9a05-a92e565e8f08","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.47000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375385,"end_time":6375428,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7871","content-type":"multipart/form-data; boundary=f19f0e00-6506-4528-bb0f-a965c0673d45","host":"10.0.2.2:8080","msr-req-id":"593dc663-3c37-4878-a651-3d5af0fafeb0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"4495d842-b58b-435b-9928-7bfcc7d133d1","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.49700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"53d95cf2-5930-4143-bc93-fce2a73f3f1f","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.58600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6375433,"end_time":6375541,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"40015","content-type":"multipart/form-data; boundary=394b755f-ba3e-4648-b3c4-1b5f7ad8e215","host":"10.0.2.2:8080","msr-req-id":"d30ee46b-20d6-4c6b-9fb5-8678ceb3c9df","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:58:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"57195690-1ea7-4048-9256-00dea98adf7d","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:22.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11173,"total_pss":117157,"rss":195636,"native_total_heap":14896,"native_free_heap":1107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"63b56841-f3db-4595-b210-82c2be5a849e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:24.88000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":11101,"total_pss":117216,"rss":195760,"native_total_heap":14896,"native_free_heap":1075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"7074c496-44c8-4ba4-a07e-36c4a8dd5b12","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:45.86100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":639921,"uptime":6399818,"utime":24,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"78019d75-ddc6-4331-ba93-990b37701286","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"895e5f0d-32a7-40d2-89d5-d62742419371","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:20.89100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6374849,"utime":19,"cutime":0,"cstime":0,"stime":5,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"89f6e4c2-ce97-42cb-8dbe-d6d866df97a6","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"8f009f90-8e3d-4240-81f5-81a10402732c","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.73600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f519a7b0-0065-4d30-818b-537399980193|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a1c990a3-684a-4826-b85f-c736392069e0","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.59700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"a5b3470d-ac25-425f-8382-5ba317d9d119","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.62700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"aae43787-987f-490c-aabc-5530f9a96c2e","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.45200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"b30d409e-0f65-4c8d-9b50-faa6f7e2f475","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:23.87400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":637427,"uptime":6377832,"utime":73,"cutime":0,"cstime":0,"stime":13,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"cfe28761-170c-4522-ae02-1021093c3090","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.69000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||21495f64-811e-45d7-886a-50185ed7e652|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"da3e459f-fd8c-4f34-8cd6-e3c20b350145","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.54500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"e9c3d7d2-350b-45fd-9b30-97c8a533ed98","session_id":"6a04ba15-236b-47a8-9f34-def2de43558b","timestamp":"2024-04-29T11:58:21.39200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}},{"id":"eefe2114-cd27-428c-85db-81fdc1c51b1a","session_id":"68e191bf-60c1-48db-b6bf-8c73332d310a","timestamp":"2024-04-29T11:58:46.57400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.61","app_build":"9400","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"922ee9b3-e393-4f4e-92d1-95543dc8d000"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json index af9f785b0..94df31de2 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/35df2d28-f636-420b-9045-ea1dcc41f543.json @@ -1 +1 @@ -[{"id":"2e7c25c4-c0c5-4741-b86a-8fffe09bd87c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":21374,"java_free_heap":9955,"total_pss":102206,"rss":177888,"native_total_heap":15492,"native_free_heap":1877,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3b9abf1d-9e3e-4fee-9629-53161907a4b9","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.58600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"56630b3e-8a0e-46de-91aa-ec42b79597b1","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.43600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"6890dcc3-b5f3-4fb0-9a97-a1ba30830d54","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.70700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6897630,"end_time":6897665,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"25120","content-type":"multipart/form-data; boundary=efcefeab-aa4b-42a6-a8ff-908b69f91949","host":"10.0.2.2:8080","msr-req-id":"4ad8ba76-83fb-496c-9893-7889f82d280a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:07:05 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83df1711-4c54-4ebc-880d-19a027be3544","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.67700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":690324,"uptime":6903635,"utime":20,"cutime":0,"cstime":0,"stime":6,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"8de4834a-f014-429e-98b0-4fc482a15679","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.49100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b2ce95a8-a914-490c-bf66-abbc3d6dc10d","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.60200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||95d520b8-6284-4e84-811d-61fea327f849|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"cb009f1d-788a-4f4d-af10-33ba9d058304","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.71000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512257,"total_pss":70564,"rss":152364,"native_total_heap":12004,"native_free_heap":1531,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d7a8439e-7806-4779-82ce-6e89bc7f33e6","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"f1ba89c7-6a8e-47ca-9e52-66a156aa5eca","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6899120,"utime":95,"cutime":0,"cstime":0,"stime":28,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file +[{"id":"2e7c25c4-c0c5-4741-b86a-8fffe09bd87c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16600000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":21374,"java_free_heap":9955,"total_pss":102206,"rss":177888,"native_total_heap":15492,"native_free_heap":1877,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3b9abf1d-9e3e-4fee-9629-53161907a4b9","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.58600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"56630b3e-8a0e-46de-91aa-ec42b79597b1","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.43600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"6890dcc3-b5f3-4fb0-9a97-a1ba30830d54","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.70700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6897630,"end_time":6897665,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"25120","content-type":"multipart/form-data; boundary=efcefeab-aa4b-42a6-a8ff-908b69f91949","host":"10.0.2.2:8080","msr-req-id":"4ad8ba76-83fb-496c-9893-7889f82d280a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:07:05 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83df1711-4c54-4ebc-880d-19a027be3544","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.67700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":690324,"uptime":6903635,"utime":20,"cutime":0,"cstime":0,"stime":6,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"8de4834a-f014-429e-98b0-4fc482a15679","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.49100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b2ce95a8-a914-490c-bf66-abbc3d6dc10d","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.60200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||95d520b8-6284-4e84-811d-61fea327f849|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"cb009f1d-788a-4f4d-af10-33ba9d058304","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:09.71000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512257,"total_pss":70564,"rss":152364,"native_total_heap":12004,"native_free_heap":1531,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d7a8439e-7806-4779-82ce-6e89bc7f33e6","session_id":"1755de51-18c8-4c14-a58d-ad677485130e","timestamp":"2024-04-29T12:07:10.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"f1ba89c7-6a8e-47ca-9e52-66a156aa5eca","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:05.16200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6899120,"utime":95,"cutime":0,"cstime":0,"stime":28,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json index 125c6b566..8c0baa683 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/4ad8ba76-83fb-496c-9893-7889f82d280a.json @@ -1 +1 @@ -[{"id":"0b97b69a-dd59-4991-a331-8f7aa2fc4638","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:57.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6722,"total_pss":125320,"rss":205172,"native_total_heap":15236,"native_free_heap":1137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"32b58017-de7a-4c07-82d4-2c5c28ef223e","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:01.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6534,"total_pss":127213,"rss":207004,"native_total_heap":15236,"native_free_heap":1102,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4123cfe4-b5a6-4f74-9ff0-b47f8dd5a104","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.72500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887634,"end_time":6887682,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7870","content-type":"multipart/form-data; boundary=b2530d2c-2c98-485c-bb95-3304bff86632","host":"10.0.2.2:8080","msr-req-id":"eb714993-8c45-4eab-9040-99073290bc57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:55 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"46a81626-1cc6-4d7c-beac-2177662f3f8f","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4d68ac8c-2cb4-4a93-878c-a09bac2e0993","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"52486ac3-039e-44d4-b804-2b33c3ffe0e8","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.82100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"5a846d6f-e5c3-4569-a543-a4b57b89c136","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.97200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||5b925288-e10c-4aa9-ba47-3cdf2bf96bff|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"618311d2-1385-446b-8ca8-8ce77533e37c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6893121,"utime":85,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"61866e06-a548-449c-b22c-f05308963539","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6586,"total_pss":127324,"rss":207004,"native_total_heap":15236,"native_free_heap":1118,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"762cf051-9f0b-42e6-8e73-db9e20111a72","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":42705,"java_free_heap":0,"total_pss":127277,"rss":207488,"native_total_heap":15492,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"790be410-611f-4557-9d2a-84eb625d505d","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.83700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887730,"end_time":6887795,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38183","content-type":"multipart/form-data; boundary=f841744e-0177-481a-ab2c-dc69f1556281","host":"10.0.2.2:8080","msr-req-id":"0e6b85fa-701f-4b08-ba7a-dcba883e8238","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83dbbed7-0213-47e3-ba13-be04ba68d3cf","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:55.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6810,"total_pss":125233,"rss":205056,"native_total_heap":15236,"native_free_heap":1142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"96eaacde-252a-443e-a2ba-520c2383ac46","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:56.16400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6890121,"utime":81,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"a4ffe741-6c49-4a64-ad81-33393b0b7d20","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b41f7221-33ba-4a2b-ba2f-f8f9c1b77ae9","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.17000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512464,"total_pss":73637,"rss":151848,"native_total_heap":12004,"native_free_heap":1292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c253f3ed-ef37-4c3a-b7ac-503f78736cb2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.86900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c6503ac9-bff4-4db2-84dc-bbbae4289791","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:02.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6896119,"utime":87,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d06ca76c-ebf5-44e0-b425-98c20643d7d2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.16800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6887126,"utime":19,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d4d1dda5-355f-4bfd-9a2c-4124c7bea812","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:54.07900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887968,"end_time":6888037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38067","content-type":"multipart/form-data; boundary=f640b6e6-0608-42a8-9051-f016d14db26a","host":"10.0.2.2:8080","msr-req-id":"878f7d79-62de-4426-9dac-ca42bdebbeb7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"ee78a3c4-5670-4266-a349-d743e7c4e59a","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.67300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"eeab5d2d-c577-40e7-87ab-12368ebf8ba3","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.63100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file +[{"id":"0b97b69a-dd59-4991-a331-8f7aa2fc4638","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:57.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6722,"total_pss":125320,"rss":205172,"native_total_heap":15236,"native_free_heap":1137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"32b58017-de7a-4c07-82d4-2c5c28ef223e","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:01.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6534,"total_pss":127213,"rss":207004,"native_total_heap":15236,"native_free_heap":1102,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4123cfe4-b5a6-4f74-9ff0-b47f8dd5a104","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.72500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887634,"end_time":6887682,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"7870","content-type":"multipart/form-data; boundary=b2530d2c-2c98-485c-bb95-3304bff86632","host":"10.0.2.2:8080","msr-req-id":"eb714993-8c45-4eab-9040-99073290bc57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:55 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"46a81626-1cc6-4d7c-beac-2177662f3f8f","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4d68ac8c-2cb4-4a93-878c-a09bac2e0993","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"52486ac3-039e-44d4-b804-2b33c3ffe0e8","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.82100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"5a846d6f-e5c3-4569-a543-a4b57b89c136","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.97200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||5b925288-e10c-4aa9-ba47-3cdf2bf96bff|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"618311d2-1385-446b-8ca8-8ce77533e37c","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6893121,"utime":85,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"61866e06-a548-449c-b22c-f05308963539","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:59.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6586,"total_pss":127324,"rss":207004,"native_total_heap":15236,"native_free_heap":1118,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"762cf051-9f0b-42e6-8e73-db9e20111a72","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:03.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":42705,"java_free_heap":0,"total_pss":127277,"rss":207488,"native_total_heap":15492,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"790be410-611f-4557-9d2a-84eb625d505d","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.83700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887730,"end_time":6887795,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38183","content-type":"multipart/form-data; boundary=f841744e-0177-481a-ab2c-dc69f1556281","host":"10.0.2.2:8080","msr-req-id":"0e6b85fa-701f-4b08-ba7a-dcba883e8238","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"83dbbed7-0213-47e3-ba13-be04ba68d3cf","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:55.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":49152,"java_free_heap":6810,"total_pss":125233,"rss":205056,"native_total_heap":15236,"native_free_heap":1142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"96eaacde-252a-443e-a2ba-520c2383ac46","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:56.16400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6890121,"utime":81,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"a4ffe741-6c49-4a64-ad81-33393b0b7d20","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.65400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"b41f7221-33ba-4a2b-ba2f-f8f9c1b77ae9","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.17000000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512464,"total_pss":73637,"rss":151848,"native_total_heap":12004,"native_free_heap":1292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c253f3ed-ef37-4c3a-b7ac-503f78736cb2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.86900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"c6503ac9-bff4-4db2-84dc-bbbae4289791","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:07:02.16100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6896119,"utime":87,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d06ca76c-ebf5-44e0-b425-98c20643d7d2","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.16800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":688637,"uptime":6887126,"utime":19,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d4d1dda5-355f-4bfd-9a2c-4124c7bea812","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:54.07900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":6887968,"end_time":6888037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_265d9df126319fca8e6ab48f2c96e3765d13d3a8a6cdf36ec34687ff6d18c144_e45301e2","connection":"Keep-Alive","content-length":"38067","content-type":"multipart/form-data; boundary=f640b6e6-0608-42a8-9051-f016d14db26a","host":"10.0.2.2:8080","msr-req-id":"878f7d79-62de-4426-9dac-ca42bdebbeb7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 12:06:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"ee78a3c4-5670-4266-a349-d743e7c4e59a","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.67300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"eeab5d2d-c577-40e7-87ab-12368ebf8ba3","session_id":"65aaf877-e000-4ff3-9f8f-a0dbb10e9b00","timestamp":"2024-04-29T12:06:53.63100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json index 81dd290d7..0719cf1b1 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/b59194de-783c-468b-9ece-65bb2921a097.json @@ -1 +1 @@ -[{"id":"0b181b11-f8b9-4d42-a609-0e7a92a3e22b","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.30900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f7816a02-2bbc-4b01-a87c-9e41de9e4749|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"26f4dcc4-02eb-48dd-949b-56ca4dcf9b9d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12700000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512698,"total_pss":73403,"rss":148836,"native_total_heap":11748,"native_free_heap":1293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"44e7a328-8021-4aaa-b68c-68abad49b0a5","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":697718,"uptime":6978078,"utime":22,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"469c4e6c-c830-4f77-a6ea-771b07b6256d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.14100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"8017a37a-8472-4fc0-87be-1e1257b7635c","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"b453a1fd-3a49-43b2-9a00-dfeac9c8bee1","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.29100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"e397868b-6226-4fbc-ae7d-c9dab31253aa","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}}] \ No newline at end of file +[{"id":"0b181b11-f8b9-4d42-a609-0e7a92a3e22b","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.30900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||f7816a02-2bbc-4b01-a87c-9e41de9e4749|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"26f4dcc4-02eb-48dd-949b-56ca4dcf9b9d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12700000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512698,"total_pss":73403,"rss":148836,"native_total_heap":11748,"native_free_heap":1293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"44e7a328-8021-4aaa-b68c-68abad49b0a5","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.12000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":697718,"uptime":6978078,"utime":22,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"469c4e6c-c830-4f77-a6ea-771b07b6256d","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.14100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"8017a37a-8472-4fc0-87be-1e1257b7635c","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"b453a1fd-3a49-43b2-9a00-dfeac9c8bee1","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:25.29100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}},{"id":"e397868b-6226-4fbc-ae7d-c9dab31253aa","session_id":"bcafd264-43eb-433b-8851-00306ecc2706","timestamp":"2024-04-29T12:08:24.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"b0ba2ee2-aae9-4cb1-b08b-82c1aadee68c"}}] \ No newline at end of file diff --git a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json index 367f2f795..12b13a8c6 100644 --- a/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json +++ b/self-host/session-data/au.com.shiftyjelly.pocketcasts.debug/7.62/eb714993-8c45-4eab-9040-99073290bc57.json @@ -1 +1 @@ -[{"id":"3daf174c-20c3-4df1-bfa5-a30d009cba33","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":688414,"uptime":6885081,"utime":22,"cutime":0,"cstime":0,"stime":7,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3dee4eae-169c-428e-9b9c-7a0a931d85ab","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.10700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4b3ccd60-1b8b-4d9f-a806-c693a7baff0b","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.06600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"60e18c2a-171d-44a7-9ab8-f0d809ac3fc9","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.86000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"735bcd5e-2311-4bbf-a62f-f2e1688351f1","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512272,"total_pss":73598,"rss":151144,"native_total_heap":11748,"native_free_heap":1267,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d29fc0d2-5575-4478-a55d-fcf0793ab134","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.26200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||88b38be4-ec8c-424c-8188-dd9da90afcdf|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"e58040e4-fb14-48df-a874-173606d7c1b7","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.24900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file +[{"id":"3daf174c-20c3-4df1-bfa5-a30d009cba33","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":688414,"uptime":6885081,"utime":22,"cutime":0,"cstime":0,"stime":7,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"3dee4eae-169c-428e-9b9c-7a0a931d85ab","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.10700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.UpNextFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"4b3ccd60-1b8b-4d9f-a806-c693a7baff0b","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.06600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"60e18c2a-171d-44a7-9ab8-f0d809ac3fc9","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.86000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"au.com.shiftyjelly.pocketcasts.ui.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"735bcd5e-2311-4bbf-a62f-f2e1688351f1","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:51.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":524288,"java_total_heap":524288,"java_free_heap":512272,"total_pss":73598,"rss":151144,"native_total_heap":11748,"native_free_heap":1267,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"d29fc0d2-5575-4478-a55d-fcf0793ab134","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.26200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment","parent_activity":"au.com.shiftyjelly.pocketcasts.ui.MainActivity","tag":"au.com.shiftyjelly.pocketcasts.navigator|au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment||88b38be4-ec8c-424c-8188-dd9da90afcdf|"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}},{"id":"e58040e4-fb14-48df-a874-173606d7c1b7","session_id":"4339f2be-ec13-4858-9b7f-322e5ddf55f4","timestamp":"2024-04-29T12:06:52.24900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"7.62","app_build":"9223","app_unique_id":"au.com.shiftyjelly.pocketcasts.debug","measure_sdk_version":"0.1.0","installation_id":"d96cd6d5-0730-4aa4-8eec-3e580e9819ec"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json index 53771d8ff..32cd15e65 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/01685d51-71b9-4482-9668-8b2e5ae8f8dd.json @@ -1 +1 @@ -[{"id":"033a2f6d-992f-4b80-8bc2-e84d7ca78b59","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":2858,"java_free_heap":0,"total_pss":28454,"rss":107352,"native_total_heap":8192,"native_free_heap":2141,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33e40c0e-ed4d-497b-b161-3321c12fc13f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.22300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"419b2cfa-ea73-4521-b380-c2590a80b151","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.23900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"642c5d0f-11e7-4992-a621-a46b4a0764e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":303976,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"033a2f6d-992f-4b80-8bc2-e84d7ca78b59","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":2858,"java_free_heap":0,"total_pss":28454,"rss":107352,"native_total_heap":8192,"native_free_heap":2141,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33e40c0e-ed4d-497b-b161-3321c12fc13f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.22300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"419b2cfa-ea73-4521-b380-c2590a80b151","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.23900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"642c5d0f-11e7-4992-a621-a46b4a0764e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":303976,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json index 4a6df2c2a..f2d26ee9b 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/17d11007-08e8-44ce-aa75-4a8cce7b6ab9.json @@ -1 +1 @@ -[{"id":"037d87fe-1988-4b24-9f57-07ffcc950ae7","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.04200000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":438580,"end_time":438860,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:37 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-srw7l","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0685ac7e-87ea-4226-bce4-a2ad2986e788","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:24.43900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":437110,"end_time":437258,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"269","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/144","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"080e2171-de6f-4693-b82b-975c9af5fe81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.72600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"083994e6-13c7-4424-bfcf-fdb34ff0b951","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.79300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0bd6df5f-36d6-40e7-bb11-fcf2ad9be12d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19706,"java_free_heap":1130,"total_pss":89366,"rss":167304,"native_total_heap":34816,"native_free_heap":3600,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e5fca42-24e4-467c-8024-033a9e4a444e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10505f55-0a52-4ac6-af56-ae84e7ba7eea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17c1a014-017a-4d51-acb5-e084ee8cb0c8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.80400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1e654831-1d2c-4c85-bfa9-09858ccdd3bb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:08.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5623,"total_pss":159295,"rss":228064,"native_total_heap":109056,"native_free_heap":30254,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1fe104d7-b4aa-4dd1-9598-c90a10e6e99f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":436679,"end_time":436707,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"150097","content-type":"multipart/form-data; boundary=d063c080-7f95-475f-aa44-9a4ebaa09e25","host":"10.0.2.2:8080","msr-req-id":"34cc5ee9-6bff-4627-9582-6ad2d52e030a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c6b02ba-f97e-49e0-8ac0-5c9864a43b7b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18200000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2ddedadc-e2e9-4798-8d47-bf18d90b3d36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5691,"total_pss":159251,"rss":228048,"native_total_heap":109056,"native_free_heap":30318,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3170ad14-e50b-4884-8f53-50ac912f105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"327555b4-6d9c-4537-92f5-4a907185b020","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.93000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c1d82fb-4019-4dad-a719-3821e6deddd1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46bc7cf8-bdea-44e4-9e80-9b54c9561c8d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51533698-9c69-4765-ab9d-815f4a38eb03","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.73000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51bcd65a-5f52-4c4a-8204-37269c22f7b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.59900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":413378,"end_time":413418,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"408478","content-type":"multipart/form-data; boundary=44ce5e93-400a-41b2-80fd-7e0c2f51dd37","host":"10.0.2.2:8080","msr-req-id":"bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:00 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5238ea13-3b3e-43e0-8f71-9e322eaaf9d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5399,"total_pss":159427,"rss":228280,"native_total_heap":109056,"native_free_heap":30211,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52450abc-6b9d-43df-97db-e21e61181e39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55d52ae0-056b-4408-8087-c8046dd395f4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"598e3d72-bb77-417f-8420-06a2e680ecb1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1a7e21-2ee3-4eb4-bd3b-012eff173be3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.07700000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":436614,"end_time":437896,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"384","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/5","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5d416619-320e-47f8-a250-71ff33ee5ebc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.95400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":438066,"end_time":438773,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"749","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Leader_of_the_Opposition_(Thailand)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:03:26 GMT","etag":"W/\"1216360239/6ac8d1b0-1436-11ef-ab6d-1445b05884d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Leader of the Opposition (Thailand)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6508568\",\"titles\":{\"canonical\":\"Leader_of_the_Opposition_(Thailand)\",\"normalized\":\"Leader of the Opposition (Thailand)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\"},\"pageid\":20706766,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Chaitawat_Tulathon-2023-12-10.jpg/320px-Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6d/Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":708,\"height\":943},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216360239\",\"tid\":\"f0610a12-eea4-11ee-9812-4134d6c417e9\",\"timestamp\":\"2024-03-30T14:51:07Z\",\"description\":\"Politician who leads the parliamentary opposition in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leader_of_the_Opposition_(Thailand)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"}},\"extract\":\"The Leader of the Opposition in the House of Representatives, more commonly described as the Leader of the Opposition, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLeader of the Opposition in the House of Representatives\u003c/b\u003e, more commonly described as the \u003cb\u003eLeader of the Opposition\u003c/b\u003e, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e9ff900-e296-4d5e-9864-373a03ff5473","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":425352,"utime":1141,"cutime":0,"cstime":0,"stime":1032,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6b75adbe-43e3-4f01-aa27-b5560eec8966","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.86500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6deede5f-fbd6-489d-bb7a-f9437d9c7510","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e9c0478-dc22-4b6e-85d3-271f355c2d6a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6f240e79-af1f-4d6e-b72e-337a45f2a1ef","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"710b9436-b953-4d92-a681-0eea5ac93bbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:02.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5851,"total_pss":159166,"rss":227772,"native_total_heap":109056,"native_free_heap":30361,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"715e34d1-b692-4af0-9210-df459476efc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:04.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5763,"total_pss":159222,"rss":227812,"native_total_heap":109056,"native_free_heap":30325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"749a2704-e456-4312-9d0e-70f14a8d068b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7628ef51-5a14-4edb-a955-32151f242eb8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.98700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":436795,"end_time":436806,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76311337-aef9-477b-b10f-9ac9bb92e6f2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e12c31f-65c1-4319-8b3a-baf1a186c593","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":436564,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"849c5b1c-c9b7-40ca-9274-c910a7af3011","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cf84eab-f29f-4806-958a-dfb77a10954e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:09.53300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":422352,"utime":1139,"cutime":0,"cstime":0,"stime":1030,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90b3a5c4-52a7-4cba-99c9-01af5dca317e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:10.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5551,"total_pss":159347,"rss":228244,"native_total_heap":109056,"native_free_heap":30219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"992fa3e7-b765-47a1-be8b-cd243fd432ab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.24800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":427012,"end_time":427067,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"103713","content-type":"multipart/form-data; boundary=41c0d3e7-82dc-46ba-8025-5127be67c0b3","host":"10.0.2.2:8080","msr-req-id":"d739b906-a193-4659-801e-654570f5f1b4","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad4e968-3fa9-42a2-be29-6a985eb30bb4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a89c9c6c-f3f8-47b6-b474-a6b09c695a91","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":3387,"java_free_heap":1641,"total_pss":29532,"rss":97736,"native_total_heap":8192,"native_free_heap":2905,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8ccb8e6-6708-4cd1-b097-d109559e96ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.52300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":426993,"end_time":427342,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1095","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8da1568-c06a-41ec-a8ab-85e578fe450d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_COMPLETE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8e2aeeb-0a75-44c9-ae1d-a65300eb9d4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.97000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":436548,"on_next_draw_uptime":436789,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1be7717-8c28-438f-b09c-57523c27e6e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":419348,"utime":1136,"cutime":0,"cstime":0,"stime":1026,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da283e7b-04ab-49a0-a357-ec3376daccce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:15.82100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db316ebd-c7fa-4be8-b93a-a08d1658c292","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:03.53400000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":416353,"utime":1135,"cutime":0,"cstime":0,"stime":1023,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f458580d-3df0-4095-9ff2-72daa3a5fc11","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53200000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4298,"total_pss":158002,"rss":230176,"native_total_heap":109056,"native_free_heap":28821,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9214e31-79a3-4c6e-b09f-6eb5d9b54f63","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.17300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fda916f0-bcc8-428f-8ba0-f355d5983303","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.69100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":530.96924,"y":309.96094,"touch_down_time":438401,"touch_up_time":438507},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"037d87fe-1988-4b24-9f57-07ffcc950ae7","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.04200000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":438580,"end_time":438860,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:37 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-srw7l","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0685ac7e-87ea-4226-bce4-a2ad2986e788","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:24.43900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":437110,"end_time":437258,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"269","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/144","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"080e2171-de6f-4693-b82b-975c9af5fe81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.72600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"083994e6-13c7-4424-bfcf-fdb34ff0b951","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.79300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0bd6df5f-36d6-40e7-bb11-fcf2ad9be12d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19706,"java_free_heap":1130,"total_pss":89366,"rss":167304,"native_total_heap":34816,"native_free_heap":3600,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e5fca42-24e4-467c-8024-033a9e4a444e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10505f55-0a52-4ac6-af56-ae84e7ba7eea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17c1a014-017a-4d51-acb5-e084ee8cb0c8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.80400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1e654831-1d2c-4c85-bfa9-09858ccdd3bb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:08.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5623,"total_pss":159295,"rss":228064,"native_total_heap":109056,"native_free_heap":30254,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1fe104d7-b4aa-4dd1-9598-c90a10e6e99f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":436679,"end_time":436707,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"150097","content-type":"multipart/form-data; boundary=d063c080-7f95-475f-aa44-9a4ebaa09e25","host":"10.0.2.2:8080","msr-req-id":"34cc5ee9-6bff-4627-9582-6ad2d52e030a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c6b02ba-f97e-49e0-8ac0-5c9864a43b7b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18200000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2ddedadc-e2e9-4798-8d47-bf18d90b3d36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5691,"total_pss":159251,"rss":228048,"native_total_heap":109056,"native_free_heap":30318,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3170ad14-e50b-4884-8f53-50ac912f105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"327555b4-6d9c-4537-92f5-4a907185b020","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.93000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c1d82fb-4019-4dad-a719-3821e6deddd1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46bc7cf8-bdea-44e4-9e80-9b54c9561c8d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51533698-9c69-4765-ab9d-815f4a38eb03","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.73000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51bcd65a-5f52-4c4a-8204-37269c22f7b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.59900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":413378,"end_time":413418,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"408478","content-type":"multipart/form-data; boundary=44ce5e93-400a-41b2-80fd-7e0c2f51dd37","host":"10.0.2.2:8080","msr-req-id":"bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:00 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5238ea13-3b3e-43e0-8f71-9e322eaaf9d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5399,"total_pss":159427,"rss":228280,"native_total_heap":109056,"native_free_heap":30211,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52450abc-6b9d-43df-97db-e21e61181e39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55d52ae0-056b-4408-8087-c8046dd395f4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.74300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"598e3d72-bb77-417f-8420-06a2e680ecb1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1a7e21-2ee3-4eb4-bd3b-012eff173be3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.07700000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":436614,"end_time":437896,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"384","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/5","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5d416619-320e-47f8-a250-71ff33ee5ebc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.95400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":438066,"end_time":438773,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"749","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Leader_of_the_Opposition_(Thailand)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:03:26 GMT","etag":"W/\"1216360239/6ac8d1b0-1436-11ef-ab6d-1445b05884d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Leader of the Opposition (Thailand)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6508568\",\"titles\":{\"canonical\":\"Leader_of_the_Opposition_(Thailand)\",\"normalized\":\"Leader of the Opposition (Thailand)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeader of the Opposition (Thailand)\u003c/span\u003e\"},\"pageid\":20706766,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Chaitawat_Tulathon-2023-12-10.jpg/320px-Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6d/Chaitawat_Tulathon-2023-12-10.jpg\",\"width\":708,\"height\":943},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216360239\",\"tid\":\"f0610a12-eea4-11ee-9812-4134d6c417e9\",\"timestamp\":\"2024-03-30T14:51:07Z\",\"description\":\"Politician who leads the parliamentary opposition in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leader_of_the_Opposition_(Thailand)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leader_of_the_Opposition_(Thailand)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leader_of_the_Opposition_(Thailand)\"}},\"extract\":\"The Leader of the Opposition in the House of Representatives, more commonly described as the Leader of the Opposition, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLeader of the Opposition in the House of Representatives\u003c/b\u003e, more commonly described as the \u003cb\u003eLeader of the Opposition\u003c/b\u003e, is the politician in the politics of Thailand who leads the main minority party in the House of Representatives. The Leader of the Opposition is the leader of the largest political party in the House of Representatives that is not in government.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e9ff900-e296-4d5e-9864-373a03ff5473","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:12.53300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":425352,"utime":1141,"cutime":0,"cstime":0,"stime":1032,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6b75adbe-43e3-4f01-aa27-b5560eec8966","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.86500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6deede5f-fbd6-489d-bb7a-f9437d9c7510","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e9c0478-dc22-4b6e-85d3-271f355c2d6a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6f240e79-af1f-4d6e-b72e-337a45f2a1ef","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"710b9436-b953-4d92-a681-0eea5ac93bbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:02.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5851,"total_pss":159166,"rss":227772,"native_total_heap":109056,"native_free_heap":30361,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"715e34d1-b692-4af0-9210-df459476efc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:04.53400000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5763,"total_pss":159222,"rss":227812,"native_total_heap":109056,"native_free_heap":30325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"749a2704-e456-4312-9d0e-70f14a8d068b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.70300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7628ef51-5a14-4edb-a955-32151f242eb8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.98700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":436795,"end_time":436806,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76311337-aef9-477b-b10f-9ac9bb92e6f2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.76900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e12c31f-65c1-4319-8b3a-baf1a186c593","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":43643,"uptime":436564,"utime":6,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"849c5b1c-c9b7-40ca-9274-c910a7af3011","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.16600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cf84eab-f29f-4806-958a-dfb77a10954e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:09.53300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":422352,"utime":1139,"cutime":0,"cstime":0,"stime":1030,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90b3a5c4-52a7-4cba-99c9-01af5dca317e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:10.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":25705,"java_free_heap":5551,"total_pss":159347,"rss":228244,"native_total_heap":109056,"native_free_heap":30219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"992fa3e7-b765-47a1-be8b-cd243fd432ab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.24800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":427012,"end_time":427067,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"103713","content-type":"multipart/form-data; boundary=41c0d3e7-82dc-46ba-8025-5127be67c0b3","host":"10.0.2.2:8080","msr-req-id":"d739b906-a193-4659-801e-654570f5f1b4","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad4e968-3fa9-42a2-be29-6a985eb30bb4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.83200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a89c9c6c-f3f8-47b6-b474-a6b09c695a91","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":3387,"java_free_heap":1641,"total_pss":29532,"rss":97736,"native_total_heap":8192,"native_free_heap":2905,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8ccb8e6-6708-4cd1-b097-d109559e96ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.52300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":426993,"end_time":427342,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1095","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a8da1568-c06a-41ec-a8ab-85e578fe450d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.18800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_COMPLETE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8e2aeeb-0a75-44c9-ae1d-a65300eb9d4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:23.97000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":436548,"on_next_draw_uptime":436789,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1be7717-8c28-438f-b09c-57523c27e6e2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:06.52900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":419348,"utime":1136,"cutime":0,"cstime":0,"stime":1026,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da283e7b-04ab-49a0-a357-ec3376daccce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:15.82100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db316ebd-c7fa-4be8-b93a-a08d1658c292","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:03.53400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":416353,"utime":1135,"cutime":0,"cstime":0,"stime":1023,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f458580d-3df0-4095-9ff2-72daa3a5fc11","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53200000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4298,"total_pss":158002,"rss":230176,"native_total_heap":109056,"native_free_heap":28821,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9214e31-79a3-4c6e-b09f-6eb5d9b54f63","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:14.17300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fda916f0-bcc8-428f-8ba0-f355d5983303","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:25.69100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":530.96924,"y":309.96094,"touch_down_time":438401,"touch_up_time":438507},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json index 711539655..18a9b23c4 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/28ec1966-81f7-400e-bd6c-f82f30bcf0aa.json @@ -1 +1 @@ -[{"id":"04b43dc9-565f-4d63-b9e4-3ab84679b972","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"069217bd-2488-4890-8157-c2eb34d39832","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e150185-dfbd-41c6-8783-ef8d5bdbf9c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14ba4714-b6a9-45d0-9d34-f6e50ab44d87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1616f8c4-704b-44c5-a07e-78005189a661","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":6044,"total_pss":132114,"rss":204976,"native_total_heap":87552,"native_free_heap":23179,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"192c3beb-d86b-4459-ba7b-14bf8debe558","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.39500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":391897,"end_time":392214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1d871a7b-8f87-4eec-a98a-7f529f934c4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.13700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg","method":"get","status_code":200,"start_time":384903,"end_time":384956,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62755","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg","content-length":"290055","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:36 GMT","etag":"9e60cd6f7c9f7392a1e406a1ed7f0d9a","last-modified":"Sun, 24 Sep 2023 19:26:09 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/218","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f223132-a9eb-4cf0-aeb8-1ea47b38b85f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.33100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21c86613-f702-4e9c-b5b1-3efe6f9852c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":389348,"utime":846,"cutime":0,"cstime":0,"stime":783,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"257841b3-d45c-4815-9209-9fa69fe65057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.16900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27f73b5b-95b5-4149-afdb-2d07711496a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.00000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":393530,"end_time":393819,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"313181e9-8e80-41c6-9a68-5c6b0f4d08f1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.56800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":393367,"end_time":393387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"110402","content-type":"multipart/form-data; boundary=49f40a14-2ff6-476a-8b10-a14e9b5c6063","host":"10.0.2.2:8080","msr-req-id":"d0be6d67-9f94-42af-8bb9-dfcb7feada57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b2c667-fe02-477d-a092-d2fe99a38bba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b50eff8-5375-4373-a5ce-eb1915ffad0b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.17800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f57ee7c-66fd-4fb9-a06d-90183abc076c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":395347,"utime":872,"cutime":0,"cstime":0,"stime":801,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f77f311-faaf-4b4c-b5e6-8270390171ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4059ec59-d1bf-43a5-80e4-d53c8dcae35d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.47800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385974,"end_time":386297,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"383","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"446eef73-a543-42e9-ba0a-224be5418418","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.14000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a4726c3-7813-4239-bce4-3d621b9a3037","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b3a547f-f9d7-4bba-a079-ff4ea0572096","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.06600000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1013.9502,"y":286.9336,"touch_down_time":391772,"touch_up_time":391882},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f33ed6f-90f4-47e4-9d0e-ad365fd0442e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.15800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6263bba6-12a7-4c4b-9f72-027550c2daa1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"627e0bcd-b521-4ec4-a3e3-46dde4ef5149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.03600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","method":"get","status_code":200,"start_time":384799,"end_time":384855,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63920","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","content-length":"290076","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:17:13 GMT","etag":"0748f92ede46e56ceaed2c5e162f4085","last-modified":"Sat, 24 Sep 2022 00:06:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64eab882-4e09-41e0-a13a-52a3a341a778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:34.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":5152,"total_pss":113116,"rss":182256,"native_total_heap":87552,"native_free_heap":23015,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"662b01ba-59e2-4449-b544-75d8835acc32","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ae21a21-c480-49f7-8ac4-c2a01babd0c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70797df3-0adf-4a00-9a54-a6903fbccf42","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.48100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385975,"end_time":386300,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1063","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7237cc04-0b89-4502-ae86-ccc8f504689f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.08200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg","method":"get","status_code":200,"start_time":384857,"end_time":384901,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65150","content-disposition":"inline;filename*=UTF-8''Raisi-Xi_meeting_%282023-02-14%29.jpg","content-length":"66778","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:56:43 GMT","etag":"c1bc3653d320e9fa9ff8eb37893a6b43","last-modified":"Mon, 13 Mar 2023 12:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/150","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83b99cc6-d668-4185-a612-ff08f4ad2221","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:38.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4847,"total_pss":112145,"rss":180336,"native_total_heap":87552,"native_free_heap":22753,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a730330-3339-4d25-b76e-7482d0354ea5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4297,"total_pss":113250,"rss":183276,"native_total_heap":87552,"native_free_heap":22713,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8e9393b2-eef6-4e8e-b9a1-b8f127080a6b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95e76ce9-224e-489c-9916-1cad534b3740","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.13000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":327.97485,"y":1738.9453,"touch_down_time":394848,"touch_up_time":394944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97711184-0b77-4d4a-a3b3-4b661964c18e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"983e6cef-dd73-4f0f-b53c-2c4def2529b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4899,"total_pss":112456,"rss":180616,"native_total_heap":87552,"native_free_heap":22769,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c6862a1-387a-49b5-a386-bbcac8c1f7b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac45c30d-270f-4ea6-b798-47609513beda","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b37f1352-ba14-4967-8b43-34eee983854a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b980ef0f-49f2-4421-ad8d-bc920caea4be","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":728,"total_pss":121830,"rss":190620,"native_total_heap":87552,"native_free_heap":20845,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3a1ac7-2898-4203-a291-875707b8be14","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c19db484-4b57-4f93-8673-64de7c4f0119","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c636e075-36e5-4281-9a25-e5b3e04cb459","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.03100000Z","type":"gesture_click","gesture_click":{"target":"android.view.View","target_id":"touch_outside","width":1080,"height":1731,"x":203.98315,"y":726.97266,"touch_down_time":396769,"touch_up_time":396848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d159d497-7ec9-4bde-9e43-0253233fbd15","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":392347,"utime":855,"cutime":0,"cstime":0,"stime":792,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2f8f1c8-c725-4dd8-bce6-9da89f84e623","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":384539,"end_time":385018,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"20827","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"959","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Toll-like_receptor","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 03:15:24 GMT","etag":"W/\"1220855300/c5388090-1531-11ef-9fa7-8027fc84d00e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Toll-like receptor\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q408004\",\"titles\":{\"canonical\":\"Toll-like_receptor\",\"normalized\":\"Toll-like receptor\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\"},\"pageid\":546406,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/TLR3_structure.png/320px-TLR3_structure.png\",\"width\":320,\"height\":273},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/06/TLR3_structure.png\",\"width\":917,\"height\":782},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220855300\",\"tid\":\"0d5d010b-03b3-11ef-915d-4775157a1b6a\",\"timestamp\":\"2024-04-26T09:55:03Z\",\"description\":\"Class of immune system proteins\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toll-like_receptor\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toll-like_receptor\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toll-like_receptor\"}},\"extract\":\"Toll-like receptors (TLRs) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToll-like receptors\u003c/b\u003e (\u003cb\u003eTLRs\u003c/b\u003e) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6bfea51-04d4-43f5-ad89-357b8f048390","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":938.9685,"y":1752.8906,"touch_down_time":395780,"touch_up_time":395944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d811588e-1221-4f1d-80b6-7e7336d6b53e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":384959,"end_time":385010,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bf327d5124c258158127165fb9e293ab","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11324","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","content-length":"260547","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:53:48 GMT","etag":"24cb7d8b309ae3d7c73f835cbed0cdc1","last-modified":"Mon, 20 May 2024 05:52:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/165","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2f3ebbd-a5bf-49b2-b5b8-345fb507dbe6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5e6cc8d-2abe-4795-af76-8616434ec95d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.98000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":971.96045,"y":324.96094,"touch_down_time":385727,"touch_up_time":385797},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0e6e4b3-cdae-4ef0-b812-97eb8d4e31c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":386347,"utime":842,"cutime":0,"cstime":0,"stime":776,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fd24ff22-ed89-4805-ae04-aa9ee543b0ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.70700000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1004.9524,"y":305.97656,"touch_down_time":393412,"touch_up_time":393525},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"feb620da-3195-4f6c-9f2c-0cd3aae12e2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"04b43dc9-565f-4d63-b9e4-3ab84679b972","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"069217bd-2488-4890-8157-c2eb34d39832","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e150185-dfbd-41c6-8783-ef8d5bdbf9c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14ba4714-b6a9-45d0-9d34-f6e50ab44d87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1616f8c4-704b-44c5-a07e-78005189a661","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":6044,"total_pss":132114,"rss":204976,"native_total_heap":87552,"native_free_heap":23179,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"192c3beb-d86b-4459-ba7b-14bf8debe558","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.39500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":391897,"end_time":392214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1d871a7b-8f87-4eec-a98a-7f529f934c4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.13700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg","method":"get","status_code":200,"start_time":384903,"end_time":384956,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62755","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg","content-length":"290055","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:36 GMT","etag":"9e60cd6f7c9f7392a1e406a1ed7f0d9a","last-modified":"Sun, 24 Sep 2023 19:26:09 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/218","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f223132-a9eb-4cf0-aeb8-1ea47b38b85f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.33100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21c86613-f702-4e9c-b5b1-3efe6f9852c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":389348,"utime":846,"cutime":0,"cstime":0,"stime":783,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"257841b3-d45c-4815-9209-9fa69fe65057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.16900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27f73b5b-95b5-4149-afdb-2d07711496a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.00000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":393530,"end_time":393819,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"710","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"313181e9-8e80-41c6-9a68-5c6b0f4d08f1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.56800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":393367,"end_time":393387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"110402","content-type":"multipart/form-data; boundary=49f40a14-2ff6-476a-8b10-a14e9b5c6063","host":"10.0.2.2:8080","msr-req-id":"d0be6d67-9f94-42af-8bb9-dfcb7feada57","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b2c667-fe02-477d-a092-d2fe99a38bba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b50eff8-5375-4373-a5ce-eb1915ffad0b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.17800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f57ee7c-66fd-4fb9-a06d-90183abc076c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":395347,"utime":872,"cutime":0,"cstime":0,"stime":801,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f77f311-faaf-4b4c-b5e6-8270390171ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4059ec59-d1bf-43a5-80e4-d53c8dcae35d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.47800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385974,"end_time":386297,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"383","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"446eef73-a543-42e9-ba0a-224be5418418","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.14000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a4726c3-7813-4239-bce4-3d621b9a3037","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b3a547f-f9d7-4bba-a079-ff4ea0572096","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.06600000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1013.9502,"y":286.9336,"touch_down_time":391772,"touch_up_time":391882},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f33ed6f-90f4-47e4-9d0e-ad365fd0442e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.15800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6263bba6-12a7-4c4b-9f72-027550c2daa1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"627e0bcd-b521-4ec4-a3e3-46dde4ef5149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.03600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","method":"get","status_code":200,"start_time":384799,"end_time":384855,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63920","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg","content-length":"290076","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:17:13 GMT","etag":"0748f92ede46e56ceaed2c5e162f4085","last-modified":"Sat, 24 Sep 2022 00:06:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64eab882-4e09-41e0-a13a-52a3a341a778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:34.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":5152,"total_pss":113116,"rss":182256,"native_total_heap":87552,"native_free_heap":23015,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"662b01ba-59e2-4449-b544-75d8835acc32","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ae21a21-c480-49f7-8ac4-c2a01babd0c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70797df3-0adf-4a00-9a54-a6903fbccf42","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.48100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":385975,"end_time":386300,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1063","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7237cc04-0b89-4502-ae86-ccc8f504689f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.08200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg","method":"get","status_code":200,"start_time":384857,"end_time":384901,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65150","content-disposition":"inline;filename*=UTF-8''Raisi-Xi_meeting_%282023-02-14%29.jpg","content-length":"66778","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:56:43 GMT","etag":"c1bc3653d320e9fa9ff8eb37893a6b43","last-modified":"Mon, 13 Mar 2023 12:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/150","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83b99cc6-d668-4185-a612-ff08f4ad2221","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:38.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4847,"total_pss":112145,"rss":180336,"native_total_heap":87552,"native_free_heap":22753,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a730330-3339-4d25-b76e-7482d0354ea5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4297,"total_pss":113250,"rss":183276,"native_total_heap":87552,"native_free_heap":22713,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8e9393b2-eef6-4e8e-b9a1-b8f127080a6b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.15200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95e76ce9-224e-489c-9916-1cad534b3740","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.13000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":327.97485,"y":1738.9453,"touch_down_time":394848,"touch_up_time":394944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97711184-0b77-4d4a-a3b3-4b661964c18e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"983e6cef-dd73-4f0f-b53c-2c4def2529b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:36.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":4899,"total_pss":112456,"rss":180616,"native_total_heap":87552,"native_free_heap":22769,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c6862a1-387a-49b5-a386-bbcac8c1f7b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac45c30d-270f-4ea6-b798-47609513beda","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b37f1352-ba14-4967-8b43-34eee983854a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:41.14400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b980ef0f-49f2-4421-ad8d-bc920caea4be","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:42.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":728,"total_pss":121830,"rss":190620,"native_total_heap":87552,"native_free_heap":20845,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3a1ac7-2898-4203-a291-875707b8be14","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c19db484-4b57-4f93-8673-64de7c4f0119","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.71000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c636e075-36e5-4281-9a25-e5b3e04cb459","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.03100000Z","type":"gesture_click","gesture_click":{"target":"android.view.View","target_id":"touch_outside","width":1080,"height":1731,"x":203.98315,"y":726.97266,"touch_down_time":396769,"touch_up_time":396848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d159d497-7ec9-4bde-9e43-0253233fbd15","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.52800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":392347,"utime":855,"cutime":0,"cstime":0,"stime":792,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2f8f1c8-c725-4dd8-bce6-9da89f84e623","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":384539,"end_time":385018,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"20827","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"959","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Toll-like_receptor","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 03:15:24 GMT","etag":"W/\"1220855300/c5388090-1531-11ef-9fa7-8027fc84d00e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Toll-like receptor\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q408004\",\"titles\":{\"canonical\":\"Toll-like_receptor\",\"normalized\":\"Toll-like receptor\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToll-like receptor\u003c/span\u003e\"},\"pageid\":546406,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/TLR3_structure.png/320px-TLR3_structure.png\",\"width\":320,\"height\":273},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/06/TLR3_structure.png\",\"width\":917,\"height\":782},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220855300\",\"tid\":\"0d5d010b-03b3-11ef-915d-4775157a1b6a\",\"timestamp\":\"2024-04-26T09:55:03Z\",\"description\":\"Class of immune system proteins\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toll-like_receptor\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toll-like_receptor\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toll-like_receptor?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toll-like_receptor\"}},\"extract\":\"Toll-like receptors (TLRs) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToll-like receptors\u003c/b\u003e (\u003cb\u003eTLRs\u003c/b\u003e) are a class of proteins that play a key role in the innate immune system. They are single-spanning receptors usually expressed on sentinel cells such as macrophages and dendritic cells, that recognize structurally conserved molecules derived from microbes. Once these microbes have reached physical barriers such as the skin or intestinal tract mucosa, they are recognized by TLRs, which activate immune cell responses. The TLRs include TLR1, TLR2, TLR3, TLR4, TLR5, TLR6, TLR7, TLR8, TLR9, TLR10, TLR11, TLR12, and TLR13. Humans lack genes for TLR11, TLR12 and TLR13 and mice lack a functional gene for TLR10. The receptors TLR1, TLR2, TLR4, TLR5, TLR6, and TLR10 are located on the cell membrane, whereas TLR3, TLR7, TLR8, and TLR9 are located in intracellular vesicles.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6bfea51-04d4-43f5-ad89-357b8f048390","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:43.12700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":938.9685,"y":1752.8906,"touch_down_time":395780,"touch_up_time":395944},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d811588e-1221-4f1d-80b6-7e7336d6b53e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.19100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":384959,"end_time":385010,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bf327d5124c258158127165fb9e293ab","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11324","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","content-length":"260547","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:53:48 GMT","etag":"24cb7d8b309ae3d7c73f835cbed0cdc1","last-modified":"Mon, 20 May 2024 05:52:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/165","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2f3ebbd-a5bf-49b2-b5b8-345fb507dbe6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.89700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5e6cc8d-2abe-4795-af76-8616434ec95d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:32.98000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":971.96045,"y":324.96094,"touch_down_time":385727,"touch_up_time":385797},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0e6e4b3-cdae-4ef0-b812-97eb8d4e31c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:33.52800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":386347,"utime":842,"cutime":0,"cstime":0,"stime":776,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fd24ff22-ed89-4805-ae04-aa9ee543b0ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:40.70700000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_container","width":996,"height":126,"x":1004.9524,"y":305.97656,"touch_down_time":393412,"touch_up_time":393525},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"feb620da-3195-4f6c-9f2c-0cd3aae12e2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:39.07500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json index f64fdae43..aab1a9e5f 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/297652fc-0d30-45ef-a68b-e8a8edebbb18.json @@ -1 +1 @@ -[{"id":"068c8201-2007-4c74-b6f3-912fac58ebbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.56800000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":405095,"end_time":405387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:52 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-9d7r2","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a30d6b-3246-4356-8652-211fad9b59b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"18f9d911-647c-49a7-a55d-a40466b8b460","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.63100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404803,"end_time":405449,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/3a9007c0-151c-11ef-b8e3-c8d506762f01\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1abe3620-2277-4655-b42a-9a3a283f76ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1df5b41d-c663-4833-b50f-29d771ddd065","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f52bd18-b905-4b47-84c0-d23730de3396","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407925,"end_time":408270,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"382","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3299f699-cc72-4d38-b718-b9d4cd8522a7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b332fed-35c9-4ae8-a246-9d0fb7039ae1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"776","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"411897ce-8a40-4c19-be7e-f118103a3b1d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.60700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51367f8a-2763-490a-bb26-19569b7ec3ce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":405462,"end_time":405465,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52e344a6-4f1b-40ba-ab2e-df359b7c8bb7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.12900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":304,"start_time":404710,"end_time":404948,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"123c8-18d7e9bad57\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"123c8-18d7e9bad57\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64a44103-12b2-4e49-b678-43f1fd63616d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":407349,"utime":1095,"cutime":0,"cstime":0,"stime":975,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69645315-9b61-4677-bafa-c77f77f39438","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a9a9787-d045-4b1c-8c0a-f4f126770e9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":405463,"end_time":405470,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77b61ef9-dd64-45a8-a08c-31b33ea85c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77c5761c-7ef8-4075-b69d-33cbbd972759","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":405466,"end_time":405473,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e7d1421-2884-4933-ae34-2a311eae94d1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19995,"java_free_heap":6096,"total_pss":187624,"rss":266104,"native_total_heap":125440,"native_free_heap":16078,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80abc601-6a8c-49b4-ba7c-6c991187ea16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.11500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/1280px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405628,"end_time":405934,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"181624","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:53 GMT","etag":"064f6c82433ef52f4e8b7e9b155fc79f","last-modified":"Sat, 27 Feb 2016 04:11:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qnwnnp5rha3oakobj2khjuxqblz4hyc"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84d253cf-ee49-48d5-b7d5-6e8c1187dbe8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404684,"end_time":404960,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1093","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8809aea3-406e-48f7-ad56-82ad6c9265a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"889971c8-b30a-4d16-9910-a98488ba9ee1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407924,"end_time":408271,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"719","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fb2ec4b-c2f3-41bb-ad3a-7a53f62e306e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:57.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":410347,"utime":1127,"cutime":0,"cstime":0,"stime":1012,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"905ec879-0b00-486d-bc8d-1c9bc89fab21","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"91fed9d8-4353-4c4e-9d60-0fe139075f4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.82300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":405638,"end_time":405642,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b8bad5c-cdc6-4515-9a23-c2c7dc119942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2fcf45f-68f6-4ef7-bc72-bbc436919679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.31500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":75.97046,"y":1610.918,"touch_down_time":409061,"touch_up_time":409130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7f64d11-bc63-4644-89de-c7c23c302f80","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.23700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404800,"end_time":405056,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/21a9d2e0-151c-11ef-a477-3a620a7dd899\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bridge School Benefit\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1090897\",\"titles\":{\"canonical\":\"Bridge_School_Benefit\",\"normalized\":\"Bridge School Benefit\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\"},\"pageid\":2169786,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg\",\"width\":320,\"height\":223},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/48/Shoreline_Amphitheatre.jpg\",\"width\":1368,\"height\":954},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211634642\",\"tid\":\"9ab739c3-d97a-11ee-8b93-5143dbf0a773\",\"timestamp\":\"2024-03-03T16:25:10Z\",\"description\":\"Charity concerts in California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.42666667,\"lon\":-122.08083333},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_Benefit\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"}},\"extract\":\"\\nThe Bridge School Benefit was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\",\"extract_html\":\"\u003cp\u003e\\nThe \u003cb\u003eBridge School Benefit\u003c/b\u003e was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"add18888-aa81-4eb8-a156-95e015603b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.89500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae08afa3-fa48-465f-a226-70f7bc1ddf4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b55f9252-dec8-4d11-b741-0a6e6f5a2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:58.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4402,"total_pss":157469,"rss":226016,"native_total_heap":109056,"native_free_heap":28907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7034817-ffda-4c89-baf7-f0bd9adbee97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20090,"java_free_heap":4487,"total_pss":173086,"rss":252736,"native_total_heap":125440,"native_free_heap":14291,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba0a2772-1879-4387-9d8f-58e29f24c6f2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.36100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":42.978516,"y":149.9414,"touch_down_time":407065,"touch_up_time":407177},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be144dcf-284c-41fb-a58d-632709c7646d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.00700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg","method":"get","status_code":200,"start_time":406780,"end_time":406826,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12911","content-length":"91849","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:27:44 GMT","etag":"acf48a134be1177e8ead7708e943023c","last-modified":"Fri, 04 Mar 2016 11:14:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"1mex37ctmfjotjempm05btcux9qn6ij"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c117bd61-90b1-4998-b182-659a857df241","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4474,"total_pss":160242,"rss":228808,"native_total_heap":109056,"native_free_heap":28883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c1808fa7-30ed-4eb7-8d9b-a647042d8207","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc004c5d-9d37-4019-97f1-9a1198c19bcb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.92900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/640px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405099,"end_time":405748,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"57970","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"1cd1b08c3fb56106a3d85abf7cbc51ed","last-modified":"Sat, 27 Feb 2016 04:12:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"g7x68wml5tl65yrgehmhinh8oov2m5j"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf372d6-f057-47a8-9e48-4b25cfaba829","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf8ce554-5bf4-4ab8-987a-7c59b95bea2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d191a3ea-e3fb-4243-9f9e-f741c22dcebe","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.21700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg","method":"get","status_code":200,"start_time":406781,"end_time":407036,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"32194","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:54 GMT","etag":"d70781fa5198476a7f1f0de3ed48f27a","last-modified":"Fri, 07 Jul 2017 22:10:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2dd7b1f-a0b9-4ce2-a943-47eee9abb399","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"backButton","width":126,"height":126,"x":42.978516,"y":149.9414,"touch_down_time":407819,"touch_up_time":407920},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d926155b-500b-4680-bd8c-488c48e43de6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407459,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"daa9f7d2-3021-4b9c-8b98-acc8e063b3fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"debbf582-e1b8-4fba-8cd6-4553dec8189d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e413d9d7-62d5-4f16-8a8e-946882e4d8c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5f59302-cdd5-4e92-9d18-4d2ae0a27f7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":405462,"end_time":405468,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e87a21a8-ac20-479f-bb90-dbeb12997cb0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404686,"end_time":404962,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1147","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb35a22b-709c-4dde-af91-1b41c9b071dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.93400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","method":"get","status_code":200,"start_time":405662,"end_time":406753,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:53 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2032","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"7z336l541cbo66002xhogwuo9","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":8228,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"Decade_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1181697\",\"titles\":{\"canonical\":\"Decade_(Neil_Young_album)\",\"normalized\":\"Decade (Neil Young album)\",\"display\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216315995\",\"tid\":\"9861d724-ee7b-11ee-aa1f-c0acd4f5457d\",\"timestamp\":\"2024-03-30T09:55:10Z\",\"description\":\"1977 compilation album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Decade_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"}},\"extract\":\"Decade is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the Billboard Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eDecade\u003c/b\u003e\u003c/i\u003e is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the \u003ci\u003eBillboard\u003c/i\u003e Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\u003c/p\u003e\",\"normalizedtitle\":\"Decade (Neil Young album)\"},{\"pageid\":87985,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Neil_Young\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q633\",\"titles\":{\"canonical\":\"Neil_Young\",\"normalized\":\"Neil Young\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg/320px-DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":320,\"height\":473},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":1470,\"height\":2175},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224521209\",\"tid\":\"ecc3360e-1561-11ef-9ad4-25d57eeca119\",\"timestamp\":\"2024-05-18T21:59:40Z\",\"description\":\"Canadian and American musician (born 1945)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young\"}},\"extract\":\"Neil Percival Young is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as Everybody Knows This Is Nowhere (1969), After the Gold Rush (1970), Harvest (1972), On the Beach (1974), and Rust Never Sleeps (1979). He was also a part-time member of Crosby, Stills, Nash \u0026 Young, with whom he recorded the chart-topping 1970 album Déjà Vu.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNeil Percival Young\u003c/b\u003e is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e (1969), \u003ci\u003eAfter the Gold Rush\u003c/i\u003e (1970), \u003ci\u003eHarvest\u003c/i\u003e (1972), \u003ci\u003eOn the Beach\u003c/i\u003e (1974), and \u003ci\u003eRust Never Sleeps\u003c/i\u003e (1979). He was also a part-time member of Crosby, Stills, Nash \u0026amp; Young, with whom he recorded the chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young\"},{\"pageid\":154247,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Eddie_Vedder\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q221535\",\"titles\":{\"canonical\":\"Eddie_Vedder\",\"normalized\":\"Eddie Vedder\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Eddie_Vedder_2018_-2.jpg/320px-Eddie_Vedder_2018_-2.jpg\",\"width\":320,\"height\":439},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Eddie_Vedder_2018_-2.jpg\",\"width\":1201,\"height\":1647},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222464208\",\"tid\":\"a41983c0-0b56-11ef-8d40-256ceee6af43\",\"timestamp\":\"2024-05-06T03:13:42Z\",\"description\":\"American singer (born 1964)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Eddie_Vedder\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Eddie_Vedder\",\"edit\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Eddie_Vedder\"}},\"extract\":\"Eddie Jerome Vedder is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEddie Jerome Vedder\u003c/b\u003e is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\u003c/p\u003e\",\"normalizedtitle\":\"Eddie Vedder\"},{\"pageid\":176416,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Nils_Lofgren\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q504954\",\"titles\":{\"canonical\":\"Nils_Lofgren\",\"normalized\":\"Nils Lofgren\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Nils_Lofgren_%2846480129234%29.jpg/320px-Nils_Lofgren_%2846480129234%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d0/Nils_Lofgren_%2846480129234%29.jpg\",\"width\":5306,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224444957\",\"tid\":\"3424cf8d-1518-11ef-b3eb-3c90a4531d0d\",\"timestamp\":\"2024-05-18T13:11:57Z\",\"description\":\"American rock musician (born 1951)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nils_Lofgren\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nils_Lofgren\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nils_Lofgren\"}},\"extract\":\"Nils Hilmer Lofgren is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNils Hilmer Lofgren\u003c/b\u003e is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Nils Lofgren\"},{\"pageid\":568849,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"America:_A_Tribute_to_Heroes\",\"displaytitle\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2273648\",\"titles\":{\"canonical\":\"America:_A_Tribute_to_Heroes\",\"normalized\":\"America: A Tribute to Heroes\",\"display\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218642805\",\"tid\":\"ad7c4579-f91e-11ee-b494-eaa15dc47b98\",\"timestamp\":\"2024-04-12T22:47:45Z\",\"description\":\"Benefit concert that raised money for victims of 9/11 attacks\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/America%3A_A_Tribute_to_Heroes\",\"edit\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"}},\"extract\":\"America: A Tribute to Heroes was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAmerica: A Tribute to Heroes\u003c/b\u003e\u003c/i\u003e was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\u003c/p\u003e\",\"normalizedtitle\":\"America: A Tribute to Heroes\"},{\"pageid\":723447,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"After_the_Gold_Rush\",\"displaytitle\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q264397\",\"titles\":{\"canonical\":\"After_the_Gold_Rush\",\"normalized\":\"After the Gold Rush\",\"display\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221220336\",\"tid\":\"9c6840a4-057a-11ef-80ac-d6c92c55f57f\",\"timestamp\":\"2024-04-28T16:16:04Z\",\"description\":\"1970 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/After_the_Gold_Rush\",\"edit\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"}},\"extract\":\"After the Gold Rush is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026 Young in the wake of their chart-topping 1970 album Déjà Vu. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay After the Gold Rush.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAfter the Gold Rush\u003c/b\u003e\u003c/i\u003e is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026amp; Young in the wake of their chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay \u003ci\u003eAfter the Gold Rush\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"After the Gold Rush\"},{\"pageid\":723456,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Crazy_Horse_(band)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q951532\",\"titles\":{\"canonical\":\"Crazy_Horse_(band)\",\"normalized\":\"Crazy Horse (band)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Crazy_Horse_1972.JPG/320px-Crazy_Horse_1972.JPG\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/25/Crazy_Horse_1972.JPG\",\"width\":690,\"height\":494},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224623844\",\"tid\":\"d4dfc0ee-15e2-11ef-a449-aa0520b3bb8a\",\"timestamp\":\"2024-05-19T13:22:25Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crazy_Horse_(band)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"}},\"extract\":\"Crazy Horse is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by Neil Young and Crazy Horse. They have also released six studio albums of their own between 1971 and 2009.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrazy Horse\u003c/b\u003e is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by \u003cb\u003eNeil Young and Crazy Horse\u003c/b\u003e. They have also released six studio albums of their own between 1971 and 2009.\u003c/p\u003e\",\"normalizedtitle\":\"Crazy Horse (band)\"},{\"pageid\":975260,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Mirror_Ball_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1170703\",\"titles\":{\"canonical\":\"Mirror_Ball_(Neil_Young_album)\",\"normalized\":\"Mirror Ball (Neil Young album)\",\"display\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222829752\",\"tid\":\"728bef86-0cf7-11ef-9d28-9320ba5a176e\",\"timestamp\":\"2024-05-08T04:57:19Z\",\"description\":\"1995 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mirror_Ball_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"}},\"extract\":\"Mirror Ball is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMirror Ball\u003c/b\u003e\u003c/i\u003e is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\u003c/p\u003e\",\"normalizedtitle\":\"Mirror Ball (Neil Young album)\"},{\"pageid\":1967652,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Down_by_the_River_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2805621\",\"titles\":{\"canonical\":\"Down_by_the_River_(Neil_Young_song)\",\"normalized\":\"Down by the River (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219174168\",\"tid\":\"85f0ef88-fbb1-11ee-bbce-919ab690d8cf\",\"timestamp\":\"2024-04-16T05:23:57Z\",\"description\":\"1969 single by Neil Young and Crazy Horse\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Down_by_the_River_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"}},\"extract\":\"\\\"Down by the River\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, Everybody Knows This Is Nowhere. Young explained the context of the story in the liner notes of his 1977 anthology album Decade, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eDown by the River\u003c/b\u003e\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e. Young explained the context of the story in the liner notes of his 1977 anthology album \u003ci\u003eDecade\u003c/i\u003e, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\u003c/p\u003e\",\"normalizedtitle\":\"Down by the River (Neil Young song)\"},{\"pageid\":5068852,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Pearl_Jam\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q142701\",\"titles\":{\"canonical\":\"Pearl_Jam\",\"normalized\":\"Pearl Jam\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg/320px-PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":3114,\"height\":2076},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223863933\",\"tid\":\"2a0e8244-1233-11ef-9615-f43fade6bf7f\",\"timestamp\":\"2024-05-14T20:47:23Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam\"}},\"extract\":\"Pearl Jam is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePearl Jam\u003c/b\u003e is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam\"},{\"pageid\":8915407,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Tell_Me_Why_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17059364\",\"titles\":{\"canonical\":\"Tell_Me_Why_(Neil_Young_song)\",\"normalized\":\"Tell Me Why (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181941151\",\"tid\":\"6c19d581-73b4-11ee-9131-c8bdca7b1c02\",\"timestamp\":\"2023-10-26T04:02:04Z\",\"description\":\"1970 song by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tell_Me_Why_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"}},\"extract\":\"\\\"Tell Me Why\\\" is the opening track on Neil Young's album After the Gold Rush. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on Live at Massey Hall 1971.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eTell Me Why\u003c/b\u003e\\\" is the opening track on Neil Young's album \u003ci\u003eAfter the Gold Rush\u003c/i\u003e. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on \u003ci\u003eLive at Massey Hall 1971\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Tell Me Why (Neil Young song)\"},{\"pageid\":9555565,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Nothingman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2059259\",\"titles\":{\"canonical\":\"Nothingman\",\"normalized\":\"Nothingman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224593469\",\"tid\":\"be714539-15b9-11ef-af74-c31c85bbb1c9\",\"timestamp\":\"2024-05-19T08:28:18Z\",\"description\":\"Song by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.wikipedia.org/wiki/Nothingman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nothingman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nothingman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nothingman\"}},\"extract\":\"\\\"Nothingman\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, Vitalogy (1994). The song was included on Pearl Jam's 2004 greatest hits album, Rearviewmirror .\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eNothingman\u003c/b\u003e\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, \u003ci\u003eVitalogy\u003c/i\u003e (1994). The song was included on Pearl Jam's 2004 greatest hits album, \u003ci\u003eRearviewmirror \u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Nothingman\"},{\"pageid\":9606473,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Pearl_Jam_2006_World_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3898477\",\"titles\":{\"canonical\":\"Pearl_Jam_2006_World_Tour\",\"normalized\":\"Pearl Jam 2006 World Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1195688835\",\"tid\":\"ebba9f0f-b328-11ee-b05c-cd2438af9ffe\",\"timestamp\":\"2024-01-14T22:04:43Z\",\"description\":\"2006 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam_2006_World_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"}},\"extract\":\"The Pearl Jam 2006 World Tour was a concert tour by the American rock band Pearl Jam to support its eighth album, Pearl Jam.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePearl Jam 2006 World Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its eighth album, \u003ci\u003ePearl Jam\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam 2006 World Tour\"},{\"pageid\":10586277,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Cellairis_Amphitheatre\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4661762\",\"titles\":{\"canonical\":\"Cellairis_Amphitheatre\",\"normalized\":\"Cellairis Amphitheatre\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Lakewood_Amphitheater.jpg\",\"width\":2891,\"height\":2168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218871608\",\"tid\":\"0b0cc18d-fa49-11ee-a0b9-1a11a33c1c47\",\"timestamp\":\"2024-04-14T10:23:32Z\",\"coordinates\":{\"lat\":33.704184,\"lon\":-84.396018},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cellairis_Amphitheatre\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"}},\"extract\":\"The Cellairis Amphitheatre at Lakewood, originally Coca-Cola Lakewood Amphitheatre, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCellairis Amphitheatre at Lakewood\u003c/b\u003e, originally \u003cb\u003eCoca-Cola Lakewood Amphitheatre\u003c/b\u003e, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\u003c/p\u003e\",\"normalizedtitle\":\"Cellairis Amphitheatre\"},{\"pageid\":11928268,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Merkin_Ball\",\"displaytitle\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715145\",\"titles\":{\"canonical\":\"Merkin_Ball\",\"normalized\":\"Merkin Ball\",\"display\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220834314\",\"tid\":\"dfff5820-0390-11ef-8cac-3a49f4ffb9fa\",\"timestamp\":\"2024-04-26T05:50:24Z\",\"description\":\"Two-song single by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Merkin_Ball\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Merkin_Ball\",\"edit\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Merkin_Ball\"}},\"extract\":\"Merkin Ball is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"I Got Id\\\" and B-side \\\"Long Road\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. Merkin Ball is a companion to Young's 1995 album, Mirror Ball.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMerkin Ball\u003c/b\u003e\u003c/i\u003e is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"\u003cb\u003eI Got Id\u003c/b\u003e\\\" and B-side \\\"\u003cb\u003eLong Road\u003c/b\u003e\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. \u003ci\u003eMerkin Ball\u003c/i\u003e is a companion to Young's 1995 album, \u003ci\u003eMirror Ball\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Merkin Ball\"},{\"pageid\":13465621,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"The_Bridge_School_Collection,_Vol.1\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7720076\",\"titles\":{\"canonical\":\"The_Bridge_School_Collection,_Vol.1\",\"normalized\":\"The Bridge School Collection, Vol.1\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1072766458\",\"tid\":\"b030e05d-9170-11ec-8192-f2b727bb3a94\",\"timestamp\":\"2022-02-19T10:42:52Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Bridge_School_Collection%2C_Vol.1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"}},\"extract\":\"\\nThe Bridge School Collection, Vol. 1 is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\",\"extract_html\":\"\u003cp\u003e\\n\u003cb\u003eThe Bridge School Collection, Vol. 1\u003c/b\u003e is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\u003c/p\u003e\",\"normalizedtitle\":\"The Bridge School Collection, Vol.1\"},{\"pageid\":22192163,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Greg_Reeves\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5606182\",\"titles\":{\"canonical\":\"Greg_Reeves\",\"normalized\":\"Greg Reeves\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214757274\",\"tid\":\"3800cf75-e714-11ee-b0a9-fa191fd9ae1d\",\"timestamp\":\"2024-03-20T23:47:32Z\",\"description\":\"American bass guitarist\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greg_Reeves\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greg_Reeves\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greg_Reeves\"}},\"extract\":\"Gregory Allen Reeves is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026 Young's album Déjà Vu (1970).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGregory Allen Reeves\u003c/b\u003e is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026amp; Young's album \u003ci\u003eDéjà Vu\u003c/i\u003e (1970).\u003c/p\u003e\",\"normalizedtitle\":\"Greg Reeves\"},{\"pageid\":39141153,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Bridge_School_(California)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q913634\",\"titles\":{\"canonical\":\"Bridge_School_(California)\",\"normalized\":\"Bridge School (California)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217621913\",\"tid\":\"fdae663d-f465-11ee-aa57-bab9df0aa6e0\",\"timestamp\":\"2024-04-06T22:35:38Z\",\"description\":\"Nonprofit organization\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.568463,\"lon\":-122.362591},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_(California)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_(California)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_(California)\"}},\"extract\":\"The Bridge School is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBridge School\u003c/b\u003e is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\u003c/p\u003e\",\"normalizedtitle\":\"Bridge School (California)\"},{\"pageid\":39904253,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Lightning_Bolt_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16962618\",\"titles\":{\"canonical\":\"Lightning_Bolt_Tour\",\"normalized\":\"Lightning Bolt Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1204346649\",\"tid\":\"5dad8227-c549-11ee-9158-b97a1ad189be\",\"timestamp\":\"2024-02-06T23:42:19Z\",\"description\":\"2013–14 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lightning_Bolt_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"}},\"extract\":\"The Lightning Bolt Tour was a concert tour by the American rock band Pearl Jam to support its tenth studio album, Lightning Bolt (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. Rolling Stone listed the tour as one of the 19 hottest tours to see in the fall of 2013.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLightning Bolt Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its tenth studio album, \u003ci\u003eLightning Bolt\u003c/i\u003e (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. \u003ci\u003eRolling Stone\u003c/i\u003e listed the tour as one of the 19 hottest tours to see in the fall of 2013.\u003c/p\u003e\",\"normalizedtitle\":\"Lightning Bolt Tour\"},{\"pageid\":65358151,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"displaytitle\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q100724901\",\"titles\":{\"canonical\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"normalized\":\"Neil Young Archives Volume II: 1972–1976\",\"display\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215229642\",\"tid\":\"404d512d-e960-11ee-9039-3c333c642a54\",\"timestamp\":\"2024-03-23T21:56:50Z\",\"description\":\"2020 box set by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"}},\"extract\":\"Neil Young Archives Volume II: 1972–1976 is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's The Archives Vol. 1 1963–1972, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eNeil Young Archives Volume II: 1972–1976\u003c/b\u003e\u003c/i\u003e is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's \u003ci\u003eThe Archives Vol. 1 1963–1972\u003c/i\u003e, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young Archives Volume II: 1972–1976\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec3d7c0-87fa-4edb-8b4c-ede9730b8dc4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407467,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1422","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7a8a9bc-6bcb-4042-8f21-b3cc1b801615","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.28400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fe898ce6-38f6-4715-b931-0ce3d4ae5f86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":413349,"utime":1128,"cutime":0,"cstime":0,"stime":1019,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"068c8201-2007-4c74-b6f3-912fac58ebbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.56800000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":405095,"end_time":405387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:52 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-9d7r2","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a30d6b-3246-4356-8652-211fad9b59b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"18f9d911-647c-49a7-a55d-a40466b8b460","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.63100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404803,"end_time":405449,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/3a9007c0-151c-11ef-b8e3-c8d506762f01\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1abe3620-2277-4655-b42a-9a3a283f76ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1df5b41d-c663-4833-b50f-29d771ddd065","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f52bd18-b905-4b47-84c0-d23730de3396","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407925,"end_time":408270,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"382","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3299f699-cc72-4d38-b718-b9d4cd8522a7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b332fed-35c9-4ae8-a246-9d0fb7039ae1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"776","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"411897ce-8a40-4c19-be7e-f118103a3b1d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.60700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"51367f8a-2763-490a-bb26-19569b7ec3ce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":405462,"end_time":405465,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52e344a6-4f1b-40ba-ab2e-df359b7c8bb7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.12900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":304,"start_time":404710,"end_time":404948,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"123c8-18d7e9bad57\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"123c8-18d7e9bad57\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"64a44103-12b2-4e49-b678-43f1fd63616d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":407349,"utime":1095,"cutime":0,"cstime":0,"stime":975,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69645315-9b61-4677-bafa-c77f77f39438","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a9a9787-d045-4b1c-8c0a-f4f126770e9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":405463,"end_time":405470,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77b61ef9-dd64-45a8-a08c-31b33ea85c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77c5761c-7ef8-4075-b69d-33cbbd972759","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.65400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":405466,"end_time":405473,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e7d1421-2884-4933-ae34-2a311eae94d1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19995,"java_free_heap":6096,"total_pss":187624,"rss":266104,"native_total_heap":125440,"native_free_heap":16078,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80abc601-6a8c-49b4-ba7c-6c991187ea16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.11500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/1280px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405628,"end_time":405934,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"181624","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:53 GMT","etag":"064f6c82433ef52f4e8b7e9b155fc79f","last-modified":"Sat, 27 Feb 2016 04:11:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qnwnnp5rha3oakobj2khjuxqblz4hyc"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84d253cf-ee49-48d5-b7d5-6e8c1187dbe8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404684,"end_time":404960,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1093","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8809aea3-406e-48f7-ad56-82ad6c9265a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"889971c8-b30a-4d16-9910-a98488ba9ee1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.45200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407924,"end_time":408271,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"719","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fb2ec4b-c2f3-41bb-ad3a-7a53f62e306e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:57.52800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":410347,"utime":1127,"cutime":0,"cstime":0,"stime":1012,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"905ec879-0b00-486d-bc8d-1c9bc89fab21","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.37200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"91fed9d8-4353-4c4e-9d60-0fe139075f4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.82300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":405638,"end_time":405642,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b8bad5c-cdc6-4515-9a23-c2c7dc119942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2fcf45f-68f6-4ef7-bc72-bbc436919679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.31500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":75.97046,"y":1610.918,"touch_down_time":409061,"touch_up_time":409130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7f64d11-bc63-4644-89de-c7c23c302f80","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.23700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","method":"get","status_code":200,"start_time":404800,"end_time":405056,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"W/\"1211634642/21a9d2e0-151c-11ef-a477-3a620a7dd899\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bridge School Benefit\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1090897\",\"titles\":{\"canonical\":\"Bridge_School_Benefit\",\"normalized\":\"Bridge School Benefit\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School Benefit\u003c/span\u003e\"},\"pageid\":2169786,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg\",\"width\":320,\"height\":223},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/48/Shoreline_Amphitheatre.jpg\",\"width\":1368,\"height\":954},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211634642\",\"tid\":\"9ab739c3-d97a-11ee-8b93-5143dbf0a773\",\"timestamp\":\"2024-03-03T16:25:10Z\",\"description\":\"Charity concerts in California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.42666667,\"lon\":-122.08083333},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_Benefit\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_Benefit?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_Benefit\"}},\"extract\":\"\\nThe Bridge School Benefit was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\",\"extract_html\":\"\u003cp\u003e\\nThe \u003cb\u003eBridge School Benefit\u003c/b\u003e was an annual charity concert usually held in Mountain View, California, every October at the Shoreline Amphitheatre from 1986 until 2016 with the exception of 1987. The concerts lasted the entire weekend and were organized by musicians Neil Young and Pegi Young. An annual Bay Area highlight, the concerts were billed online as the primary means of funding for The Bridge School; over both days, the reserved seats alone brought in well over a million dollars every year.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"add18888-aa81-4eb8-a156-95e015603b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.89500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae08afa3-fa48-465f-a226-70f7bc1ddf4c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b55f9252-dec8-4d11-b741-0a6e6f5a2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:58.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4402,"total_pss":157469,"rss":226016,"native_total_heap":109056,"native_free_heap":28907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7034817-ffda-4c89-baf7-f0bd9adbee97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20090,"java_free_heap":4487,"total_pss":173086,"rss":252736,"native_total_heap":125440,"native_free_heap":14291,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba0a2772-1879-4387-9d8f-58e29f24c6f2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.36100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":42.978516,"y":149.9414,"touch_down_time":407065,"touch_up_time":407177},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be144dcf-284c-41fb-a58d-632709c7646d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.00700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg","method":"get","status_code":200,"start_time":406780,"end_time":406826,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12911","content-length":"91849","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:27:44 GMT","etag":"acf48a134be1177e8ead7708e943023c","last-modified":"Fri, 04 Mar 2016 11:14:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"1mex37ctmfjotjempm05btcux9qn6ij"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c117bd61-90b1-4998-b182-659a857df241","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20361,"java_free_heap":4474,"total_pss":160242,"rss":228808,"native_total_heap":109056,"native_free_heap":28883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c1808fa7-30ed-4eb7-8d9b-a647042d8207","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc004c5d-9d37-4019-97f1-9a1198c19bcb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.92900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/640px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":405099,"end_time":405748,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"57970","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:52 GMT","etag":"1cd1b08c3fb56106a3d85abf7cbc51ed","last-modified":"Sat, 27 Feb 2016 04:12:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"g7x68wml5tl65yrgehmhinh8oov2m5j"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf372d6-f057-47a8-9e48-4b25cfaba829","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf8ce554-5bf4-4ab8-987a-7c59b95bea2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d191a3ea-e3fb-4243-9f9e-f741c22dcebe","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.21700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg","method":"get","status_code":200,"start_time":406781,"end_time":407036,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"32194","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:54 GMT","etag":"d70781fa5198476a7f1f0de3ed48f27a","last-modified":"Fri, 07 Jul 2017 22:10:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2dd7b1f-a0b9-4ce2-a943-47eee9abb399","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.10200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"backButton","width":126,"height":126,"x":42.978516,"y":149.9414,"touch_down_time":407819,"touch_up_time":407920},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d926155b-500b-4680-bd8c-488c48e43de6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407459,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"daa9f7d2-3021-4b9c-8b98-acc8e063b3fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:56.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"debbf582-e1b8-4fba-8cd6-4553dec8189d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.92500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e413d9d7-62d5-4f16-8a8e-946882e4d8c1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:55.11600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5f59302-cdd5-4e92-9d18-4d2ae0a27f7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.64900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":405462,"end_time":405468,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e87a21a8-ac20-479f-bb90-dbeb12997cb0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.14400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":404686,"end_time":404962,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1147","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb35a22b-709c-4dde-af91-1b41c9b071dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:53.93400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","method":"get","status_code":200,"start_time":405662,"end_time":406753,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bridge_School_Benefit","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bridge_School_Benefit","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bridge_School_Benefit","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:53 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2032","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"7z336l541cbo66002xhogwuo9","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":8228,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"Decade_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1181697\",\"titles\":{\"canonical\":\"Decade_(Neil_Young_album)\",\"normalized\":\"Decade (Neil Young album)\",\"display\":\"\u003ci\u003eDecade\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/37/NeilYoung_Decade.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216315995\",\"tid\":\"9861d724-ee7b-11ee-aa1f-c0acd4f5457d\",\"timestamp\":\"2024-03-30T09:55:10Z\",\"description\":\"1977 compilation album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Decade_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Decade_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Decade_(Neil_Young_album)\"}},\"extract\":\"Decade is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the Billboard Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eDecade\u003c/b\u003e\u003c/i\u003e is a compilation album by Canadian–American musician Neil Young, originally released in 1977 as a triple album and later issued on two compact discs. It contains 35 of Young's songs recorded between 1966 and 1976, among them five tracks that had been unreleased up to that point. It peaked at No. 43 on the \u003ci\u003eBillboard\u003c/i\u003e Top Pop Albums chart, and was certified platinum by the RIAA in 1986.\u003c/p\u003e\",\"normalizedtitle\":\"Decade (Neil Young album)\"},{\"pageid\":87985,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Neil_Young\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q633\",\"titles\":{\"canonical\":\"Neil_Young\",\"normalized\":\"Neil Young\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeil Young\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg/320px-DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":320,\"height\":473},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/DesertTrip2016-140_%2829685063324%29_%28cropped%29.jpg\",\"width\":1470,\"height\":2175},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224521209\",\"tid\":\"ecc3360e-1561-11ef-9ad4-25d57eeca119\",\"timestamp\":\"2024-05-18T21:59:40Z\",\"description\":\"Canadian and American musician (born 1945)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young\"}},\"extract\":\"Neil Percival Young is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as Everybody Knows This Is Nowhere (1969), After the Gold Rush (1970), Harvest (1972), On the Beach (1974), and Rust Never Sleeps (1979). He was also a part-time member of Crosby, Stills, Nash \u0026 Young, with whom he recorded the chart-topping 1970 album Déjà Vu.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNeil Percival Young\u003c/b\u003e is a Canadian and American singer and songwriter. After embarking on a music career in Winnipeg in the 1960s, Young moved to Los Angeles, joining the folk-rock group Buffalo Springfield. Since the beginning of his solo career, often with backing by the band Crazy Horse, he has released critically acclaimed albums such as \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e (1969), \u003ci\u003eAfter the Gold Rush\u003c/i\u003e (1970), \u003ci\u003eHarvest\u003c/i\u003e (1972), \u003ci\u003eOn the Beach\u003c/i\u003e (1974), and \u003ci\u003eRust Never Sleeps\u003c/i\u003e (1979). He was also a part-time member of Crosby, Stills, Nash \u0026amp; Young, with whom he recorded the chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young\"},{\"pageid\":154247,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Eddie_Vedder\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q221535\",\"titles\":{\"canonical\":\"Eddie_Vedder\",\"normalized\":\"Eddie Vedder\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEddie Vedder\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Eddie_Vedder_2018_-2.jpg/320px-Eddie_Vedder_2018_-2.jpg\",\"width\":320,\"height\":439},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Eddie_Vedder_2018_-2.jpg\",\"width\":1201,\"height\":1647},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222464208\",\"tid\":\"a41983c0-0b56-11ef-8d40-256ceee6af43\",\"timestamp\":\"2024-05-06T03:13:42Z\",\"description\":\"American singer (born 1964)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Eddie_Vedder\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Eddie_Vedder\",\"edit\":\"https://en.m.wikipedia.org/wiki/Eddie_Vedder?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Eddie_Vedder\"}},\"extract\":\"Eddie Jerome Vedder is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEddie Jerome Vedder\u003c/b\u003e is an American singer, musician, and songwriter. He is the lead vocalist, primary lyricist, and one of three guitarists for the rock band Pearl Jam. He was previously a guest vocalist for supergroup Temple of the Dog, a tribute band dedicated to the late singer Andrew Wood.\u003c/p\u003e\",\"normalizedtitle\":\"Eddie Vedder\"},{\"pageid\":176416,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Nils_Lofgren\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q504954\",\"titles\":{\"canonical\":\"Nils_Lofgren\",\"normalized\":\"Nils Lofgren\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNils Lofgren\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Nils_Lofgren_%2846480129234%29.jpg/320px-Nils_Lofgren_%2846480129234%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d0/Nils_Lofgren_%2846480129234%29.jpg\",\"width\":5306,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224444957\",\"tid\":\"3424cf8d-1518-11ef-b3eb-3c90a4531d0d\",\"timestamp\":\"2024-05-18T13:11:57Z\",\"description\":\"American rock musician (born 1951)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nils_Lofgren\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nils_Lofgren\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nils_Lofgren?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nils_Lofgren\"}},\"extract\":\"Nils Hilmer Lofgren is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNils Hilmer Lofgren\u003c/b\u003e is an American rock musician, recording artist, songwriter, and multi-instrumentalist. Along with his work as a solo artist, he has been a member of Bruce Springsteen's E Street Band since 1984, a member of Crazy Horse, and founder/frontman of the band Grin. Lofgren was inducted into the Rock and Roll Hall of Fame as a member of the E Street Band in 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Nils Lofgren\"},{\"pageid\":568849,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"America:_A_Tribute_to_Heroes\",\"displaytitle\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2273648\",\"titles\":{\"canonical\":\"America:_A_Tribute_to_Heroes\",\"normalized\":\"America: A Tribute to Heroes\",\"display\":\"\u003ci\u003eAmerica: A Tribute to Heroes\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e1/Various_Artists_-_America_A_Tribute_to_Heroes.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218642805\",\"tid\":\"ad7c4579-f91e-11ee-b494-eaa15dc47b98\",\"timestamp\":\"2024-04-12T22:47:45Z\",\"description\":\"Benefit concert that raised money for victims of 9/11 attacks\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/America%3A_A_Tribute_to_Heroes\",\"edit\":\"https://en.m.wikipedia.org/wiki/America%3A_A_Tribute_to_Heroes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:America%3A_A_Tribute_to_Heroes\"}},\"extract\":\"America: A Tribute to Heroes was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAmerica: A Tribute to Heroes\u003c/b\u003e\u003c/i\u003e was a benefit concert created by the heads of the four major American broadcast networks; Fox, ABC, NBC and CBS. Joel Gallen was selected by them to produce and run the show. Actor George Clooney organized celebrities to perform and to staff the telephone bank.\u003c/p\u003e\",\"normalizedtitle\":\"America: A Tribute to Heroes\"},{\"pageid\":723447,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"After_the_Gold_Rush\",\"displaytitle\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q264397\",\"titles\":{\"canonical\":\"After_the_Gold_Rush\",\"normalized\":\"After the Gold Rush\",\"display\":\"\u003ci\u003eAfter the Gold Rush\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2d/After_the_Gold_Rush.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221220336\",\"tid\":\"9c6840a4-057a-11ef-80ac-d6c92c55f57f\",\"timestamp\":\"2024-04-28T16:16:04Z\",\"description\":\"1970 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/After_the_Gold_Rush\",\"edit\":\"https://en.m.wikipedia.org/wiki/After_the_Gold_Rush?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:After_the_Gold_Rush\"}},\"extract\":\"After the Gold Rush is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026 Young in the wake of their chart-topping 1970 album Déjà Vu. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay After the Gold Rush.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eAfter the Gold Rush\u003c/b\u003e\u003c/i\u003e is the third studio album by the Canadian-American musician Neil Young, released in September 1970 on Reprise Records. It is one of four high-profile solo albums released by the members of folk rock group Crosby, Stills, Nash \u0026amp; Young in the wake of their chart-topping 1970 album \u003ci\u003eDéjà Vu\u003c/i\u003e. Young's album consists mainly of country folk music along with several rock tracks, including \\\"Southern Man\\\". The material was inspired by the unproduced Dean Stockwell-Herb Bermann screenplay \u003ci\u003eAfter the Gold Rush\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"After the Gold Rush\"},{\"pageid\":723456,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Crazy_Horse_(band)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q951532\",\"titles\":{\"canonical\":\"Crazy_Horse_(band)\",\"normalized\":\"Crazy Horse (band)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrazy Horse (band)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Crazy_Horse_1972.JPG/320px-Crazy_Horse_1972.JPG\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/25/Crazy_Horse_1972.JPG\",\"width\":690,\"height\":494},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224623844\",\"tid\":\"d4dfc0ee-15e2-11ef-a449-aa0520b3bb8a\",\"timestamp\":\"2024-05-19T13:22:25Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crazy_Horse_(band)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crazy_Horse_(band)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crazy_Horse_(band)\"}},\"extract\":\"Crazy Horse is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by Neil Young and Crazy Horse. They have also released six studio albums of their own between 1971 and 2009.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrazy Horse\u003c/b\u003e is an American rock band best known for their association with the musician Neil Young. Since 1969, 15 studio albums and several live albums have been billed as being by \u003cb\u003eNeil Young and Crazy Horse\u003c/b\u003e. They have also released six studio albums of their own between 1971 and 2009.\u003c/p\u003e\",\"normalizedtitle\":\"Crazy Horse (band)\"},{\"pageid\":975260,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Mirror_Ball_(Neil_Young_album)\",\"displaytitle\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1170703\",\"titles\":{\"canonical\":\"Mirror_Ball_(Neil_Young_album)\",\"normalized\":\"Mirror Ball (Neil Young album)\",\"display\":\"\u003ci\u003eMirror Ball\u003c/i\u003e (Neil Young album)\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/NeilYoungMirrorBall.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222829752\",\"tid\":\"728bef86-0cf7-11ef-9d28-9320ba5a176e\",\"timestamp\":\"2024-05-08T04:57:19Z\",\"description\":\"1995 studio album by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mirror_Ball_(Neil_Young_album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mirror_Ball_(Neil_Young_album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mirror_Ball_(Neil_Young_album)\"}},\"extract\":\"Mirror Ball is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMirror Ball\u003c/b\u003e\u003c/i\u003e is the 23rd studio album by Canadian musician Neil Young, and features members of American rock band Pearl Jam. It was released on August 7, 1995, through Reprise Records. The album has been certified gold by the RIAA in the United States.\u003c/p\u003e\",\"normalizedtitle\":\"Mirror Ball (Neil Young album)\"},{\"pageid\":1967652,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Down_by_the_River_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2805621\",\"titles\":{\"canonical\":\"Down_by_the_River_(Neil_Young_song)\",\"normalized\":\"Down by the River (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDown by the River (Neil Young song)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/73/Down_by_the_River_label.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219174168\",\"tid\":\"85f0ef88-fbb1-11ee-bbce-919ab690d8cf\",\"timestamp\":\"2024-04-16T05:23:57Z\",\"description\":\"1969 single by Neil Young and Crazy Horse\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Down_by_the_River_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Down_by_the_River_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Down_by_the_River_(Neil_Young_song)\"}},\"extract\":\"\\\"Down by the River\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, Everybody Knows This Is Nowhere. Young explained the context of the story in the liner notes of his 1977 anthology album Decade, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eDown by the River\u003c/b\u003e\\\" is a song composed by Neil Young. It was first released on his 1969 album with Crazy Horse, \u003ci\u003eEverybody Knows This Is Nowhere\u003c/i\u003e. Young explained the context of the story in the liner notes of his 1977 anthology album \u003ci\u003eDecade\u003c/i\u003e, stating that he wrote \\\"Down by the River,\\\" \\\"Cinnamon Girl\\\" and \\\"Cowgirl in the Sand\\\" while delirious in bed in Topanga Canyon with a 103 °F (39 °C) fever.\u003c/p\u003e\",\"normalizedtitle\":\"Down by the River (Neil Young song)\"},{\"pageid\":5068852,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Pearl_Jam\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q142701\",\"titles\":{\"canonical\":\"Pearl_Jam\",\"normalized\":\"Pearl Jam\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg/320px-PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/PearlJam-Amsterdam-2012_%28cropped%29.jpg\",\"width\":3114,\"height\":2076},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223863933\",\"tid\":\"2a0e8244-1233-11ef-9615-f43fade6bf7f\",\"timestamp\":\"2024-05-14T20:47:23Z\",\"description\":\"American rock band\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam\"}},\"extract\":\"Pearl Jam is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePearl Jam\u003c/b\u003e is an American rock band formed in Seattle, Washington, in 1990. The band's lineup consists of founding members Jeff Ament, Stone Gossard, Mike McCready, and Eddie Vedder, as well as Matt Cameron (drums), who joined in 1998. Keyboardist Boom Gaspar has also been a touring/session member with the band since 2002. Jack Irons, Dave Krusen, Matt Chamberlain and Dave Abbruzzese are all former drummers for the band. Pearl Jam has outsold and outlasted many of its contemporaries from the early 1990s, and is considered one of the most influential bands from that decade, dubbed \\\"the most popular American rock and roll band of the '90s\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam\"},{\"pageid\":8915407,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Tell_Me_Why_(Neil_Young_song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17059364\",\"titles\":{\"canonical\":\"Tell_Me_Why_(Neil_Young_song)\",\"normalized\":\"Tell Me Why (Neil Young song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTell Me Why (Neil Young song)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181941151\",\"tid\":\"6c19d581-73b4-11ee-9131-c8bdca7b1c02\",\"timestamp\":\"2023-10-26T04:02:04Z\",\"description\":\"1970 song by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tell_Me_Why_(Neil_Young_song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tell_Me_Why_(Neil_Young_song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tell_Me_Why_(Neil_Young_song)\"}},\"extract\":\"\\\"Tell Me Why\\\" is the opening track on Neil Young's album After the Gold Rush. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on Live at Massey Hall 1971.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eTell Me Why\u003c/b\u003e\\\" is the opening track on Neil Young's album \u003ci\u003eAfter the Gold Rush\u003c/i\u003e. Written by Young, it was first introduced during the Crosby, Stills, Nash and Young shows of 1970 prior to the release of Déjà Vu. The song also appears on \u003ci\u003eLive at Massey Hall 1971\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Tell Me Why (Neil Young song)\"},{\"pageid\":9555565,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Nothingman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2059259\",\"titles\":{\"canonical\":\"Nothingman\",\"normalized\":\"Nothingman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNothingman\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224593469\",\"tid\":\"be714539-15b9-11ef-af74-c31c85bbb1c9\",\"timestamp\":\"2024-05-19T08:28:18Z\",\"description\":\"Song by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.wikipedia.org/wiki/Nothingman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nothingman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nothingman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nothingman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nothingman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nothingman\"}},\"extract\":\"\\\"Nothingman\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, Vitalogy (1994). The song was included on Pearl Jam's 2004 greatest hits album, Rearviewmirror .\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eNothingman\u003c/b\u003e\\\" is a song by the American rock band Pearl Jam. Featuring lyrics written by vocalist Eddie Vedder and music by bassist Jeff Ament, \\\"Nothingman\\\" is the fifth track on the band's third studio album, \u003ci\u003eVitalogy\u003c/i\u003e (1994). The song was included on Pearl Jam's 2004 greatest hits album, \u003ci\u003eRearviewmirror \u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Nothingman\"},{\"pageid\":9606473,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Pearl_Jam_2006_World_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3898477\",\"titles\":{\"canonical\":\"Pearl_Jam_2006_World_Tour\",\"normalized\":\"Pearl Jam 2006 World Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePearl Jam 2006 World Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1195688835\",\"tid\":\"ebba9f0f-b328-11ee-b05c-cd2438af9ffe\",\"timestamp\":\"2024-01-14T22:04:43Z\",\"description\":\"2006 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pearl_Jam_2006_World_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pearl_Jam_2006_World_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pearl_Jam_2006_World_Tour\"}},\"extract\":\"The Pearl Jam 2006 World Tour was a concert tour by the American rock band Pearl Jam to support its eighth album, Pearl Jam.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePearl Jam 2006 World Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its eighth album, \u003ci\u003ePearl Jam\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Pearl Jam 2006 World Tour\"},{\"pageid\":10586277,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Cellairis_Amphitheatre\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4661762\",\"titles\":{\"canonical\":\"Cellairis_Amphitheatre\",\"normalized\":\"Cellairis Amphitheatre\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCellairis Amphitheatre\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Lakewood_Amphitheater.jpg/320px-Lakewood_Amphitheater.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Lakewood_Amphitheater.jpg\",\"width\":2891,\"height\":2168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218871608\",\"tid\":\"0b0cc18d-fa49-11ee-a0b9-1a11a33c1c47\",\"timestamp\":\"2024-04-14T10:23:32Z\",\"coordinates\":{\"lat\":33.704184,\"lon\":-84.396018},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cellairis_Amphitheatre\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cellairis_Amphitheatre?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cellairis_Amphitheatre\"}},\"extract\":\"The Cellairis Amphitheatre at Lakewood, originally Coca-Cola Lakewood Amphitheatre, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCellairis Amphitheatre at Lakewood\u003c/b\u003e, originally \u003cb\u003eCoca-Cola Lakewood Amphitheatre\u003c/b\u003e, is a concert venue located in Atlanta, which opened in 1989. The amphitheatre seats 18,920. It was designed to offer a state-of-the-art musical experience for both music fans and artists. The venue was built specifically for popular music.\u003c/p\u003e\",\"normalizedtitle\":\"Cellairis Amphitheatre\"},{\"pageid\":11928268,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Merkin_Ball\",\"displaytitle\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715145\",\"titles\":{\"canonical\":\"Merkin_Ball\",\"normalized\":\"Merkin Ball\",\"display\":\"\u003ci\u003eMerkin Ball\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/af/Merkin_Ball_album_cover.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220834314\",\"tid\":\"dfff5820-0390-11ef-8cac-3a49f4ffb9fa\",\"timestamp\":\"2024-04-26T05:50:24Z\",\"description\":\"Two-song single by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Merkin_Ball\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Merkin_Ball\",\"edit\":\"https://en.m.wikipedia.org/wiki/Merkin_Ball?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Merkin_Ball\"}},\"extract\":\"Merkin Ball is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"I Got Id\\\" and B-side \\\"Long Road\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. Merkin Ball is a companion to Young's 1995 album, Mirror Ball.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMerkin Ball\u003c/b\u003e\u003c/i\u003e is an extended play (EP) by American alternative rock band Pearl Jam. The EP contains two songs: A-side \\\"\u003cb\u003eI Got Id\u003c/b\u003e\\\" and B-side \\\"\u003cb\u003eLong Road\u003c/b\u003e\\\", both written by Pearl Jam lead singer Eddie Vedder. The EP features Canadian-American musician Neil Young and was released on December 4, 1995, through Epic Records. \u003ci\u003eMerkin Ball\u003c/i\u003e is a companion to Young's 1995 album, \u003ci\u003eMirror Ball\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Merkin Ball\"},{\"pageid\":13465621,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"The_Bridge_School_Collection,_Vol.1\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7720076\",\"titles\":{\"canonical\":\"The_Bridge_School_Collection,_Vol.1\",\"normalized\":\"The Bridge School Collection, Vol.1\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThe Bridge School Collection, Vol.1\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1072766458\",\"tid\":\"b030e05d-9170-11ec-8192-f2b727bb3a94\",\"timestamp\":\"2022-02-19T10:42:52Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Bridge_School_Collection%2C_Vol.1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Bridge_School_Collection%2C_Vol.1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Bridge_School_Collection%2C_Vol.1\"}},\"extract\":\"\\nThe Bridge School Collection, Vol. 1 is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\",\"extract_html\":\"\u003cp\u003e\\n\u003cb\u003eThe Bridge School Collection, Vol. 1\u003c/b\u003e is a downloadable audio collection of 80 selected acoustic \\nperformances, recorded between 1986 and 2006, from the Bridge School's Benefit Concerts. The 21 November 2006 iTunes distribution of the collection includes a digital booklet. \\nAll tracks are available for individual purchase except Neil Young's tracks which are by album only.\u003c/p\u003e\",\"normalizedtitle\":\"The Bridge School Collection, Vol.1\"},{\"pageid\":22192163,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Greg_Reeves\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5606182\",\"titles\":{\"canonical\":\"Greg_Reeves\",\"normalized\":\"Greg Reeves\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreg Reeves\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214757274\",\"tid\":\"3800cf75-e714-11ee-b0a9-fa191fd9ae1d\",\"timestamp\":\"2024-03-20T23:47:32Z\",\"description\":\"American bass guitarist\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greg_Reeves\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greg_Reeves\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greg_Reeves?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greg_Reeves\"}},\"extract\":\"Gregory Allen Reeves is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026 Young's album Déjà Vu (1970).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGregory Allen Reeves\u003c/b\u003e is an American bass guitarist. He is best known for playing bass on Crosby, Stills, Nash \u0026amp; Young's album \u003ci\u003eDéjà Vu\u003c/i\u003e (1970).\u003c/p\u003e\",\"normalizedtitle\":\"Greg Reeves\"},{\"pageid\":39141153,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Bridge_School_(California)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q913634\",\"titles\":{\"canonical\":\"Bridge_School_(California)\",\"normalized\":\"Bridge School (California)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBridge School (California)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217621913\",\"tid\":\"fdae663d-f465-11ee-aa57-bab9df0aa6e0\",\"timestamp\":\"2024-04-06T22:35:38Z\",\"description\":\"Nonprofit organization\",\"description_source\":\"local\",\"coordinates\":{\"lat\":37.568463,\"lon\":-122.362591},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridge_School_(California)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridge_School_(California)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridge_School_(California)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridge_School_(California)\"}},\"extract\":\"The Bridge School is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBridge School\u003c/b\u003e is a non-profit organization in Hillsborough, California for children with severe speech and physical impairments. It aims to allow the children to achieve full participation in their communities through Augmentative and Alternative Communication (AAC) and Assistive Technologies (AT). The school was founded by Pegi Young, Jim Forderer and Dr. Marilyn Buzolich in 1986, and has since become a world recognized leader in AAC and AT.\u003c/p\u003e\",\"normalizedtitle\":\"Bridge School (California)\"},{\"pageid\":39904253,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Lightning_Bolt_Tour\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16962618\",\"titles\":{\"canonical\":\"Lightning_Bolt_Tour\",\"normalized\":\"Lightning Bolt Tour\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLightning Bolt Tour\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1204346649\",\"tid\":\"5dad8227-c549-11ee-9158-b97a1ad189be\",\"timestamp\":\"2024-02-06T23:42:19Z\",\"description\":\"2013–14 concert tour by Pearl Jam\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lightning_Bolt_Tour\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lightning_Bolt_Tour?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lightning_Bolt_Tour\"}},\"extract\":\"The Lightning Bolt Tour was a concert tour by the American rock band Pearl Jam to support its tenth studio album, Lightning Bolt (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. Rolling Stone listed the tour as one of the 19 hottest tours to see in the fall of 2013.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLightning Bolt Tour\u003c/b\u003e was a concert tour by the American rock band Pearl Jam to support its tenth studio album, \u003ci\u003eLightning Bolt\u003c/i\u003e (2013). The tour started with two legs in North America, the first on the East Coast in October 2013, followed by a second leg on the West Coast the following month before finishing in their hometown of Seattle in December. \u003ci\u003eRolling Stone\u003c/i\u003e listed the tour as one of the 19 hottest tours to see in the fall of 2013.\u003c/p\u003e\",\"normalizedtitle\":\"Lightning Bolt Tour\"},{\"pageid\":65358151,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"displaytitle\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q100724901\",\"titles\":{\"canonical\":\"Neil_Young_Archives_Volume_II:_1972–1976\",\"normalized\":\"Neil Young Archives Volume II: 1972–1976\",\"display\":\"\u003ci\u003eNeil Young Archives Volume II: 1972–1976\u003c/i\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c0/Neil_Young_-_Archives_Volume_II_1972-1976.png\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215229642\",\"tid\":\"404d512d-e960-11ee-9039-3c333c642a54\",\"timestamp\":\"2024-03-23T21:56:50Z\",\"description\":\"2020 box set by Neil Young\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neil_Young_Archives_Volume_II%3A_1972%E2%80%931976\"}},\"extract\":\"Neil Young Archives Volume II: 1972–1976 is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's The Archives Vol. 1 1963–1972, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eNeil Young Archives Volume II: 1972–1976\u003c/b\u003e\u003c/i\u003e is a 10-CD box set from American-Canadian folk rock musician Neil Young that was initially released in a limited deluxe box set on November 20, 2020. The release is the second box set in his Neil Young Archives series, following 2009's \u003ci\u003eThe Archives Vol. 1 1963–1972\u003c/i\u003e, and covers a three-and-a-half-year period from 1972–1976. The track list was officially announced on the Neil Young Archives site on September 20, 2020, with the first single, \\\"Come Along and Say You Will\\\", being posted to the site as the Song of the Day on October 14. The set then went up for pre-order on October 16, 2020, as an exclusive release to his online store, with only 3,000 copies being initially made available worldwide. After selling out the following day, Young announced several weeks later that a general retail version, as well as a second pressing of the deluxe box set, is expected to be released to market on March 5, 2021. This was followed by the release of a second single, \\\"Homefires\\\", on October 21, and a third, an alternate version of \\\"Powderfinger\\\", on November 3.\u003c/p\u003e\",\"normalizedtitle\":\"Neil Young Archives Volume II: 1972–1976\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec3d7c0-87fa-4edb-8b4c-ede9730b8dc4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:54.64800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":407197,"end_time":407467,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1422","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7a8a9bc-6bcb-4042-8f21-b3cc1b801615","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:52.28400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_RUNNING_MODERATE"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fe898ce6-38f6-4715-b931-0ce3d4ae5f86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:03:00.53000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":413349,"utime":1128,"cutime":0,"cstime":0,"stime":1019,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json index ebe543cb2..5774f0704 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/34cc5ee9-6bff-4627-9582-6ad2d52e030a.json @@ -1 +1 @@ -[{"id":"04dd7429-6f24-41d0-a3d9-8254aa72f4ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":376972,"end_time":376975,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"063a3d8a-69a7-49d6-b866-340626956a67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"6942","content-disposition":"inline;filename*=UTF-8''Ezzatollah_Zarghami_13990110_0945265.jpg.webp","content-length":"33234","content-type":"image/webp","date":"Mon, 20 May 2024 07:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ezzatollah_Zarghami_13990110_0945265.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07dfd19d-03ab-4594-b83d-b1a3cc951c6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.23100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0c4bafe0-6521-42d9-8348-4d23fb6b9717","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.26500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":374072,"end_time":374084,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"109057","content-type":"multipart/form-data; boundary=6cb4ebac-4ad2-4790-b470-055b2914e31b","host":"10.0.2.2:8080","msr-req-id":"4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:21 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"104ecca5-b627-4a3a-9199-d2dd75cd68a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13c4e686-cabf-4a63-b022-aa83b541132f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.29700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":377110,"end_time":377115,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13ef7a6b-71fc-486b-b669-06ccc114dfc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"768","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1635cd98-e44d-4713-9860-92377a5a3651","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/54px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":377080,"end_time":377122,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"47787","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"244","content-type":"image/webp","date":"Sun, 19 May 2024 19:45:56 GMT","etag":"ddb40392973bbe7d974594e86b5c3e68","last-modified":"Thu, 04 Jan 2024 04:23:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/4153","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19d25f09-5244-4150-aff1-1703866273dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/22px-Increase2.svg.png","method":"get","status_code":200,"start_time":377029,"end_time":377076,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69644","content-disposition":"inline;filename*=UTF-8''Increase2.svg.webp","content-length":"130","content-type":"image/webp","date":"Sun, 19 May 2024 13:41:40 GMT","etag":"fcd13adac307811a280aa8a63141d86e","last-modified":"Wed, 31 Jan 2024 10:36:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/62164","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b1e100-f09c-44b2-b181-28d642516a9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11116","content-disposition":"inline;filename*=UTF-8''Hassan_Rouhani_2020.jpg.webp","content-length":"18298","content-type":"image/webp","date":"Mon, 20 May 2024 05:57:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Hassan_Rouhani_2020.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"54102fdb-bfe3-43c7-95d0-4ff1a3bc42ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.54500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":375011,"end_time":375364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587fec75-96c5-46f3-9500-507a7178ca02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.41900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.SwipeableListView","target_id":"toc_list","width":788,"height":1731,"x":743.9502,"y":919.9219,"touch_down_time":379113,"touch_up_time":379232},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bfefbf6-0efc-4238-b63f-af8f8b0c6684","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":377041,"end_time":377086,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53894","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1120","content-type":"image/webp","date":"Sun, 19 May 2024 18:04:09 GMT","etag":"7858cff15aea7c5998f65b5e30f474f7","last-modified":"Sat, 16 Mar 2024 06:21:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6196","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f7df590-60dc-44e1-b20d-53abc7bc3be7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.06200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5fa514dc-0b4c-4f5c-a415-d6e2a32bc41a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.02900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"menu_tabs","width":126,"height":147,"x":990.9448,"y":196.99219,"touch_down_time":371776,"touch_up_time":371846},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60721cb6-c137-4841-861c-f4cd12991464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":375976,"utime":650,"cutime":0,"cstime":0,"stime":654,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75813bc6-16a1-449f-a86d-3a5649bcc9b8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0b8806-7e5a-4983-99df-ac37ccd3fc17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/440px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":376994,"end_time":377077,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9476","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg.webp","content-length":"59556","content-type":"image/webp","date":"Mon, 20 May 2024 06:24:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/4281","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e3b4f72-ec02-4ab4-b6f6-b3e484ebebf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":376994,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70630","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.webp","content-length":"2930","content-type":"image/webp","date":"Sun, 19 May 2024 13:25:13 GMT","etag":"94831aec963f5737c3fce1ef362eb359","last-modified":"Sun, 19 May 2024 13:24:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/19161","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f277fb4-8b16-4b49-add4-c7b74dff0da1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Ambox_current_red.svg/99px-Ambox_current_red.svg.png","method":"get","status_code":200,"start_time":376985,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"24735","content-disposition":"inline;filename*=UTF-8''Ambox_current_red.svg.webp","content-length":"7940","content-type":"image/webp","date":"Mon, 20 May 2024 02:10:09 GMT","etag":"2fdc01fc3a415f51d6284bc9a43bc295","last-modified":"Tue, 23 May 2023 08:08:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/540","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7fb9a563-bc68-49fe-9164-b9d99b8d10b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.54000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":379293,"end_time":379359,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"4897","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg.webp","content-length":"178556","content-type":"image/webp","date":"Mon, 20 May 2024 07:40:49 GMT","etag":"bf327d5124c258158127165fb9e293ab","last-modified":"Mon, 20 May 2024 07:30:01 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/58","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"868dd320-6d08-42dd-bf03-92bed5828411","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.15900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":378978,"utime":750,"cutime":0,"cstime":0,"stime":707,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d4e8a-d735-4eaa-a1b9-37013414ce52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20820,"java_free_heap":5471,"total_pss":164790,"rss":240452,"native_total_heap":101888,"native_free_heap":11351,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ec22384-d4f3-4220-b51e-ba8e1f753273","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Decrease2.svg/22px-Decrease2.svg.png","method":"get","status_code":200,"start_time":377037,"end_time":377085,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"54203","content-disposition":"inline;filename*=UTF-8''Decrease2.svg.webp","content-length":"118","content-type":"image/webp","date":"Sun, 19 May 2024 17:59:00 GMT","etag":"6a32e49dbffd60773ebe06d4c5cef9e9","last-modified":"Wed, 31 Jan 2024 10:37:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/20209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"931dc21b-766d-4983-98d2-d8340f0439c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1473","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97c7763b-276c-4160-a6c6-2f68b45c6b72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.19000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b37ecef-3720-4de2-812c-b45ec1761a31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4e57f58-dad3-4c5f-b8ed-da3952522c35","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a54b0785-0c63-49aa-bfd3-0635d79ce3af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20339,"java_free_heap":5955,"total_pss":161703,"rss":244012,"native_total_heap":95744,"native_free_heap":12413,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab4488f4-d451-4bab-8994-0b47122b60a8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":376970,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae6df38a-2eb6-4379-9db1-3437e010839e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.75900000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":739.96216,"y":1180.957,"end_x":772.9541,"end_y":220.95703,"direction":"up","touch_down_time":378410,"touch_up_time":378577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b30515d2-62af-4e26-a5c2-345e544a5775","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.73100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bc5b4524-a2d5-4e0d-96ce-9e365800eca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.83700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_contents","width":216,"height":189,"x":1004.9524,"y":1705.8984,"touch_down_time":377573,"touch_up_time":377654},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be2df92c-f144-4430-9857-e964b041bac6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.04400000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":375350,"end_time":375863,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:23 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-7fwx4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-5","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3b73221-138c-4d49-ba10-cf41ec155621","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:20.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":372977,"utime":576,"cutime":0,"cstime":0,"stime":609,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c75d5c4d-cddf-4938-b291-a92df2502559","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":21496,"java_free_heap":6128,"total_pss":165822,"rss":241200,"native_total_heap":101888,"native_free_heap":10790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d09136cf-fd3e-4307-aec8-d54d8b43b33b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d22f8eb4-663e-4ce9-a4ff-a57f0649779e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":376977,"end_time":376978,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d52f85d5-64c8-4f57-bdeb-c3c28c299e37","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":376973,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5b3ed54-9d07-4932-84f6-0c2c0744e670","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.32900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":370845,"end_time":371148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d697ae8e-7086-4a6e-b8ba-7c7d308ffe67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d72821bf-6395-441f-9e35-acdcd5be8e70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.58500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_(19.05.2024)_(cropped).jpg/640px-Ebrahim_Raisi_(19.05.2024)_(cropped).jpg","method":"get","status_code":200,"start_time":375355,"end_time":375404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9401","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"106208","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/245","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8c37eab-d4de-42f1-bd71-3194eb7803a9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df44560b-c1c4-45e4-a02d-dcf6c1853c23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.32800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg","method":"get","status_code":200,"start_time":378095,"end_time":378147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"59304","content-disposition":"inline;filename*=UTF-8''Hossein_Dehghan_3742862.jpg","content-length":"28523","content-type":"image/jpeg","date":"Sun, 19 May 2024 16:34:01 GMT","etag":"d3fdbd4a484beec98231d58928e7b68a","last-modified":"Sat, 24 Apr 2021 16:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/82","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e540c90e-8af1-4dfa-9f95-89aaefa80b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20397,"java_free_heap":5948,"total_pss":160547,"rss":247084,"native_total_heap":95744,"native_free_heap":11880,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5ace9ab-746b-472f-976c-0036f9dbcdb2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.26600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","method":"get","status_code":200,"start_time":377126,"end_time":378084,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"4mpgjwno2o04ka4hzflm3qi96","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":233913,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"pageid\":385653,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"pageid\":399536,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Akbar_Rafsanjanī\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q186111\",\"titles\":{\"canonical\":\"Akbar_Rafsanjanī\",\"normalized\":\"Akbar Rafsanjanī\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg/320px-Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":630,\"height\":891},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224676447\",\"tid\":\"d4aef906-1619-11ef-a8b4-adee7f3d440e\",\"timestamp\":\"2024-05-19T19:56:07Z\",\"description\":\"President of Iran from 1989 to 1997\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Akbar_Rafsanjan%C4%AB\",\"edit\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"}},\"extract\":\"Ali Akbar Hashimi Bahramani Rafsanjani was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAli Akbar Hashimi Bahramani Rafsanjani\u003c/b\u003e was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Akbar Rafsanjanī\"},{\"pageid\":1155426,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"List_of_presidents_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q742419\",\"titles\":{\"canonical\":\"List_of_presidents_of_Iran\",\"normalized\":\"List of presidents of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759041\",\"tid\":\"6737c3a2-1683-11ef-88e1-193e954a67d4\",\"timestamp\":\"2024-05-20T08:31:50Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_presidents_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"}},\"extract\":\"This is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\",\"extract_html\":\"\u003cp\u003eThis is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\u003c/p\u003e\",\"normalizedtitle\":\"List of presidents of Iran\"},{\"pageid\":2666136,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Bijan_Namdar_Zangeneh\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4907167\",\"titles\":{\"canonical\":\"Bijan_Namdar_Zangeneh\",\"normalized\":\"Bijan Namdar Zangeneh\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg/320px-Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":320,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":408,\"height\":506},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220831157\",\"tid\":\"42ee0721-038b-11ef-bf62-89eeffe2821a\",\"timestamp\":\"2024-04-26T05:10:13Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bijan_Namdar_Zangeneh\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"}},\"extract\":\"Bijan Namdar Zangeneh is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBijan Namdar Zangeneh\u003c/b\u003e is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\u003c/p\u003e\",\"normalizedtitle\":\"Bijan Namdar Zangeneh\"},{\"pageid\":2826589,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Combatant_Clergy_Association\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1817687\",\"titles\":{\"canonical\":\"Combatant_Clergy_Association\",\"normalized\":\"Combatant Clergy Association\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219028652\",\"tid\":\"c137ddda-fb09-11ee-800c-903c45641695\",\"timestamp\":\"2024-04-15T09:23:01Z\",\"description\":\"Political party in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Combatant_Clergy_Association\",\"edit\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"}},\"extract\":\"The Combatant Clergy Association is a politically active group in Iran, but not a political party in the traditional sense.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCombatant Clergy Association\u003c/b\u003e is a politically active group in Iran, but not a political party in the traditional sense.\u003c/p\u003e\",\"normalizedtitle\":\"Combatant Clergy Association\"},{\"pageid\":8898525,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Sadeq_Larijani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24682\",\"titles\":{\"canonical\":\"Sadeq_Larijani\",\"normalized\":\"Sadeq Larijani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg/320px-Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":320,\"height\":468},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":388,\"height\":567},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223124180\",\"tid\":\"31b5e548-0e6d-11ef-8f7b-9e92c2c01286\",\"timestamp\":\"2024-05-10T01:32:42Z\",\"description\":\"Iranian Ayatollah\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sadeq_Larijani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sadeq_Larijani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sadeq_Larijani\"}},\"extract\":\"Sadeq Ardeshir Larijani, better known as Amoli Larijani, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSadeq Ardeshir Larijani\u003c/b\u003e, better known as \u003cb\u003eAmoli Larijani\u003c/b\u003e, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\u003c/p\u003e\",\"normalizedtitle\":\"Sadeq Larijani\"},{\"pageid\":12653536,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Iran–Japan_relations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2915778\",\"titles\":{\"canonical\":\"Iran–Japan_relations\",\"normalized\":\"Iran–Japan relations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Iran_Japan_Locator.png/320px-Iran_Japan_Locator.png\",\"width\":320,\"height\":165},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/28/Iran_Japan_Locator.png\",\"width\":1376,\"height\":708},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219996780\",\"tid\":\"0727fd57-ff9f-11ee-8c81-65d4dcd950c9\",\"timestamp\":\"2024-04-21T05:21:38Z\",\"description\":\"Bilateral relations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran%E2%80%93Japan_relations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"}},\"extract\":\"Iran–Japan relations are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran–Japan relations\u003c/b\u003e are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\u003c/p\u003e\",\"normalizedtitle\":\"Iran–Japan relations\"},{\"pageid\":13824095,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Saeed_Jalili\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q635059\",\"titles\":{\"canonical\":\"Saeed_Jalili\",\"normalized\":\"Saeed Jalili\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Saeed_Jalili_13991023_1647093.jpg/320px-Saeed_Jalili_13991023_1647093.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/Saeed_Jalili_13991023_1647093.jpg\",\"width\":400,\"height\":592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224715732\",\"tid\":\"5d437df0-1646-11ef-8927-7adf553a94a9\",\"timestamp\":\"2024-05-20T01:14:54Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Saeed_Jalili\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Saeed_Jalili\",\"edit\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Saeed_Jalili\"}},\"extract\":\"Saeed Jalili is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSaeed Jalili\u003c/b\u003e is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Saeed Jalili\"},{\"pageid\":17446126,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Ezzatollah_Zarghami\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3736444\",\"titles\":{\"canonical\":\"Ezzatollah_Zarghami\",\"normalized\":\"Ezzatollah Zarghami\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":1667,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216932163\",\"tid\":\"df780acb-f12f-11ee-973b-9e630df41f7c\",\"timestamp\":\"2024-04-02T20:30:41Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ezzatollah_Zarghami\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"}},\"extract\":\"Sayyid Ezzatollah Zarghami is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSayyid Ezzatollah Zarghami\u003c/b\u003e is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Ezzatollah Zarghami\"},{\"pageid\":38481813,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Hassan_Rouhani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348144\",\"titles\":{\"canonical\":\"Hassan_Rouhani\",\"normalized\":\"Hassan Rouhani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg\",\"width\":320,\"height\":367},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Hassan_Rouhani_2020.jpg\",\"width\":564,\"height\":646},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221528860\",\"tid\":\"81224136-06f6-11ef-a215-71f3c609cc2e\",\"timestamp\":\"2024-04-30T13:35:27Z\",\"description\":\"7th President of Iran from 2013 to 2021\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani\"}},\"extract\":\"Hassan Rouhani is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHassan Rouhani\u003c/b\u003e is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani\"},{\"pageid\":40156416,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Hossein_Dehghan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q14514593\",\"titles\":{\"canonical\":\"Hossein_Dehghan\",\"normalized\":\"Hossein Dehghan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7f/Hossein_Dehghan_3742862.jpg\",\"width\":387,\"height\":478},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216931807\",\"tid\":\"99bb3020-f12f-11ee-9988-753ee47da8ed\",\"timestamp\":\"2024-04-02T20:28:44Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Dehghan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Dehghan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Dehghan\"}},\"extract\":\"Hossein Dehghani Poudeh, commonly known as Hossein Dehghan, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Dehghani Poudeh\u003c/b\u003e, commonly known as \u003cb\u003eHossein Dehghan\u003c/b\u003e, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Dehghan\"},{\"pageid\":49059917,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"2017_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16052966\",\"titles\":{\"canonical\":\"2017_Iranian_presidential_election\",\"normalized\":\"2017 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/320px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/1200px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219479518\",\"tid\":\"1ac41222-fd1d-11ee-9296-641751b45479\",\"timestamp\":\"2024-04-18T00:46:34Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2017_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\",\"extract_html\":\"\u003cp\u003ePresidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"2017 Iranian presidential election\"},{\"pageid\":53159185,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Hassan_Rouhani_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520023\",\"titles\":{\"canonical\":\"Hassan_Rouhani_2017_presidential_campaign\",\"normalized\":\"Hassan Rouhani 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg/320px-Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":320,\"height\":230},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":372,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219489515\",\"tid\":\"801d16c3-fd27-11ee-b249-cbd5c0c13166\",\"timestamp\":\"2024-04-18T02:00:59Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"}},\"extract\":\"Hassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\",\"extract_html\":\"\u003cp\u003eHassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani 2017 presidential campaign\"},{\"pageid\":53746276,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520041\",\"titles\":{\"canonical\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"normalized\":\"Ebrahim Raisi 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224666909\",\"tid\":\"8ac10222-160f-11ef-bbc4-74de2e80c743\",\"timestamp\":\"2024-05-19T18:42:28Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"}},\"extract\":\"The Ebrahim Raisi 2017 presidential campaign began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEbrahim Raisi 2017 presidential campaign\u003c/b\u003e began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi 2017 presidential campaign\"},{\"pageid\":54091457,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"2021_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30640701\",\"titles\":{\"canonical\":\"2021_Iranian_presidential_election\",\"normalized\":\"2021 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/320px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/1200px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224741177\",\"tid\":\"6a25a278-1669-11ef-bdeb-b91c7b791f87\",\"timestamp\":\"2024-05-20T05:25:48Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2021_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePresidential elections\u003c/b\u003e were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\u003c/p\u003e\",\"normalizedtitle\":\"2021 Iranian presidential election\"},{\"pageid\":59042456,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Next_Supreme_Leader_of_Iran_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q23043491\",\"titles\":{\"canonical\":\"Next_Supreme_Leader_of_Iran_election\",\"normalized\":\"Next Supreme Leader of Iran election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751456\",\"tid\":\"3999420b-1678-11ef-9853-b9e4dddce4ab\",\"timestamp\":\"2024-05-20T07:11:49Z\",\"description\":\"Upcoming election for third Supreme Leader\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Next_Supreme_Leader_of_Iran_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"}},\"extract\":\"An election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\",\"extract_html\":\"\u003cp\u003eAn election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\u003c/p\u003e\",\"normalizedtitle\":\"Next Supreme Leader of Iran election\"},{\"pageid\":62042035,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Shahid_Motahari_University\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25423155\",\"titles\":{\"canonical\":\"Shahid_Motahari_University\",\"normalized\":\"Shahid Motahari University\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224737178\",\"tid\":\"b372fac3-1663-11ef-aca3-cbc5d2475b02\",\"timestamp\":\"2024-05-20T04:44:54Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shahid_Motahari_University\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"}},\"extract\":\"Shahid Motahari University was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eShahid Motahari University\u003c/b\u003e was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\u003c/p\u003e\",\"normalizedtitle\":\"Shahid Motahari University\"},{\"pageid\":67993687,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Jamileh_Alamolhoda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107312007\",\"titles\":{\"canonical\":\"Jamileh_Alamolhoda\",\"normalized\":\"Jamileh Alamolhoda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749287\",\"tid\":\"4d43951a-1676-11ef-98cd-3966598ad8f5\",\"timestamp\":\"2024-05-20T06:58:03Z\",\"description\":\"Iranian pedagogist (born 1965)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jamileh_Alamolhoda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"}},\"extract\":\"Jamileh-Sadat Alamolhoda, commonly known as Jamileh Alamolhoda, is the widow of former President of Iran, Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJamileh-Sadat Alamolhoda\u003c/b\u003e, commonly known as \u003cb\u003eJamileh Alamolhoda\u003c/b\u003e, is the widow of former President of Iran, Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"Jamileh Alamolhoda\"},{\"pageid\":75487795,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"2024_Iranian_Assembly_of_Experts_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q119082308\",\"titles\":{\"canonical\":\"2024_Iranian_Assembly_of_Experts_election\",\"normalized\":\"2024 Iranian Assembly of Experts election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740581\",\"tid\":\"6ba2a04c-1668-11ef-99ed-0b0378ef8cb8\",\"timestamp\":\"2024-05-20T05:18:41Z\",\"description\":\"Upcoming election in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Iranian_Assembly_of_Experts_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"}},\"extract\":\"The 2024 Iranian Assembly of Experts election were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2024 Iranian Assembly of Experts election\u003c/b\u003e were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Iranian Assembly of Experts election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e9fad349-7675-446f-a952-8d91a27c0427","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.06100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5b1ac64-6b6b-4a34-8500-4dd32d105ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.14800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375071,"end_time":376967,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5d66f2c-9abc-4ea9-b464-87f5531ebb77","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/46px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":377077,"end_time":377119,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37505","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1594","content-type":"image/webp","date":"Sun, 19 May 2024 22:37:19 GMT","etag":"217ce88f57569ea8d778fc852ed7cc75","last-modified":"Thu, 08 Jun 2023 05:41:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5125","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9b575d5-e917-4f73-b8a1-018b129d8f55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.51500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375072,"end_time":375334,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"04dd7429-6f24-41d0-a3d9-8254aa72f4ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":376972,"end_time":376975,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"063a3d8a-69a7-49d6-b866-340626956a67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"6942","content-disposition":"inline;filename*=UTF-8''Ezzatollah_Zarghami_13990110_0945265.jpg.webp","content-length":"33234","content-type":"image/webp","date":"Mon, 20 May 2024 07:06:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ezzatollah_Zarghami_13990110_0945265.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07dfd19d-03ab-4594-b83d-b1a3cc951c6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.23100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0c4bafe0-6521-42d9-8348-4d23fb6b9717","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.26500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":374072,"end_time":374084,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"109057","content-type":"multipart/form-data; boundary=6cb4ebac-4ad2-4790-b470-055b2914e31b","host":"10.0.2.2:8080","msr-req-id":"4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:21 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"104ecca5-b627-4a3a-9199-d2dd75cd68a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13c4e686-cabf-4a63-b022-aa83b541132f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.29700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":377110,"end_time":377115,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"13ef7a6b-71fc-486b-b669-06ccc114dfc7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"768","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1635cd98-e44d-4713-9860-92377a5a3651","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/54px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":377080,"end_time":377122,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"47787","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"244","content-type":"image/webp","date":"Sun, 19 May 2024 19:45:56 GMT","etag":"ddb40392973bbe7d974594e86b5c3e68","last-modified":"Thu, 04 Jan 2024 04:23:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/4153","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19d25f09-5244-4150-aff1-1703866273dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/22px-Increase2.svg.png","method":"get","status_code":200,"start_time":377029,"end_time":377076,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69644","content-disposition":"inline;filename*=UTF-8''Increase2.svg.webp","content-length":"130","content-type":"image/webp","date":"Sun, 19 May 2024 13:41:40 GMT","etag":"fcd13adac307811a280aa8a63141d86e","last-modified":"Wed, 31 Jan 2024 10:36:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/62164","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31b1e100-f09c-44b2-b181-28d642516a9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.33100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg","method":"get","status_code":200,"start_time":378096,"end_time":378150,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11116","content-disposition":"inline;filename*=UTF-8''Hassan_Rouhani_2020.jpg.webp","content-length":"18298","content-type":"image/webp","date":"Mon, 20 May 2024 05:57:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Hassan_Rouhani_2020.jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"54102fdb-bfe3-43c7-95d0-4ff1a3bc42ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.54500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":375011,"end_time":375364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587fec75-96c5-46f3-9500-507a7178ca02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.41900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.SwipeableListView","target_id":"toc_list","width":788,"height":1731,"x":743.9502,"y":919.9219,"touch_down_time":379113,"touch_up_time":379232},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bfefbf6-0efc-4238-b63f-af8f8b0c6684","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":377041,"end_time":377086,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53894","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1120","content-type":"image/webp","date":"Sun, 19 May 2024 18:04:09 GMT","etag":"7858cff15aea7c5998f65b5e30f474f7","last-modified":"Sat, 16 Mar 2024 06:21:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6196","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f7df590-60dc-44e1-b20d-53abc7bc3be7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.06200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5fa514dc-0b4c-4f5c-a415-d6e2a32bc41a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.02900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"menu_tabs","width":126,"height":147,"x":990.9448,"y":196.99219,"touch_down_time":371776,"touch_up_time":371846},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60721cb6-c137-4841-861c-f4cd12991464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":375976,"utime":650,"cutime":0,"cstime":0,"stime":654,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75813bc6-16a1-449f-a86d-3a5649bcc9b8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0b8806-7e5a-4983-99df-ac37ccd3fc17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/440px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":376994,"end_time":377077,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9476","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg.webp","content-length":"59556","content-type":"image/webp","date":"Mon, 20 May 2024 06:24:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/4281","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e3b4f72-ec02-4ab4-b6f6-b3e484ebebf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":376994,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70630","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.webp","content-length":"2930","content-type":"image/webp","date":"Sun, 19 May 2024 13:25:13 GMT","etag":"94831aec963f5737c3fce1ef362eb359","last-modified":"Sun, 19 May 2024 13:24:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/19161","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f277fb4-8b16-4b49-add4-c7b74dff0da1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.25400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Ambox_current_red.svg/99px-Ambox_current_red.svg.png","method":"get","status_code":200,"start_time":376985,"end_time":377073,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"24735","content-disposition":"inline;filename*=UTF-8''Ambox_current_red.svg.webp","content-length":"7940","content-type":"image/webp","date":"Mon, 20 May 2024 02:10:09 GMT","etag":"2fdc01fc3a415f51d6284bc9a43bc295","last-modified":"Tue, 23 May 2023 08:08:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/540","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7fb9a563-bc68-49fe-9164-b9d99b8d10b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.54000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg","method":"get","status_code":200,"start_time":379293,"end_time":379359,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"4897","content-disposition":"inline;filename*=UTF-8''Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg.webp","content-length":"178556","content-type":"image/webp","date":"Mon, 20 May 2024 07:40:49 GMT","etag":"bf327d5124c258158127165fb9e293ab","last-modified":"Mon, 20 May 2024 07:30:01 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/58","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"868dd320-6d08-42dd-bf03-92bed5828411","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:26.15900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":378978,"utime":750,"cutime":0,"cstime":0,"stime":707,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d4e8a-d735-4eaa-a1b9-37013414ce52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:21.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20820,"java_free_heap":5471,"total_pss":164790,"rss":240452,"native_total_heap":101888,"native_free_heap":11351,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ec22384-d4f3-4220-b51e-ba8e1f753273","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.26600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Decrease2.svg/22px-Decrease2.svg.png","method":"get","status_code":200,"start_time":377037,"end_time":377085,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"54203","content-disposition":"inline;filename*=UTF-8''Decrease2.svg.webp","content-length":"118","content-type":"image/webp","date":"Sun, 19 May 2024 17:59:00 GMT","etag":"6a32e49dbffd60773ebe06d4c5cef9e9","last-modified":"Wed, 31 Jan 2024 10:37:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/20209","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"931dc21b-766d-4983-98d2-d8340f0439c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.43300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":371867,"end_time":372252,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1473","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97c7763b-276c-4160-a6c6-2f68b45c6b72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.19000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b37ecef-3720-4de2-812c-b45ec1761a31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4e57f58-dad3-4c5f-b8ed-da3952522c35","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a54b0785-0c63-49aa-bfd3-0635d79ce3af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20339,"java_free_heap":5955,"total_pss":161703,"rss":244012,"native_total_heap":95744,"native_free_heap":12413,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab4488f4-d451-4bab-8994-0b47122b60a8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":376970,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae6df38a-2eb6-4379-9db1-3437e010839e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.75900000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":739.96216,"y":1180.957,"end_x":772.9541,"end_y":220.95703,"direction":"up","touch_down_time":378410,"touch_up_time":378577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b30515d2-62af-4e26-a5c2-345e544a5775","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.73100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bc5b4524-a2d5-4e0d-96ce-9e365800eca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.83700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_contents","width":216,"height":189,"x":1004.9524,"y":1705.8984,"touch_down_time":377573,"touch_up_time":377654},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"be2df92c-f144-4430-9857-e964b041bac6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:23.04400000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":200,"start_time":375350,"end_time":375863,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"donate.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-type":"text/x-wiki; charset=UTF-8","date":"Mon, 20 May 2024 09:02:23 GMT","last-modified":"Fri, 29 Dec 2023 14:07:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-fd69ff4c4-7fwx4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-5","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3b73221-138c-4d49-ba10-cf41ec155621","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:20.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":372977,"utime":576,"cutime":0,"cstime":0,"stime":609,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c75d5c4d-cddf-4938-b291-a92df2502559","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":21496,"java_free_heap":6128,"total_pss":165822,"rss":241200,"native_total_heap":101888,"native_free_heap":10790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d09136cf-fd3e-4307-aec8-d54d8b43b33b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d22f8eb4-663e-4ce9-a4ff-a57f0649779e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":376977,"end_time":376978,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d52f85d5-64c8-4f57-bdeb-c3c28c299e37","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.15800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":376973,"end_time":376977,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5b3ed54-9d07-4932-84f6-0c2c0744e670","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.32900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":370845,"end_time":371148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d697ae8e-7086-4a6e-b8ba-7c7d308ffe67","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:19.04700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d72821bf-6395-441f-9e35-acdcd5be8e70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.58500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_(19.05.2024)_(cropped).jpg/640px-Ebrahim_Raisi_(19.05.2024)_(cropped).jpg","method":"get","status_code":200,"start_time":375355,"end_time":375404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9401","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"106208","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/245","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8c37eab-d4de-42f1-bd71-3194eb7803a9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.20100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df44560b-c1c4-45e4-a02d-dcf6c1853c23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.32800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg","method":"get","status_code":200,"start_time":378095,"end_time":378147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"59304","content-disposition":"inline;filename*=UTF-8''Hossein_Dehghan_3742862.jpg","content-length":"28523","content-type":"image/jpeg","date":"Sun, 19 May 2024 16:34:01 GMT","etag":"d3fdbd4a484beec98231d58928e7b68a","last-modified":"Sat, 24 Apr 2021 16:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/82","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e540c90e-8af1-4dfa-9f95-89aaefa80b2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20397,"java_free_heap":5948,"total_pss":160547,"rss":247084,"native_total_heap":95744,"native_free_heap":11880,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5ace9ab-746b-472f-976c-0036f9dbcdb2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:25.26600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","method":"get","status_code":200,"start_time":377126,"end_time":378084,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"4mpgjwno2o04ka4hzflm3qi96","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":233913,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"pageid\":385653,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"pageid\":399536,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"Akbar_Rafsanjanī\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q186111\",\"titles\":{\"canonical\":\"Akbar_Rafsanjanī\",\"normalized\":\"Akbar Rafsanjanī\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAkbar Rafsanjanī\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg/320px-Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Akbar_Hashemi_Rafsanjani_by_Fars_01_%28cropped%29.jpg\",\"width\":630,\"height\":891},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224676447\",\"tid\":\"d4aef906-1619-11ef-a8b4-adee7f3d440e\",\"timestamp\":\"2024-05-19T19:56:07Z\",\"description\":\"President of Iran from 1989 to 1997\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Akbar_Rafsanjan%C4%AB\",\"edit\":\"https://en.m.wikipedia.org/wiki/Akbar_Rafsanjan%C4%AB?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Akbar_Rafsanjan%C4%AB\"}},\"extract\":\"Ali Akbar Hashimi Bahramani Rafsanjani was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAli Akbar Hashimi Bahramani Rafsanjani\u003c/b\u003e was an Iranian politician and writer who served as the fourth president of Iran from 1989 to 1997. One of the founding fathers of the Islamic Republic, Rafsanjani was the head of the Assembly of Experts from 2007 until 2011 when he decided not to nominate himself for the post. He was also the chairman of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Akbar Rafsanjanī\"},{\"pageid\":1155426,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"List_of_presidents_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q742419\",\"titles\":{\"canonical\":\"List_of_presidents_of_Iran\",\"normalized\":\"List of presidents of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of presidents of Iran\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759041\",\"tid\":\"6737c3a2-1683-11ef-88e1-193e954a67d4\",\"timestamp\":\"2024-05-20T08:31:50Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_presidents_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_presidents_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_presidents_of_Iran\"}},\"extract\":\"This is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\",\"extract_html\":\"\u003cp\u003eThis is a list of the presidents of the Islamic Republic of Iran since the establishment of that office in 1980. The president of Iran is the highest popularly elected official in the country. The most recent president, Ebrahim Raisi, died on 19 May 2024 leaving the office vacant.\u003c/p\u003e\",\"normalizedtitle\":\"List of presidents of Iran\"},{\"pageid\":2666136,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Bijan_Namdar_Zangeneh\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4907167\",\"titles\":{\"canonical\":\"Bijan_Namdar_Zangeneh\",\"normalized\":\"Bijan Namdar Zangeneh\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBijan Namdar Zangeneh\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg/320px-Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":320,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/46/Bijan_Namdar_Zangeneh_2019_%28cropped%29.jpg\",\"width\":408,\"height\":506},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220831157\",\"tid\":\"42ee0721-038b-11ef-bf62-89eeffe2821a\",\"timestamp\":\"2024-04-26T05:10:13Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bijan_Namdar_Zangeneh\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bijan_Namdar_Zangeneh?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bijan_Namdar_Zangeneh\"}},\"extract\":\"Bijan Namdar Zangeneh is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBijan Namdar Zangeneh\u003c/b\u003e is an Iranian politician, who served as minister, at different cabinets after the Islamic Revolution, for 30 years. He lately served as Minister of Petroleum from 2013 to 2021 in the cabinet led by Hassan Rouhani.\u003c/p\u003e\",\"normalizedtitle\":\"Bijan Namdar Zangeneh\"},{\"pageid\":2826589,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"Combatant_Clergy_Association\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1817687\",\"titles\":{\"canonical\":\"Combatant_Clergy_Association\",\"normalized\":\"Combatant Clergy Association\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCombatant Clergy Association\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0c/CAIran_logo.png\",\"width\":170,\"height\":160},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219028652\",\"tid\":\"c137ddda-fb09-11ee-800c-903c45641695\",\"timestamp\":\"2024-04-15T09:23:01Z\",\"description\":\"Political party in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Combatant_Clergy_Association\",\"edit\":\"https://en.m.wikipedia.org/wiki/Combatant_Clergy_Association?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Combatant_Clergy_Association\"}},\"extract\":\"The Combatant Clergy Association is a politically active group in Iran, but not a political party in the traditional sense.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eCombatant Clergy Association\u003c/b\u003e is a politically active group in Iran, but not a political party in the traditional sense.\u003c/p\u003e\",\"normalizedtitle\":\"Combatant Clergy Association\"},{\"pageid\":8898525,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Sadeq_Larijani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24682\",\"titles\":{\"canonical\":\"Sadeq_Larijani\",\"normalized\":\"Sadeq Larijani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSadeq Larijani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg/320px-Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":320,\"height\":468},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7e/Sixth_International_Conference_in_Support_of_the_Palestinian_Intifada%2C_Tehran_%2815%29_%28crop_of_Sadeq_Larijani%29.jpg\",\"width\":388,\"height\":567},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223124180\",\"tid\":\"31b5e548-0e6d-11ef-8f7b-9e92c2c01286\",\"timestamp\":\"2024-05-10T01:32:42Z\",\"description\":\"Iranian Ayatollah\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sadeq_Larijani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sadeq_Larijani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sadeq_Larijani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sadeq_Larijani\"}},\"extract\":\"Sadeq Ardeshir Larijani, better known as Amoli Larijani, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSadeq Ardeshir Larijani\u003c/b\u003e, better known as \u003cb\u003eAmoli Larijani\u003c/b\u003e, is an Iranian scholar, conservative politician, and current chairman of Expediency Discernment Council. He is the former and fifth Chief Justice of the judicial system of Iran after the 1979 revolution.\u003c/p\u003e\",\"normalizedtitle\":\"Sadeq Larijani\"},{\"pageid\":12653536,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Iran–Japan_relations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2915778\",\"titles\":{\"canonical\":\"Iran–Japan_relations\",\"normalized\":\"Iran–Japan relations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran–Japan relations\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Iran_Japan_Locator.png/320px-Iran_Japan_Locator.png\",\"width\":320,\"height\":165},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/28/Iran_Japan_Locator.png\",\"width\":1376,\"height\":708},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219996780\",\"tid\":\"0727fd57-ff9f-11ee-8c81-65d4dcd950c9\",\"timestamp\":\"2024-04-21T05:21:38Z\",\"description\":\"Bilateral relations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran%E2%80%93Japan_relations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran%E2%80%93Japan_relations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran%E2%80%93Japan_relations\"}},\"extract\":\"Iran–Japan relations are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran–Japan relations\u003c/b\u003e are diplomatic relations between Iran and Japan. It was officially established in 1926 during the Pahlavi era.\\nWith the exception of World War II, the two countries have maintained a relatively friendly, strong and strategic relationship throughout history.\u003c/p\u003e\",\"normalizedtitle\":\"Iran–Japan relations\"},{\"pageid\":13824095,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Saeed_Jalili\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q635059\",\"titles\":{\"canonical\":\"Saeed_Jalili\",\"normalized\":\"Saeed Jalili\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSaeed Jalili\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Saeed_Jalili_13991023_1647093.jpg/320px-Saeed_Jalili_13991023_1647093.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/Saeed_Jalili_13991023_1647093.jpg\",\"width\":400,\"height\":592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224715732\",\"tid\":\"5d437df0-1646-11ef-8927-7adf553a94a9\",\"timestamp\":\"2024-05-20T01:14:54Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Saeed_Jalili\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Saeed_Jalili\",\"edit\":\"https://en.m.wikipedia.org/wiki/Saeed_Jalili?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Saeed_Jalili\"}},\"extract\":\"Saeed Jalili is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSaeed Jalili\u003c/b\u003e is an Iranian conservative politician and diplomat who was secretary of the Supreme National Security Council from 2007 to 2013. He is currently member of the Expediency Discernment Council.\u003c/p\u003e\",\"normalizedtitle\":\"Saeed Jalili\"},{\"pageid\":17446126,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"Ezzatollah_Zarghami\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3736444\",\"titles\":{\"canonical\":\"Ezzatollah_Zarghami\",\"normalized\":\"Ezzatollah Zarghami\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEzzatollah Zarghami\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg/320px-Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a7/Ezzatollah_Zarghami_13990110_0945265.jpg\",\"width\":1667,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216932163\",\"tid\":\"df780acb-f12f-11ee-973b-9e630df41f7c\",\"timestamp\":\"2024-04-02T20:30:41Z\",\"description\":\"Iranian politician\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ezzatollah_Zarghami\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ezzatollah_Zarghami?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ezzatollah_Zarghami\"}},\"extract\":\"Sayyid Ezzatollah Zarghami is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSayyid Ezzatollah Zarghami\u003c/b\u003e is Iranian conservative politician and current minister of Ministry of Cultural Heritage, Handicrafts and Tourism. He is a former military officer. Zarghami was Deputy of Minister in Culture and Islamic Ministry as well as Defence Ministry before holding office as the head of Islamic Republic of Iran Broadcasting from 2004 to 2014.\u003c/p\u003e\",\"normalizedtitle\":\"Ezzatollah Zarghami\"},{\"pageid\":38481813,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Hassan_Rouhani\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348144\",\"titles\":{\"canonical\":\"Hassan_Rouhani\",\"normalized\":\"Hassan Rouhani\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Hassan_Rouhani_2020.jpg/320px-Hassan_Rouhani_2020.jpg\",\"width\":320,\"height\":367},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Hassan_Rouhani_2020.jpg\",\"width\":564,\"height\":646},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221528860\",\"tid\":\"81224136-06f6-11ef-a215-71f3c609cc2e\",\"timestamp\":\"2024-04-30T13:35:27Z\",\"description\":\"7th President of Iran from 2013 to 2021\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani\"}},\"extract\":\"Hassan Rouhani is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHassan Rouhani\u003c/b\u003e is an Iranian Islamist politician who served as the seventh president of Iran from 2013 to 2021. He is also a sharia lawyer (\\\"Wakil\\\"), academic, former diplomat and Islamic cleric. He has been a member of Iran's Assembly of Experts since 1999. He was a member of the Expediency Council from 1991 to 2021, and also was a member of the Supreme National Security Council from 1989 to 2021.\\nRouhani was deputy speaker of the fourth and fifth terms of the Parliament of Iran (Majlis) and Secretary of the Supreme National Security Council from 1989 to 2005. In the latter capacity, he was the country's top negotiator with the EU three, UK, France, and Germany, on nuclear technology in Iran, and has also served as a Shia mujtahid, and economic trade negotiator.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani\"},{\"pageid\":40156416,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Hossein_Dehghan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q14514593\",\"titles\":{\"canonical\":\"Hossein_Dehghan\",\"normalized\":\"Hossein Dehghan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Dehghan\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Hossein_Dehghan_3742862.jpg/320px-Hossein_Dehghan_3742862.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7f/Hossein_Dehghan_3742862.jpg\",\"width\":387,\"height\":478},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216931807\",\"tid\":\"99bb3020-f12f-11ee-9988-753ee47da8ed\",\"timestamp\":\"2024-04-02T20:28:44Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Dehghan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Dehghan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Dehghan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Dehghan\"}},\"extract\":\"Hossein Dehghani Poudeh, commonly known as Hossein Dehghan, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Dehghani Poudeh\u003c/b\u003e, commonly known as \u003cb\u003eHossein Dehghan\u003c/b\u003e, is an Iranian military officer and former IRGC Air Force officer with the rank of brigadier general. He is currently head of the Mostazafan Foundation since 2023.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Dehghan\"},{\"pageid\":49059917,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"2017_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16052966\",\"titles\":{\"canonical\":\"2017_Iranian_presidential_election\",\"normalized\":\"2017 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2017 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/320px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Iranian_presidential_election%2C_2017_by_county.svg/1200px-Iranian_presidential_election%2C_2017_by_county.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219479518\",\"tid\":\"1ac41222-fd1d-11ee-9296-641751b45479\",\"timestamp\":\"2024-04-18T00:46:34Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2017_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2017_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2017_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\",\"extract_html\":\"\u003cp\u003ePresidential elections were held in Iran on 19 May 2017, the twelfth such elections in Iran. Local elections were held simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"2017 Iranian presidential election\"},{\"pageid\":53159185,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"Hassan_Rouhani_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520023\",\"titles\":{\"canonical\":\"Hassan_Rouhani_2017_presidential_campaign\",\"normalized\":\"Hassan Rouhani 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHassan Rouhani 2017 presidential campaign\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg/320px-Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":320,\"height\":230},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Hassan_Rouhani_2017_official_presidential_campaign_logo.jpg\",\"width\":372,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219489515\",\"tid\":\"801d16c3-fd27-11ee-b249-cbd5c0c13166\",\"timestamp\":\"2024-04-18T02:00:59Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hassan_Rouhani_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hassan_Rouhani_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hassan_Rouhani_2017_presidential_campaign\"}},\"extract\":\"Hassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\",\"extract_html\":\"\u003cp\u003eHassan Rouhani, the incumbent president of Iran, launched his reelection campaign for the presidential office in February 2017. The election itself and related events received international media attention with many issues being raised. Rouhani achieved a decisive victory after the May 2017 vote, with Interior Minister Abdolreza Rahmani Fazli announcing that out of 41.3 million total votes cast Rouhani got 23.6 million. Ebrahim Raisi, Rouhani's closest rival, had picked up 15.8 million votes in contrast.\u003c/p\u003e\",\"normalizedtitle\":\"Hassan Rouhani 2017 presidential campaign\"},{\"pageid\":53746276,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29520041\",\"titles\":{\"canonical\":\"Ebrahim_Raisi_2017_presidential_campaign\",\"normalized\":\"Ebrahim Raisi 2017 presidential campaign\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi 2017 presidential campaign\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224666909\",\"tid\":\"8ac10222-160f-11ef-bbc4-74de2e80c743\",\"timestamp\":\"2024-05-19T18:42:28Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi_2017_presidential_campaign\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi_2017_presidential_campaign?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi_2017_presidential_campaign\"}},\"extract\":\"The Ebrahim Raisi 2017 presidential campaign began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEbrahim Raisi 2017 presidential campaign\u003c/b\u003e began when Ebrahim Raisi, chairman of the Astan Quds Razavi, launched his campaign for the 2017 presidential election. Raisi's campaign pursued a populist agenda.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi 2017 presidential campaign\"},{\"pageid\":54091457,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"2021_Iranian_presidential_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30640701\",\"titles\":{\"canonical\":\"2021_Iranian_presidential_election\",\"normalized\":\"2021 Iranian presidential election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2021 Iranian presidential election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/320px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":320,\"height\":286},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Iranian_presidential_election%2C_2021_by_province.svg/1200px-Iranian_presidential_election%2C_2021_by_province.svg.png\",\"width\":1200,\"height\":1071},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224741177\",\"tid\":\"6a25a278-1669-11ef-bdeb-b91c7b791f87\",\"timestamp\":\"2024-05-20T05:25:48Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2021_Iranian_presidential_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2021_Iranian_presidential_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2021_Iranian_presidential_election\"}},\"extract\":\"Presidential elections were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePresidential elections\u003c/b\u003e were held in Iran on 18 June 2021, the thirteenth since the establishment of the Islamic Republic in 1979. Ebrahim Raisi, the then Chief Justice of Iran, was declared the winner in a highly controversial election. The election began with the mass disqualification of popular candidates by the Guardian Council, and broke records of the lowest turnout in Iranian electoral history, as well as had the highest share of protest blank, invalid and lost votes despite a declaration by the Supreme Leader of Iran, Ali Khamenei, considering protest voting religiously forbidden (haraam) as it would \\\"weaken the regime.\\\" Reporters Without Borders reported 42 cases of journalists being summoned or threatened for writing about candidates, and the chief of the police threatened people who discouraged others to vote.\u003c/p\u003e\",\"normalizedtitle\":\"2021 Iranian presidential election\"},{\"pageid\":59042456,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Next_Supreme_Leader_of_Iran_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q23043491\",\"titles\":{\"canonical\":\"Next_Supreme_Leader_of_Iran_election\",\"normalized\":\"Next Supreme Leader of Iran election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNext Supreme Leader of Iran election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751456\",\"tid\":\"3999420b-1678-11ef-9853-b9e4dddce4ab\",\"timestamp\":\"2024-05-20T07:11:49Z\",\"description\":\"Upcoming election for third Supreme Leader\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Next_Supreme_Leader_of_Iran_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/Next_Supreme_Leader_of_Iran_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Next_Supreme_Leader_of_Iran_election\"}},\"extract\":\"An election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\",\"extract_html\":\"\u003cp\u003eAn election for the third Supreme Leader of Iran is scheduled to be held following the end of the current tenure of Ali Khamenei. As of January 2024, no person has been officially declared as the heir to the current leader nor as a nominee, though various sources have written on potential candidates.\u003c/p\u003e\",\"normalizedtitle\":\"Next Supreme Leader of Iran election\"},{\"pageid\":62042035,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Shahid_Motahari_University\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25423155\",\"titles\":{\"canonical\":\"Shahid_Motahari_University\",\"normalized\":\"Shahid Motahari University\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShahid Motahari University\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224737178\",\"tid\":\"b372fac3-1663-11ef-aca3-cbc5d2475b02\",\"timestamp\":\"2024-05-20T04:44:54Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shahid_Motahari_University\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shahid_Motahari_University?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shahid_Motahari_University\"}},\"extract\":\"Shahid Motahari University was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eShahid Motahari University\u003c/b\u003e was built in 1879 by Mirza Hosein Sepahsalar. The university is located in Baharestan square in Tehran, Iran.\u003c/p\u003e\",\"normalizedtitle\":\"Shahid Motahari University\"},{\"pageid\":67993687,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Jamileh_Alamolhoda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107312007\",\"titles\":{\"canonical\":\"Jamileh_Alamolhoda\",\"normalized\":\"Jamileh Alamolhoda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJamileh Alamolhoda\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Jamileh_Alamolhoda.jpg\",\"width\":301,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749287\",\"tid\":\"4d43951a-1676-11ef-98cd-3966598ad8f5\",\"timestamp\":\"2024-05-20T06:58:03Z\",\"description\":\"Iranian pedagogist (born 1965)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jamileh_Alamolhoda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jamileh_Alamolhoda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jamileh_Alamolhoda\"}},\"extract\":\"Jamileh-Sadat Alamolhoda, commonly known as Jamileh Alamolhoda, is the widow of former President of Iran, Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJamileh-Sadat Alamolhoda\u003c/b\u003e, commonly known as \u003cb\u003eJamileh Alamolhoda\u003c/b\u003e, is the widow of former President of Iran, Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"Jamileh Alamolhoda\"},{\"pageid\":75487795,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"2024_Iranian_Assembly_of_Experts_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q119082308\",\"titles\":{\"canonical\":\"2024_Iranian_Assembly_of_Experts_election\",\"normalized\":\"2024 Iranian Assembly of Experts election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Iranian Assembly of Experts election\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740581\",\"tid\":\"6ba2a04c-1668-11ef-99ed-0b0378ef8cb8\",\"timestamp\":\"2024-05-20T05:18:41Z\",\"description\":\"Upcoming election in Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Iranian_Assembly_of_Experts_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Iranian_Assembly_of_Experts_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Iranian_Assembly_of_Experts_election\"}},\"extract\":\"The 2024 Iranian Assembly of Experts election were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2024 Iranian Assembly of Experts election\u003c/b\u003e were held on 1 March 2024, concurrently with the elections of the Islamic Consultative Majlis. Directly elected by the public from a list of candidates vetted by the Guardian Council, the Assembly of Experts is made up of 88 clerics with the responsibility of supervising the Supreme Leader and selecting a new one.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Iranian Assembly of Experts election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e9fad349-7675-446f-a952-8d91a27c0427","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.06100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5b1ac64-6b6b-4a34-8500-4dd32d105ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.14800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375071,"end_time":376967,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5d66f2c-9abc-4ea9-b464-87f5531ebb77","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:24.30000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/46px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":377077,"end_time":377119,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37505","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1594","content-type":"image/webp","date":"Sun, 19 May 2024 22:37:19 GMT","etag":"217ce88f57569ea8d778fc852ed7cc75","last-modified":"Thu, 08 Jun 2023 05:41:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5125","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f9b575d5-e917-4f73-b8a1-018b129d8f55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:22.51500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":200,"start_time":375072,"end_time":375334,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json index b55b648aa..14fc55da8 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/35c101b3-bf3d-4386-90d3-f0d61406bbeb.json @@ -1 +1 @@ -[{"id":"078c6353-a072-431d-96d3-be39e1036e91","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:41.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1343,"total_pss":111389,"rss":175568,"native_total_heap":49624,"native_free_heap":18983,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0a5f08e8-6ea0-4ecf-bea5-5f6bc56bf015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.28700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":164737,"end_time":164771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"334632","content-type":"multipart/form-data; boundary=4496bd5f-55af-49bc-9b48-b1405741e473","host":"10.0.2.2:8080","msr-req-id":"c3929414-e862-4eeb-a108-6048f47a53ed","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b87362d-c482-47d5-84f5-794489f4ac8b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28868,"java_free_heap":1719,"total_pss":110865,"rss":175036,"native_total_heap":49865,"native_free_heap":18742,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0e6f68ac-196e-4ec3-ac18-8762c3d9f726","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33189,"java_free_heap":2005,"total_pss":112205,"rss":175824,"native_total_heap":50102,"native_free_heap":17481,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"177639cc-7adb-4fd7-9da6-b358167876e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17b1ef98-97c4-4943-90c5-b34628166f62","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.76800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":159460,"end_time":160253,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lowndes_County_School_District_(Georgia)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:39 GMT","etag":"W/\"1167323175/4e777a40-fdcd-11ee-bbdc-32b98d7a962b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lowndes County School District (Georgia)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6694121\",\"titles\":{\"canonical\":\"Lowndes_County_School_District_(Georgia)\",\"normalized\":\"Lowndes County School District (Georgia)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\"},\"pageid\":27818334,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Lowndes_County_Board_of_Education.JPG/320px-Lowndes_County_Board_of_Education.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/11/Lowndes_County_Board_of_Education.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1167323175\",\"tid\":\"1bafa25e-2c24-11ee-ac43-c693f77f2e7f\",\"timestamp\":\"2023-07-27T02:20:09Z\",\"description\":\"School district in Georgia (U.S. state)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.834966,\"lon\":-83.320821},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lowndes_County_School_District_(Georgia)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"}},\"extract\":\"The Lowndes County School District is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLowndes County School District\u003c/b\u003e is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2739435f-8120-44b0-b908-80c79a68df67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"28590b55-2df6-4b87-98e1-e07b5a78bbfa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aa39033-dd30-452e-9660-06b1a789e885","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":161609,"utime":200,"cutime":0,"cstime":0,"stime":96,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30ad3022-2d4b-4ec8-8939-edb3ab0dcff3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1317,"total_pss":110720,"rss":174132,"native_total_heap":50061,"native_free_heap":17522,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"32d95e61-4d9b-48ba-8df6-d5f9dd044e3e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"332e29d7-cc7b-46fd-badc-0baf12324fe4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"361bad99-b26f-49c9-9766-659a71be4b03","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":158605,"utime":180,"cutime":0,"cstime":0,"stime":86,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39899413-c250-46cc-83ba-3a8ceb7eeb0a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3ec0873b-d50f-4876-9860-28fd71923756","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.02700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":521.97144,"y":2194.9219,"touch_down_time":162785,"touch_up_time":165508},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"47ad1207-0a90-4ed4-acdc-6c4d0f0f290b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.83700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c4d51f5-a366-409a-a826-f82dc3574928","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4e8eb141-9d91-478c-a02b-53ac3309d7c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":927.9602,"y":2164.8926,"touch_down_time":166676,"touch_up_time":166748},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"533f5d20-95b6-4d13-a985-8b45be7e181d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"539b337a-e5b0-4215-95fa-6433c9d68a24","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.20900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":158643,"end_time":158693,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/e0c68f80-1687-11ef-a368-494f74d485b5","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"179","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/99","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"59b30715-a806-4c9e-9c01-19e039197c44","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.63200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":80.980225,"y":145.97168,"touch_down_time":155027,"touch_up_time":155116},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d9cf152-56c6-4c97-bc56-50b96255122e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"61039d91-65ce-4e2f-ae1b-7cd875edacdc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:34.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":155605,"utime":168,"cutime":0,"cstime":0,"stime":81,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"63616d03-b7a1-4cae-9350-30becf2a5684","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":155141,"end_time":155469,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1813","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"666ae65c-1933-403f-a92b-07accf7b6380","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"677a625a-7bfd-421d-93ff-66356b5ca2b1","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:39.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1585,"total_pss":111297,"rss":175480,"native_total_heap":49751,"native_free_heap":18856,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6eb04c0a-e750-4827-9d03-c13b706d22b4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7b547a74-e4ce-4684-8ae5-befcfb977a82","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"824c2970-ec69-4d31-b3cd-115e9ee660db","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1249,"total_pss":110909,"rss":175052,"native_total_heap":49740,"native_free_heap":18867,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ec3090-a1a8-4958-8623-b67a101cb712","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"887d5aa4-1917-4399-8a64-4079a23f712d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.99300000Z","type":"gesture_long_click","gesture_long_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":361.98853,"y":1323.9258,"touch_down_time":152274,"touch_up_time":153476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a23085a-af0c-4bdd-b149-92ee1f5e5d97","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.05900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a7c48ec-bb59-4e9b-ac9a-63f207a614b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.29300000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":95.97656,"y":2054.8828,"end_x":95.97656,"end_y":2080.5315,"direction":"down","touch_down_time":156437,"touch_up_time":156776},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"985dbc31-addf-4d22-b627-c00078bc4e47","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.28500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99cd84b8-ed71-4b1c-81c9-f579b14dd047","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:32.70900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":451.96655,"y":1368.8965,"touch_down_time":154109,"touch_up_time":154193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99f4560e-0cbc-43df-8c88-b079be20475b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"aec2b717-4c90-4f6d-9f09-f68c65f1e306","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.23100000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2164.8926,"touch_down_time":160052,"touch_up_time":161712},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bc7749c8-dcbb-431e-b6fa-0248dc3d24b5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be405dac-a600-44b8-a4e5-86105d17161d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bee9bae4-62b4-45fd-99a6-07e267f958a9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":164606,"utime":206,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c0a1180a-2143-4b60-8a23-047b4b8d59ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.77000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":746.94946,"y":2154.9316,"touch_down_time":166164,"touch_up_time":166253},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c7200e77-885c-4cbc-9128-1ce173dcddc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c94df8e5-c22d-46ca-8cd9-88bf193ef226","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.80200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d04de3de-c98a-44d2-aa35-2ed94c791cee","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.12900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2184.8877,"touch_down_time":158915,"touch_up_time":159612},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d1db828b-6065-4021-a5f5-c58bfc2ed98f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d694f833-60cf-470b-be2e-38aa46016862","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.82900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":100.98633,"y":2139.9026,"touch_down_time":157116,"touch_up_time":158311},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e5b46f9b-3e01-4e95-81da-6bbb40197288","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8395764-e664-41b9-8caa-df5d635fef11","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ec0acfea-d65d-48d5-a37a-cc063229b502","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1853,"total_pss":109932,"rss":173512,"native_total_heap":49277,"native_free_heap":18306,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f16f5dbb-0fda-4d65-b89a-acd7a742eb63","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.85600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":158336,"end_time":158341,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"078c6353-a072-431d-96d3-be39e1036e91","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:41.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1343,"total_pss":111389,"rss":175568,"native_total_heap":49624,"native_free_heap":18983,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0a5f08e8-6ea0-4ecf-bea5-5f6bc56bf015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.28700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":164737,"end_time":164771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"334632","content-type":"multipart/form-data; boundary=4496bd5f-55af-49bc-9b48-b1405741e473","host":"10.0.2.2:8080","msr-req-id":"c3929414-e862-4eeb-a108-6048f47a53ed","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b87362d-c482-47d5-84f5-794489f4ac8b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28868,"java_free_heap":1719,"total_pss":110865,"rss":175036,"native_total_heap":49865,"native_free_heap":18742,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0e6f68ac-196e-4ec3-ac18-8762c3d9f726","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33189,"java_free_heap":2005,"total_pss":112205,"rss":175824,"native_total_heap":50102,"native_free_heap":17481,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"177639cc-7adb-4fd7-9da6-b358167876e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17b1ef98-97c4-4943-90c5-b34628166f62","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.76800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":159460,"end_time":160253,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lowndes_County_School_District_(Georgia)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:39 GMT","etag":"W/\"1167323175/4e777a40-fdcd-11ee-bbdc-32b98d7a962b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lowndes County School District (Georgia)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6694121\",\"titles\":{\"canonical\":\"Lowndes_County_School_District_(Georgia)\",\"normalized\":\"Lowndes County School District (Georgia)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLowndes County School District (Georgia)\u003c/span\u003e\"},\"pageid\":27818334,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Lowndes_County_Board_of_Education.JPG/320px-Lowndes_County_Board_of_Education.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/11/Lowndes_County_Board_of_Education.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1167323175\",\"tid\":\"1bafa25e-2c24-11ee-ac43-c693f77f2e7f\",\"timestamp\":\"2023-07-27T02:20:09Z\",\"description\":\"School district in Georgia (U.S. state)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.834966,\"lon\":-83.320821},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lowndes_County_School_District_(Georgia)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lowndes_County_School_District_(Georgia)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lowndes_County_School_District_(Georgia)\"}},\"extract\":\"The Lowndes County School District is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLowndes County School District\u003c/b\u003e is a public school district in Lowndes County, Georgia, United States, based in Valdosta. It serves the communities of Clyattville, Dasher, Hahira, Lake Park, Moody Air Force Base, Naylor, Remerton, and Valdosta.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2739435f-8120-44b0-b908-80c79a68df67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"28590b55-2df6-4b87-98e1-e07b5a78bbfa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aa39033-dd30-452e-9660-06b1a789e885","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.12500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":161609,"utime":200,"cutime":0,"cstime":0,"stime":96,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30ad3022-2d4b-4ec8-8939-edb3ab0dcff3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1317,"total_pss":110720,"rss":174132,"native_total_heap":50061,"native_free_heap":17522,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"32d95e61-4d9b-48ba-8df6-d5f9dd044e3e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"332e29d7-cc7b-46fd-badc-0baf12324fe4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"361bad99-b26f-49c9-9766-659a71be4b03","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.12100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":158605,"utime":180,"cutime":0,"cstime":0,"stime":86,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39899413-c250-46cc-83ba-3a8ceb7eeb0a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3ec0873b-d50f-4876-9860-28fd71923756","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.02700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":521.97144,"y":2194.9219,"touch_down_time":162785,"touch_up_time":165508},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"47ad1207-0a90-4ed4-acdc-6c4d0f0f290b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.83700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c4d51f5-a366-409a-a826-f82dc3574928","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4e8eb141-9d91-478c-a02b-53ac3309d7c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":927.9602,"y":2164.8926,"touch_down_time":166676,"touch_up_time":166748},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"533f5d20-95b6-4d13-a985-8b45be7e181d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.65300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"539b337a-e5b0-4215-95fa-6433c9d68a24","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:37.20900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":158643,"end_time":158693,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/e0c68f80-1687-11ef-a368-494f74d485b5","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"179","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/99","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"59b30715-a806-4c9e-9c01-19e039197c44","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.63200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":80.980225,"y":145.97168,"touch_down_time":155027,"touch_up_time":155116},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d9cf152-56c6-4c97-bc56-50b96255122e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"61039d91-65ce-4e2f-ae1b-7cd875edacdc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:34.12100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":155605,"utime":168,"cutime":0,"cstime":0,"stime":81,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"63616d03-b7a1-4cae-9350-30becf2a5684","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.98400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":155141,"end_time":155469,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1813","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"666ae65c-1933-403f-a92b-07accf7b6380","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"677a625a-7bfd-421d-93ff-66356b5ca2b1","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:39.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1585,"total_pss":111297,"rss":175480,"native_total_heap":49751,"native_free_heap":18856,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6eb04c0a-e750-4827-9d03-c13b706d22b4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7b547a74-e4ce-4684-8ae5-befcfb977a82","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.06300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"824c2970-ec69-4d31-b3cd-115e9ee660db","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30126,"java_free_heap":1249,"total_pss":110909,"rss":175052,"native_total_heap":49740,"native_free_heap":18867,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ec3090-a1a8-4958-8623-b67a101cb712","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.66100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"887d5aa4-1917-4399-8a64-4079a23f712d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.99300000Z","type":"gesture_long_click","gesture_long_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":361.98853,"y":1323.9258,"touch_down_time":152274,"touch_up_time":153476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a23085a-af0c-4bdd-b149-92ee1f5e5d97","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.05900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8a7c48ec-bb59-4e9b-ac9a-63f207a614b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:35.29300000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":95.97656,"y":2054.8828,"end_x":95.97656,"end_y":2080.5315,"direction":"down","touch_down_time":156437,"touch_up_time":156776},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"985dbc31-addf-4d22-b627-c00078bc4e47","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.28500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99cd84b8-ed71-4b1c-81c9-f579b14dd047","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:32.70900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":null,"width":1080,"height":309,"x":451.96655,"y":1368.8965,"touch_down_time":154109,"touch_up_time":154193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"99f4560e-0cbc-43df-8c88-b079be20475b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"aec2b717-4c90-4f6d-9f09-f68c65f1e306","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:40.23100000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2164.8926,"touch_down_time":160052,"touch_up_time":161712},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bc7749c8-dcbb-431e-b6fa-0248dc3d24b5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be405dac-a600-44b8-a4e5-86105d17161d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:45.26900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bee9bae4-62b4-45fd-99a6-07e267f958a9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:43.12100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":164606,"utime":206,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c0a1180a-2143-4b60-8a23-047b4b8d59ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.77000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":746.94946,"y":2154.9316,"touch_down_time":166164,"touch_up_time":166253},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c7200e77-885c-4cbc-9128-1ce173dcddc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.84300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c94df8e5-c22d-46ca-8cd9-88bf193ef226","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.80200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d04de3de-c98a-44d2-aa35-2ed94c791cee","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.12900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":326.98608,"y":2184.8877,"touch_down_time":158915,"touch_up_time":159612},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d1db828b-6065-4021-a5f5-c58bfc2ed98f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.16100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d694f833-60cf-470b-be2e-38aa46016862","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.82900000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":100.98633,"y":2139.9026,"touch_down_time":157116,"touch_up_time":158311},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e5b46f9b-3e01-4e95-81da-6bbb40197288","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:44.81400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8395764-e664-41b9-8caa-df5d635fef11","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:38.15500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ec0acfea-d65d-48d5-a37a-cc063229b502","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:33.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":1853,"total_pss":109932,"rss":173512,"native_total_heap":49277,"native_free_heap":18306,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f16f5dbb-0fda-4d65-b89a-acd7a742eb63","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:36.85600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":158336,"end_time":158341,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json index fe54287f5..e5dda5a5d 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/3906b2c4-bf14-45fc-bfe8-6f1a555e638b.json @@ -1 +1 @@ -[{"id":"0017ac11-c79b-4125-ad15-ec52a5b2197d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0384bb74-5c14-4be1-96a1-6d592a337a76","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0d5edd9a-67c1-4fe9-9214-2311908f3e34","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17d63b53-affa-433e-b68a-97bfee76768f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25a6df4f-6755-46ea-8c55-4eb2491b5887","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.41900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"317be4bf-5c84-47be-a71c-d466a6980d79","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3c80af53-5831-4277-aba0-b6308ff44667","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f73d871-9253-4de0-ab84-712fd9c6153a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4d189e6a-987e-4b05-ad0b-9573ede9e0b2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4ea9d9d0-541b-4e1d-b2a2-c3461d8820d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5a2125eb-006f-45f5-b533-9d533ac2115c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.16900000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29692,"java_free_heap":1146,"total_pss":113201,"rss":176820,"native_total_heap":50002,"native_free_heap":20653,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f711bf6-4745-4868-9206-c14022163a12","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a93c7af-53d1-4a74-8fb4-9ad0f07c9a04","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":176652,"utime":254,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e7b325c-095b-4be4-9a78-32612b268899","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.20200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":176639,"end_time":176687,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"376550","content-type":"multipart/form-data; boundary=b78391c7-d360-4072-bb25-15d7d1bf897b","host":"10.0.2.2:8080","msr-req-id":"35c101b3-bf3d-4386-90d3-f0d61406bbeb","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e9ae7cb-c5d1-41a7-89f9-980dca0b33be","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f44bd02-7f7e-43b3-b03e-1c85b2b34136","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a21a75be-5a56-4799-a211-f7a93ea8595f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b108f511-7994-4ff0-a00b-a9faf38c346e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.27500000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":176633,"on_next_draw_uptime":176759,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c09af090-e454-4bd4-977e-5b083c01d75c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e92d44d1-8c38-4a82-ac50-9e783f143408","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":41657,"java_free_heap":0,"total_pss":116587,"rss":180992,"native_total_heap":48442,"native_free_heap":22213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0017ac11-c79b-4125-ad15-ec52a5b2197d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0384bb74-5c14-4be1-96a1-6d592a337a76","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0d5edd9a-67c1-4fe9-9214-2311908f3e34","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.14900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"17d63b53-affa-433e-b68a-97bfee76768f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25a6df4f-6755-46ea-8c55-4eb2491b5887","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.41900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"317be4bf-5c84-47be-a71c-d466a6980d79","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3c80af53-5831-4277-aba0-b6308ff44667","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f73d871-9253-4de0-ab84-712fd9c6153a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4d189e6a-987e-4b05-ad0b-9573ede9e0b2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.22000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4ea9d9d0-541b-4e1d-b2a2-c3461d8820d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5a2125eb-006f-45f5-b533-9d533ac2115c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.16900000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29692,"java_free_heap":1146,"total_pss":113201,"rss":176820,"native_total_heap":50002,"native_free_heap":20653,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f711bf6-4745-4868-9206-c14022163a12","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a93c7af-53d1-4a74-8fb4-9ad0f07c9a04","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":176652,"utime":254,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e7b325c-095b-4be4-9a78-32612b268899","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.20200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":176639,"end_time":176687,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"376550","content-type":"multipart/form-data; boundary=b78391c7-d360-4072-bb25-15d7d1bf897b","host":"10.0.2.2:8080","msr-req-id":"35c101b3-bf3d-4386-90d3-f0d61406bbeb","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:56 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e9ae7cb-c5d1-41a7-89f9-980dca0b33be","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f44bd02-7f7e-43b3-b03e-1c85b2b34136","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a21a75be-5a56-4799-a211-f7a93ea8595f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.40400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b108f511-7994-4ff0-a00b-a9faf38c346e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.27500000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":176633,"on_next_draw_uptime":176759,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c09af090-e454-4bd4-977e-5b083c01d75c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.42400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e92d44d1-8c38-4a82-ac50-9e783f143408","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:55.16800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":41657,"java_free_heap":0,"total_pss":116587,"rss":180992,"native_total_heap":48442,"native_free_heap":22213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json index ecc4deb28..d3b550c87 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41.json @@ -1 +1 @@ -[{"id":"012c5a9c-0c67-45f2-aece-ecc508bc6f4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.27400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07ec6e95-20a7-424f-9866-728c5feb9c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e1cd8bf-9456-4555-bc7f-7d48ce3c6708","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.33200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304032,"end_time":305151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"251","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2747a398-225e-4ca9-af69-3f35d71043c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.38200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"289005a1-e179-4f99-a650-15b87346be5b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":2256,"total_pss":75783,"rss":164720,"native_total_heap":32768,"native_free_heap":3850,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3244cac5-9dbf-42dd-98d4-b4a0de6a93cb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.34900000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":336.97266,"y":1676.8945,"touch_down_time":315086,"touch_up_time":315165},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33328ab0-b68d-4033-9e18-52f8551db961","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33baa990-87ee-4398-8a89-ec99f59215b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.45000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"359c4020-def4-4f99-bdd7-175ece300ca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.55600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304235,"end_time":304375,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2425","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38da200f-cf47-461b-93f0-88e4d633b74b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e7bba15-0947-4439-a8ec-99bc87193032","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.29500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"40dea0eb-2d74-49c9-b411-566c5e107494","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a758de7-a94e-40c5-af2e-ed26d43b0e46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.50900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304053,"end_time":304328,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2424","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f5f1a37-3952-4b7d-8147-8920bd176aaf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"550c5a37-4e86-41e8-a81a-ec2a369cfc9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56ea5db8-0168-45e7-9d9f-bb1ca23a31db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"588e0674-7008-4e94-9a4d-8a739a6119dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a42a47d-0a49-452e-92eb-e0d7b51c42a6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":306976,"utime":47,"cutime":0,"cstime":0,"stime":33,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a6cbd-4a83-4fd2-a305-2db08c830780","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70206dac-6eab-4d76-b118-cd145a21d9e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a38870-bc9e-4874-9067-8b096c7efd96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":302,"total_pss":79461,"rss":170260,"native_total_heap":34816,"native_free_heap":4794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75c7a06c-a6bb-41af-8797-816b31073c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.60100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":314074,"end_time":314420,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12083","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/746","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7816de3e-ea57-41ed-9fc6-ec38a8997f61","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":304064,"end_time":304087,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"4405","content-type":"multipart/form-data; boundary=13467950-89a1-4da9-a8eb-8010b037cd50","host":"10.0.2.2:8080","msr-req-id":"01685d51-71b9-4482-9668-8b2e5ae8f8dd","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7db550d4-860f-467e-982c-8db6bc4bc0d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e40c84c-df16-423f-9ba8-3b3902e30935","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":902,"total_pss":78262,"rss":167544,"native_total_heap":34816,"native_free_heap":5577,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"834b47bf-3c27-4cb8-a075-2b2dcf633705","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":309977,"utime":53,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad8b23a-7030-42c4-8115-e97312180506","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.00000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":305614,"end_time":306819,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Massena%2C_Iowa","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:14 GMT","etag":"W/\"1207123788/a3045060-14c0-11ef-ad39-9fc638d86320\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Massena, Iowa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1928585\",\"titles\":{\"canonical\":\"Massena,_Iowa\",\"normalized\":\"Massena, Iowa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\"},\"pageid\":112848,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/EastMain.jpg/320px-EastMain.jpg\",\"width\":320,\"height\":137},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2d/EastMain.jpg\",\"width\":504,\"height\":216},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1207123788\",\"tid\":\"2d7e5df5-cada-11ee-a8bf-15ff9d24e458\",\"timestamp\":\"2024-02-14T01:41:31Z\",\"description\":\"City in Iowa, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":41.25388889,\"lon\":-94.76888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Massena%2C_Iowa\",\"edit\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"}},\"extract\":\"Massena is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMassena\u003c/b\u003e is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17ff16-9751-4753-b450-67889a4da1ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.99600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":304696,"end_time":304815,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"137","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49974","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/78","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2537fb2-6e86-4c76-a709-a4b0846e674c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.43500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"afad7ba4-f963-409f-a88f-dfff38f903f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.56800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":314073,"end_time":314387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"84504","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/559","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b05a4425-8468-4b46-9d28-8bcd81775c33","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ca69b6cf-0b35-48d4-8213-09b592a541a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc31ed96-00a6-42a0-98e9-a1e8371ab4fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.37500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccb8d339-4e4e-4789-8e27-0bf1220baf46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.24000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf2ee08e-3751-48cc-baf7-42c81a02f91b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1b318ab-ca13-43f3-8bd9-8aed935671cf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:20.16200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":312981,"utime":56,"cutime":0,"cstime":0,"stime":38,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7846355-81ec-4aca-b863-6961f3155061","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.11800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":80.980225,"y":1728.9258,"touch_down_time":313856,"touch_up_time":313931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db27611b-0697-44c8-8649-c99ed9b159ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df7a13cb-c3b1-4ddc-b929-146343e4de99","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.40200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":303959,"on_next_draw_uptime":304221,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e05dc094-ab15-4266-a5c4-9c99e25ad13a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.74700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":544.9768,"y":1676.8945,"touch_down_time":315493,"touch_up_time":315564},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d375e7-59fb-442d-9f24-63fee9481281","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":939,"total_pss":78237,"rss":167528,"native_total_heap":34816,"native_free_heap":5582,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e313c5df-8dfe-4039-b4f6-58dc8c2f0b83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3f4cb4e-4851-450e-b0b0-76051e644e17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.87700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":313946,"end_time":314695,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e455f2de-cfd2-4838-8aff-5d8203885ff7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e84d6bce-5dc4-4da6-aa50-b16ef2330028","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f05f7df1-f400-4366-80d0-45df9559347a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.69700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5814322-b66c-4919-ab73-0a88d3c557af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:15.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":1467,"total_pss":76551,"rss":165848,"native_total_heap":34816,"native_free_heap":5676,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f8d433a7-c4b1-4bbb-b377-6a690b908718","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.39000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fc9fc8ac-3f79-4b58-b9e9-dc1fa7a74e0e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.67400000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304338,"end_time":305492,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"252","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/4","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff5b7f74-29e1-437a-8d8c-0611cfd12294","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.56900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":304224,"end_time":304388,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"420","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 08:54:11 GMT","etag":"\"1230862227/70d6bc70-1684-11ef-aff2-28edaf86ebce\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/122","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"012c5a9c-0c67-45f2-aece-ecc508bc6f4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.27400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07ec6e95-20a7-424f-9866-728c5feb9c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0e1cd8bf-9456-4555-bc7f-7d48ce3c6708","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.33200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304032,"end_time":305151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"251","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2747a398-225e-4ca9-af69-3f35d71043c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.38200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"289005a1-e179-4f99-a650-15b87346be5b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":2256,"total_pss":75783,"rss":164720,"native_total_heap":32768,"native_free_heap":3850,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3244cac5-9dbf-42dd-98d4-b4a0de6a93cb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.34900000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":336.97266,"y":1676.8945,"touch_down_time":315086,"touch_up_time":315165},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33328ab0-b68d-4033-9e18-52f8551db961","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"33baa990-87ee-4398-8a89-ec99f59215b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.45000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"359c4020-def4-4f99-bdd7-175ece300ca5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.55600000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304235,"end_time":304375,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2425","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38da200f-cf47-461b-93f0-88e4d633b74b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e7bba15-0947-4439-a8ec-99bc87193032","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.29500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"40dea0eb-2d74-49c9-b411-566c5e107494","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a758de7-a94e-40c5-af2e-ed26d43b0e46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.50900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":304053,"end_time":304328,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"73859","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2424","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f5f1a37-3952-4b7d-8147-8920bd176aaf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"550c5a37-4e86-41e8-a81a-ec2a369cfc9b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56ea5db8-0168-45e7-9d9f-bb1ca23a31db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"588e0674-7008-4e94-9a4d-8a739a6119dd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.35000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a42a47d-0a49-452e-92eb-e0d7b51c42a6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":306976,"utime":47,"cutime":0,"cstime":0,"stime":33,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a6cbd-4a83-4fd2-a305-2db08c830780","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"70206dac-6eab-4d76-b118-cd145a21d9e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a38870-bc9e-4874-9067-8b096c7efd96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":302,"total_pss":79461,"rss":170260,"native_total_heap":34816,"native_free_heap":4794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75c7a06c-a6bb-41af-8797-816b31073c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.60100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":314074,"end_time":314420,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12083","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/746","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7816de3e-ea57-41ed-9fc6-ec38a8997f61","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.26800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":304064,"end_time":304087,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"4405","content-type":"multipart/form-data; boundary=13467950-89a1-4da9-a8eb-8010b037cd50","host":"10.0.2.2:8080","msr-req-id":"01685d51-71b9-4482-9668-8b2e5ae8f8dd","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7db550d4-860f-467e-982c-8db6bc4bc0d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e40c84c-df16-423f-9ba8-3b3902e30935","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:19.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":902,"total_pss":78262,"rss":167544,"native_total_heap":34816,"native_free_heap":5577,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"834b47bf-3c27-4cb8-a075-2b2dcf633705","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":309977,"utime":53,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ad8b23a-7030-42c4-8115-e97312180506","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:14.00000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":305614,"end_time":306819,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Massena%2C_Iowa","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:14 GMT","etag":"W/\"1207123788/a3045060-14c0-11ef-ad39-9fc638d86320\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2029","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Massena, Iowa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1928585\",\"titles\":{\"canonical\":\"Massena,_Iowa\",\"normalized\":\"Massena, Iowa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMassena, Iowa\u003c/span\u003e\"},\"pageid\":112848,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/EastMain.jpg/320px-EastMain.jpg\",\"width\":320,\"height\":137},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2d/EastMain.jpg\",\"width\":504,\"height\":216},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1207123788\",\"tid\":\"2d7e5df5-cada-11ee-a8bf-15ff9d24e458\",\"timestamp\":\"2024-02-14T01:41:31Z\",\"description\":\"City in Iowa, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":41.25388889,\"lon\":-94.76888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Massena%2C_Iowa\",\"edit\":\"https://en.m.wikipedia.org/wiki/Massena%2C_Iowa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Massena%2C_Iowa\"}},\"extract\":\"Massena is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMassena\u003c/b\u003e is a city in Cass County, Iowa, United States. The population was 359 at the time of the 2020 census. Massena's motto is: \\\"The Home of Friendly People\\\". Massena's sister community is Cumberland, Iowa. Massena is named after Massena, New York.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17ff16-9751-4753-b450-67889a4da1ff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.99600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":304696,"end_time":304815,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"137","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49974","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/78","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2537fb2-6e86-4c76-a709-a4b0846e674c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.43500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"afad7ba4-f963-409f-a88f-dfff38f903f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.56800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":314073,"end_time":314387,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"84504","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/559","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b05a4425-8468-4b46-9d28-8bcd81775c33","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ca69b6cf-0b35-48d4-8213-09b592a541a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc31ed96-00a6-42a0-98e9-a1e8371ab4fc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.37500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccb8d339-4e4e-4789-8e27-0bf1220baf46","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.24000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf2ee08e-3751-48cc-baf7-42c81a02f91b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.19500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d1b318ab-ca13-43f3-8bd9-8aed935671cf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:20.16200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":312981,"utime":56,"cutime":0,"cstime":0,"stime":38,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7846355-81ec-4aca-b863-6961f3155061","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.11800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":80.980225,"y":1728.9258,"touch_down_time":313856,"touch_up_time":313931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db27611b-0697-44c8-8649-c99ed9b159ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.33100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"df7a13cb-c3b1-4ddc-b929-146343e4de99","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.40200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":303959,"on_next_draw_uptime":304221,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e05dc094-ab15-4266-a5c4-9c99e25ad13a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.74700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":544.9768,"y":1676.8945,"touch_down_time":315493,"touch_up_time":315564},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d375e7-59fb-442d-9f24-63fee9481281","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:17.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":939,"total_pss":78237,"rss":167528,"native_total_heap":34816,"native_free_heap":5582,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e313c5df-8dfe-4039-b4f6-58dc8c2f0b83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.42700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3f4cb4e-4851-450e-b0b0-76051e644e17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.87700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":313946,"end_time":314695,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e455f2de-cfd2-4838-8aff-5d8203885ff7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.78700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e84d6bce-5dc4-4da6-aa50-b16ef2330028","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.12400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f05f7df1-f400-4366-80d0-45df9559347a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:21.69700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5814322-b66c-4919-ab73-0a88d3c557af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:15.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18305,"java_free_heap":1467,"total_pss":76551,"rss":165848,"native_total_heap":34816,"native_free_heap":5676,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f8d433a7-c4b1-4bbb-b377-6a690b908718","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:22.39000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fc9fc8ac-3f79-4b58-b9e9-dc1fa7a74e0e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:12.67400000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":304338,"end_time":305492,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"252","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 08:57:00 GMT","expires":"Mon, 20 May 2024 09:07:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/4","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff5b7f74-29e1-437a-8d8c-0611cfd12294","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:11.56900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":304224,"end_time":304388,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"420","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 08:54:11 GMT","etag":"\"1230862227/70d6bc70-1684-11ef-aff2-28edaf86ebce\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/122","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json index 4f1b26ea1..580ee3a08 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/43105f54-8cd6-4c27-802e-d933732a88ea.json @@ -1 +1 @@ -[{"id":"021c78a8-54be-4887-a8bc-e8e056de741c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09369d2e-543e-403c-a1ad-9a2942d8b697","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.57700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17f4f4b3-abd6-42ad-a0c0-2a5f5c610ddc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.59200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":383408,"end_time":383411,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1cf1e130-a2f4-4c49-bebf-c5f4de68926e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2e03656f-8817-419b-a1ab-0e6724a696a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.56900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":382083,"end_time":382388,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"689","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35abdb5f-3c5d-440c-a4b4-e3a73e709202","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.42700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":384201,"end_time":384246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36513","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20462","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38267275-ee4c-4915-9453-7cdcb9d0e3cc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44b13ad4-6047-4730-8d32-84e85642510f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.58700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45ccce41-bf77-4bcf-b9d8-cd648210feed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.77500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg","method":"get","status_code":200,"start_time":384545,"end_time":384593,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71198","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021_election_08.jpg","content-length":"172710","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:53 GMT","etag":"9f85592a6f70ba00169b82571c7ad580","last-modified":"Sun, 24 Jul 2022 21:43:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/149","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4953ffee-c1d9-4283-88a5-d39908f8321d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.38000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":384151,"end_time":384199,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39531","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21533","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a678663-d6bc-4960-a00c-2fdb97e295d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f6b3fef-af65-4a7c-a473-17773a1fb6de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:27.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20388,"java_free_heap":6112,"total_pss":175258,"rss":260816,"native_total_heap":95744,"native_free_heap":11953,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58228c25-0bf9-4fd2-bb87-bffb481cc6d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.82200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","method":"get","status_code":200,"start_time":384595,"end_time":384641,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71194","content-disposition":"inline;filename*=UTF-8''37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","content-length":"59498","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:57 GMT","etag":"8fbc29e838582f86013c3bb99bfa98fb","last-modified":"Sun, 01 Oct 2023 21:56:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/142","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"59c5d114-8876-4852-92b0-61977462a286","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.92700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg","method":"get","status_code":200,"start_time":384698,"end_time":384746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69643","content-disposition":"inline;filename*=UTF-8''Khamenei_meets_with_Bashar_al-Assad_C.jpeg","content-length":"183199","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:41:49 GMT","etag":"be9bd7ad0fe2ee9176b33cf1ee997f73","last-modified":"Sun, 15 May 2022 07:37:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/230","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e66d874-4e87-4d63-b99b-e699a57199b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.53400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f8664c6-7d68-4b96-a648-7cc239b6ac9d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.52100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":384294,"end_time":384340,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"94831aec963f5737c3fce1ef362eb359","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21208","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.png","content-length":"3943","content-type":"image/png","date":"Mon, 20 May 2024 03:09:03 GMT","etag":"ffc3424f49b0e3719c6bdab8911739e4","last-modified":"Fri, 17 May 2024 23:49:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17089","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60f47dc2-c1fd-47ac-beba-123c9f6dc2d0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.28000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":384052,"end_time":384099,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45527","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21420","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66cc3759-6e3b-45dd-88f6-931f8f4661ee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1417","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69b683b2-d5bc-48fd-9dbc-86a21eea0f28","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","method":"get","status_code":200,"start_time":384441,"end_time":384494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71215","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","content-length":"161893","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:36 GMT","etag":"7cddc5e07bdeda497e95993a27c1bed2","last-modified":"Sat, 29 May 2021 10:29:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/216","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c6b0bc8-cc92-403c-8b88-c49eb735a656","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.61900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png","method":"get","status_code":200,"start_time":384392,"end_time":384438,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"17469","content-disposition":"inline;filename*=UTF-8''Emblem_of_Iran.svg.png","content-length":"15112","content-type":"image/png","date":"Mon, 20 May 2024 04:11:22 GMT","etag":"03ef3337400297b9c49b1d332ada6aff","last-modified":"Fri, 01 Mar 2024 18:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1949","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6cb0b8f7-1e27-4178-9601-aa3c2a2c426b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80a01493-c336-4de2-8d26-35ed87eebc24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":4775,"total_pss":160935,"rss":246696,"native_total_heap":95744,"native_free_heap":11151,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"81450e33-e1ed-42ea-8dc7-61515577a5d5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.72400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","method":"get","status_code":200,"start_time":384497,"end_time":384543,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71203","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","content-length":"67232","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:50 GMT","etag":"277934ed937d3ec33cd1e83b487ffab0","last-modified":"Fri, 19 May 2017 00:15:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/241","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"5vw8pmxm7i4oqy3i0lpg3f3jokegv2v"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84e52641-f8be-4e0d-9660-b911831759ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"853f51e3-361c-4d72-8b27-28c1776e7b12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"87ce5df1-2829-44ae-84bf-fa5e5a0f4fed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.20800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","method":"get","status_code":200,"start_time":383537,"end_time":384027,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:31 GMT","etag":"W/\"1224761876/a536db88-1687-11ef-813f-0a7819745525\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224761876\",\"tid\":\"a536db88-1687-11ef-813f-0a7819745525\",\"items\":[{\"title\":\"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Ebrahim_Raisi_signature.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/128px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/192px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi_in_2021-02_(cropped).jpg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/320px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Emblem_of_Iran.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"leadImage\":false,\"section_id\":6,\"type\":\"image\",\"caption\":{\"html\":\"Raisi in the 1980s\",\"text\":\"Raisi in the 1980s\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/640px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_presidential_campaign_rally_in_Tehran,_29_April_2017_23.jpg\",\"leadImage\":false,\"section_id\":10,\"type\":\"image\",\"caption\":{\"html\":\"Raisi speaking at a presidential campaign rally, 2017\",\"text\":\"Raisi speaking at a presidential campaign rally, 2017\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Raisi_in_2021_election_08.jpg\",\"leadImage\":false,\"section_id\":12,\"type\":\"image\",\"caption\":{\"html\":\"Raisi casting his ballot in the 2021 presidential election\",\"text\":\"Raisi casting his ballot in the 2021 presidential election\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/640px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:37-(Provincial_trips_of_the_president)-سفرهای_استانی_رئیس_جمهور-_قزوین.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\",\"text\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi and other leaders at the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Shanghai_Cooperation_Organisation\\\" title=\\\"Shanghai Cooperation Organisation\\\" id=\\\"mwAZM\\\"\u003eShanghai Cooperation Organisation\u003c/a\u003e summit on 16 September 2022\",\"text\":\"Raisi and other leaders at the Shanghai Cooperation Organisation summit on 16 September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/640px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/960px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Khamenei, Assad and Raisi, May 2022\",\"text\":\"Khamenei, Assad and Raisi, May 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/640px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/960px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"2x\"}]},{\"title\":\"File:Three_leaders_(2022-07-19).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Russian president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Vladimir_Putin\\\" title=\\\"Vladimir Putin\\\" id=\\\"mwAds\\\"\u003eVladimir Putin\u003c/a\u003e and Turkish president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Recep_Tayyip_Erdoğan\\\" title=\\\"Recep Tayyip Erdoğan\\\" id=\\\"mwAdw\\\"\u003eRecep Tayyip Erdoğan\u003c/a\u003e at the Iran–Russia–Turkey summit in Tehran, July 2022\",\"text\":\"Raisi with Russian president Vladimir Putin and Turkish president Recep Tayyip Erdoğan at the Iran–Russia–Turkey summit in Tehran, July 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/640px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/960px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_(2).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Japanese Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Fumio_Kishida\\\" title=\\\"Fumio Kishida\\\" id=\\\"mwAgU\\\"\u003eFumio Kishida\u003c/a\u003e, September 2022\",\"text\":\"Raisi with Japanese Prime Minister Fumio Kishida, September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/640px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/960px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi-Xi_meeting_(2023-02-14).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Chinese president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Xi_Jinping\\\" title=\\\"Xi Jinping\\\" id=\\\"mwAgo\\\"\u003eXi Jinping\u003c/a\u003e in Beijing, during Raisi's state visit to China, February 2023\",\"text\":\"Raisi with Chinese president Xi Jinping in Beijing, during Raisi's state visit to China, February 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran,_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg,_in_South_Africa_on_August_24,_2023_(2).jpg\",\"leadImage\":false,\"section_id\":16,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Indian Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Narendra_Modi\\\" title=\\\"Narendra Modi\\\" id=\\\"mwAmg\\\"\u003eNarendra Modi\u003c/a\u003e during the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./15th_BRICS_summit\\\" title=\\\"15th BRICS summit\\\" id=\\\"mwAmk\\\"\u003e15th BRICS summit\u003c/a\u003e in Johannesburg, South Africa, 24 August 2023\",\"text\":\"Raisi with Indian Prime Minister Narendra Modi during the 15th BRICS summit in Johannesburg, South Africa, 24 August 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/640px-thumbnail.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/960px-thumbnail.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"leadImage\":false,\"section_id\":21,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ilham_Aliyev\\\" title=\\\"Ilham Aliyev\\\" id=\\\"mwArQ\\\"\u003eIlham Aliyev\u003c/a\u003e at the border with Azerbaijan on 19 May 2024, hours before his death\",\"text\":\"Raisi with Ilham Aliyev at the border with Azerbaijan on 19 May 2024, hours before his death\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/640px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/960px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa186f4-ac25-4709-a9b0-d7f4c2cb75eb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.32900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":384102,"end_time":384148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38622","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11212","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"973fd965-02f1-47d0-82d9-027b21dc1099","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":3804,"total_pss":145998,"rss":232864,"native_total_heap":95744,"native_free_heap":14920,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99635b43-f7ff-4900-98d8-743047e88510","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b2b0d2d-2c7b-4e54-9d5e-510d8fbd8c93","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a577f80f-4f96-4f75-9768-872fab94ba7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.76700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383538,"end_time":383586,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"10","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7530431-27b6-4282-9e41-683106e984a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.57200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":384344,"end_time":384391,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"48942","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021-02_%28cropped%29.jpg","content-length":"49899","content-type":"image/jpeg","date":"Sun, 19 May 2024 19:26:49 GMT","etag":"47f76dad0be9bdc2d133716968f7005b","last-modified":"Fri, 22 Apr 2022 03:16:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a9b4d180-3fca-40cb-b677-e18333092f74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":381976,"utime":801,"cutime":0,"cstime":0,"stime":750,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab43b166-d815-44e5-a4f8-0931913f8361","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.71400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383479,"end_time":383533,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"8","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aea34879-1b49-4223-ab87-19e3c9195c3c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b663565c-965f-4041-aa40-d0c4c9df9653","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.30400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_save","width":216,"height":189,"x":165.98145,"y":1733.9062,"touch_down_time":381003,"touch_up_time":381119},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b6dc2522-0bdf-44e6-841f-950a3662e61d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba2c8ffd-7dc0-4c86-b11a-dc22116cc8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0917667-9d2d-4e7f-82bf-0f8c4871dd31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.97800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg","method":"get","status_code":200,"start_time":384747,"end_time":384797,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"67278","content-disposition":"inline;filename*=UTF-8''Three_leaders_%282022-07-19%29.jpg","content-length":"230877","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:21:13 GMT","etag":"91dd534ecb00b59016e621eeba084357","last-modified":"Wed, 11 Oct 2023 09:48:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/206","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf79aee0-6463-40ad-8a6e-1cea2314db65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.60100000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":383334,"on_next_draw_uptime":383420,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d06bf33d-7b11-4c86-bcd5-166ea18517f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.47300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":304,"start_time":384249,"end_time":384292,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"0b13c7dd73094c814c22e7730ab6cac2","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9410","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/246","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7d9fd34-3d2b-49c2-9d13-5926de6c4db6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d92430-b57e-4e3a-af70-7675d8d1c555","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.87700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","method":"get","status_code":200,"start_time":384643,"end_time":384696,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62780","content-disposition":"inline;filename*=UTF-8''Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","content-length":"216176","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:11 GMT","etag":"d4494b80147cf7edea8532b993d60e14","last-modified":"Sun, 05 Feb 2023 00:50:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/170","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3cf04ff-b4d9-43c8-9d6e-2ea0f27b3835","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1769","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ef7b3982-142a-42ca-b292-13cf4f758ebc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":383347,"utime":808,"cutime":0,"cstime":0,"stime":751,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f08dd3f0-e669-4516-bf31-706f9193a572","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":383714,"end_time":383764,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"216","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/110","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6b5ace3-254e-4c51-836a-16fa788fb7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6f2e76f-a189-4869-9f13-e68ff368b283","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.64800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Ebrahim_Raisi","method":"get","status_code":200,"start_time":381130,"end_time":381466,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"765","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-drrqp","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Ebrahim_Raisi\",\"to\":\"Ebrahim Raisi\"}],\"pages\":[{\"pageid\":49679283,\"ns\":0,\"title\":\"Ebrahim Raisi\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T09:02:12Z\",\"lastrevid\":1224761876,\"length\":116131,\"displaytitle\":\"Ebrahim Raisi\",\"varianttitles\":{\"en\":\"Ebrahim Raisi\"},\"description\":\"8th President of Iran from 2021 to 2024\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"pageimage\":\"Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf8e585-8f99-4dd8-92fc-5b9b0547e0f5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.51400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff80c9cc-4f59-49a3-a778-11d545a8e258","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"021c78a8-54be-4887-a8bc-e8e056de741c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09369d2e-543e-403c-a1ad-9a2942d8b697","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.57700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17f4f4b3-abd6-42ad-a0c0-2a5f5c610ddc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.59200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":383408,"end_time":383411,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1cf1e130-a2f4-4c49-bebf-c5f4de68926e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2e03656f-8817-419b-a1ab-0e6724a696a4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.56900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":382083,"end_time":382388,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"689","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35abdb5f-3c5d-440c-a4b4-e3a73e709202","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.42700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":384201,"end_time":384246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36513","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20462","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"38267275-ee4c-4915-9453-7cdcb9d0e3cc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44b13ad4-6047-4730-8d32-84e85642510f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.58700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45ccce41-bf77-4bcf-b9d8-cd648210feed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.77500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg","method":"get","status_code":200,"start_time":384545,"end_time":384593,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71198","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021_election_08.jpg","content-length":"172710","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:53 GMT","etag":"9f85592a6f70ba00169b82571c7ad580","last-modified":"Sun, 24 Jul 2022 21:43:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/149","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4953ffee-c1d9-4283-88a5-d39908f8321d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.38000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":384151,"end_time":384199,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39531","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21533","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4a678663-d6bc-4960-a00c-2fdb97e295d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f6b3fef-af65-4a7c-a473-17773a1fb6de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:27.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20388,"java_free_heap":6112,"total_pss":175258,"rss":260816,"native_total_heap":95744,"native_free_heap":11953,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58228c25-0bf9-4fd2-bb87-bffb481cc6d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.82200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","method":"get","status_code":200,"start_time":384595,"end_time":384641,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71194","content-disposition":"inline;filename*=UTF-8''37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg","content-length":"59498","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:57 GMT","etag":"8fbc29e838582f86013c3bb99bfa98fb","last-modified":"Sun, 01 Oct 2023 21:56:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/142","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"59c5d114-8876-4852-92b0-61977462a286","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.92700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg","method":"get","status_code":200,"start_time":384698,"end_time":384746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69643","content-disposition":"inline;filename*=UTF-8''Khamenei_meets_with_Bashar_al-Assad_C.jpeg","content-length":"183199","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:41:49 GMT","etag":"be9bd7ad0fe2ee9176b33cf1ee997f73","last-modified":"Sun, 15 May 2022 07:37:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/230","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e66d874-4e87-4d63-b99b-e699a57199b5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.53400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5f8664c6-7d68-4b96-a648-7cc239b6ac9d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.52100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png","method":"get","status_code":200,"start_time":384294,"end_time":384340,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"94831aec963f5737c3fce1ef362eb359","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21208","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_signature.svg.png","content-length":"3943","content-type":"image/png","date":"Mon, 20 May 2024 03:09:03 GMT","etag":"ffc3424f49b0e3719c6bdab8911739e4","last-modified":"Fri, 17 May 2024 23:49:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17089","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"60f47dc2-c1fd-47ac-beba-123c9f6dc2d0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.28000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":384052,"end_time":384099,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45527","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21420","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66cc3759-6e3b-45dd-88f6-931f8f4661ee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1417","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"69b683b2-d5bc-48fd-9dbc-86a21eea0f28","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","method":"get","status_code":200,"start_time":384441,"end_time":384494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71215","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg","content-length":"161893","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:36 GMT","etag":"7cddc5e07bdeda497e95993a27c1bed2","last-modified":"Sat, 29 May 2021 10:29:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/216","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c6b0bc8-cc92-403c-8b88-c49eb735a656","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.61900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png","method":"get","status_code":200,"start_time":384392,"end_time":384438,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"17469","content-disposition":"inline;filename*=UTF-8''Emblem_of_Iran.svg.png","content-length":"15112","content-type":"image/png","date":"Mon, 20 May 2024 04:11:22 GMT","etag":"03ef3337400297b9c49b1d332ada6aff","last-modified":"Fri, 01 Mar 2024 18:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1949","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6cb0b8f7-1e27-4178-9601-aa3c2a2c426b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80a01493-c336-4de2-8d26-35ed87eebc24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":4775,"total_pss":160935,"rss":246696,"native_total_heap":95744,"native_free_heap":11151,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"81450e33-e1ed-42ea-8dc7-61515577a5d5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.72400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","method":"get","status_code":200,"start_time":384497,"end_time":384543,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71203","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg","content-length":"67232","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:15:50 GMT","etag":"277934ed937d3ec33cd1e83b487ffab0","last-modified":"Fri, 19 May 2017 00:15:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/241","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"5vw8pmxm7i4oqy3i0lpg3f3jokegv2v"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"84e52641-f8be-4e0d-9660-b911831759ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"853f51e3-361c-4d72-8b27-28c1776e7b12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"87ce5df1-2829-44ae-84bf-fa5e5a0f4fed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.20800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","method":"get","status_code":200,"start_time":383537,"end_time":384027,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Ebrahim_Raisi/1224761876","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:31 GMT","etag":"W/\"1224761876/a536db88-1687-11ef-813f-0a7819745525\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224761876\",\"tid\":\"a536db88-1687-11ef-813f-0a7819745525\",\"items\":[{\"title\":\"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Ebrahim_Raisi_signature.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/128px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/192px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Ebrahim_Raisi_signature.svg/256px-Ebrahim_Raisi_signature.svg.png\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi_in_2021-02_(cropped).jpg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/320px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Emblem_of_Iran.svg\",\"leadImage\":false,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/480px-Emblem_of_Iran.svg.png\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"leadImage\":false,\"section_id\":6,\"type\":\"image\",\"caption\":{\"html\":\"Raisi in the 1980s\",\"text\":\"Raisi in the 1980s\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/640px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg/960px-Ebrahim_Raisi_in_Iran-Iraq_war_era.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Ebrahim_Raisi_presidential_campaign_rally_in_Tehran,_29_April_2017_23.jpg\",\"leadImage\":false,\"section_id\":10,\"type\":\"image\",\"caption\":{\"html\":\"Raisi speaking at a presidential campaign rally, 2017\",\"text\":\"Raisi speaking at a presidential campaign rally, 2017\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg/640px-Ebrahim_Raisi_presidential_campaign_rally_in_Tehran%2C_29_April_2017_23.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Raisi_in_2021_election_08.jpg\",\"leadImage\":false,\"section_id\":12,\"type\":\"image\",\"caption\":{\"html\":\"Raisi casting his ballot in the 2021 presidential election\",\"text\":\"Raisi casting his ballot in the 2021 presidential election\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/640px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Raisi_in_2021_election_08.jpg/960px-Raisi_in_2021_election_08.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:37-(Provincial_trips_of_the_president)-سفرهای_استانی_رئیس_جمهور-_قزوین.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\",\"text\":\"Raisi wearing a mask during the COVID-19 pandemic, 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg/640px-37-%28Provincial_trips_of_the_president%29-%D8%B3%D9%81%D8%B1%D9%87%D8%A7%DB%8C_%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C_%D8%B1%D8%A6%DB%8C%D8%B3_%D8%AC%D9%85%D9%87%D9%88%D8%B1-_%D9%82%D8%B2%D9%88%DB%8C%D9%86.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"leadImage\":false,\"section_id\":13,\"type\":\"image\",\"caption\":{\"html\":\"Raisi and other leaders at the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Shanghai_Cooperation_Organisation\\\" title=\\\"Shanghai Cooperation Organisation\\\" id=\\\"mwAZM\\\"\u003eShanghai Cooperation Organisation\u003c/a\u003e summit on 16 September 2022\",\"text\":\"Raisi and other leaders at the Shanghai Cooperation Organisation summit on 16 September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/640px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/960px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Khamenei, Assad and Raisi, May 2022\",\"text\":\"Khamenei, Assad and Raisi, May 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/640px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/960px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Khamenei_meets_with_Bashar_al-Assad_C.jpeg/1280px-Khamenei_meets_with_Bashar_al-Assad_C.jpeg\",\"scale\":\"2x\"}]},{\"title\":\"File:Three_leaders_(2022-07-19).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Russian president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Vladimir_Putin\\\" title=\\\"Vladimir Putin\\\" id=\\\"mwAds\\\"\u003eVladimir Putin\u003c/a\u003e and Turkish president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Recep_Tayyip_Erdoğan\\\" title=\\\"Recep Tayyip Erdoğan\\\" id=\\\"mwAdw\\\"\u003eRecep Tayyip Erdoğan\u003c/a\u003e at the Iran–Russia–Turkey summit in Tehran, July 2022\",\"text\":\"Raisi with Russian president Vladimir Putin and Turkish president Recep Tayyip Erdoğan at the Iran–Russia–Turkey summit in Tehran, July 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/640px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/960px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_(2).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Japanese Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Fumio_Kishida\\\" title=\\\"Fumio Kishida\\\" id=\\\"mwAgU\\\"\u003eFumio Kishida\u003c/a\u003e, September 2022\",\"text\":\"Raisi with Japanese Prime Minister Fumio Kishida, September 2022\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/640px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/960px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg/1280px-Fumio_Kishida_and_Ebrahim_Raisi_at_the_2022_UNGA_%282%29.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Raisi-Xi_meeting_(2023-02-14).jpg\",\"leadImage\":false,\"section_id\":14,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Chinese president \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Xi_Jinping\\\" title=\\\"Xi Jinping\\\" id=\\\"mwAgo\\\"\u003eXi Jinping\u003c/a\u003e in Beijing, during Raisi's state visit to China, February 2023\",\"text\":\"Raisi with Chinese president Xi Jinping in Beijing, during Raisi's state visit to China, February 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Raisi-Xi_meeting_%282023-02-14%29.jpg/640px-Raisi-Xi_meeting_%282023-02-14%29.jpg\",\"scale\":\"1x\"}]},{\"title\":\"File:PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran,_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg,_in_South_Africa_on_August_24,_2023_(2).jpg\",\"leadImage\":false,\"section_id\":16,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with Indian Prime Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Narendra_Modi\\\" title=\\\"Narendra Modi\\\" id=\\\"mwAmg\\\"\u003eNarendra Modi\u003c/a\u003e during the \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./15th_BRICS_summit\\\" title=\\\"15th BRICS summit\\\" id=\\\"mwAmk\\\"\u003e15th BRICS summit\u003c/a\u003e in Johannesburg, South Africa, 24 August 2023\",\"text\":\"Raisi with Indian Prime Minister Narendra Modi during the 15th BRICS summit in Johannesburg, South Africa, 24 August 2023\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/640px-thumbnail.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/960px-thumbnail.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%282%29.jpg/1280px-thumbnail.jpg\",\"scale\":\"2x\"}]},{\"title\":\"File:Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"leadImage\":false,\"section_id\":21,\"type\":\"image\",\"caption\":{\"html\":\"Raisi with \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ilham_Aliyev\\\" title=\\\"Ilham Aliyev\\\" id=\\\"mwArQ\\\"\u003eIlham Aliyev\u003c/a\u003e at the border with Azerbaijan on 19 May 2024, hours before his death\",\"text\":\"Raisi with Ilham Aliyev at the border with Azerbaijan on 19 May 2024, hours before his death\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/640px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/960px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg/1280px-Ilham_Aliyev_and_President_Seyyed_Ebrahim_Raisi_met_at_the_Azerbaijan-Iran_state_border_-_02.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa186f4-ac25-4709-a9b0-d7f4c2cb75eb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.32900000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":384102,"end_time":384148,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38622","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11212","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"973fd965-02f1-47d0-82d9-027b21dc1099","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20386,"java_free_heap":3804,"total_pss":145998,"rss":232864,"native_total_heap":95744,"native_free_heap":14920,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99635b43-f7ff-4900-98d8-743047e88510","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.56500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b2b0d2d-2c7b-4e54-9d5e-510d8fbd8c93","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a577f80f-4f96-4f75-9768-872fab94ba7c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.76700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383538,"end_time":383586,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"10","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Ebrahim_Raisi","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a950de20-1687-11ef-9596-abd45730e5e8\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2034","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7530431-27b6-4282-9e41-683106e984a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.57200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Raisi_in_2021-02_%28cropped%29.jpg/480px-Raisi_in_2021-02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":384344,"end_time":384391,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"48942","content-disposition":"inline;filename*=UTF-8''Raisi_in_2021-02_%28cropped%29.jpg","content-length":"49899","content-type":"image/jpeg","date":"Sun, 19 May 2024 19:26:49 GMT","etag":"47f76dad0be9bdc2d133716968f7005b","last-modified":"Fri, 22 Apr 2022 03:16:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a9b4d180-3fca-40cb-b677-e18333092f74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":381976,"utime":801,"cutime":0,"cstime":0,"stime":750,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ab43b166-d815-44e5-a4f8-0931913f8361","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.71400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","method":"get","status_code":304,"start_time":383479,"end_time":383533,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"8","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Ebrahim_Raisi","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:02:22 GMT","etag":"W/\"1224761876/a937fef0-1687-11ef-8888-218df626bcdf\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2022","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Ebrahim Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aea34879-1b49-4223-ab87-19e3c9195c3c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b663565c-965f-4041-aa40-d0c4c9df9653","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.30400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_save","width":216,"height":189,"x":165.98145,"y":1733.9062,"touch_down_time":381003,"touch_up_time":381119},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b6dc2522-0bdf-44e6-841f-950a3662e61d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.59700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ba2c8ffd-7dc0-4c86-b11a-dc22116cc8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0917667-9d2d-4e7f-82bf-0f8c4871dd31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.97800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Three_leaders_%282022-07-19%29.jpg/1280px-Three_leaders_%282022-07-19%29.jpg","method":"get","status_code":200,"start_time":384747,"end_time":384797,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"67278","content-disposition":"inline;filename*=UTF-8''Three_leaders_%282022-07-19%29.jpg","content-length":"230877","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:21:13 GMT","etag":"91dd534ecb00b59016e621eeba084357","last-modified":"Wed, 11 Oct 2023 09:48:22 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/206","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cf79aee0-6463-40ad-8a6e-1cea2314db65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.60100000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":383334,"on_next_draw_uptime":383420,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d06bf33d-7b11-4c86-bcd5-166ea18517f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.47300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/640px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":304,"start_time":384249,"end_time":384292,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"0b13c7dd73094c814c22e7730ab6cac2","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9410","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:41 GMT","etag":"0b13c7dd73094c814c22e7730ab6cac2","last-modified":"Mon, 20 May 2024 06:22:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/246","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7d9fd34-3d2b-49c2-9d13-5926de6c4db6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1d92430-b57e-4e3a-af70-7675d8d1c555","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:31.87700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg/1280px-Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","method":"get","status_code":200,"start_time":384643,"end_time":384696,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Ebrahim_Raisi","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"62780","content-disposition":"inline;filename*=UTF-8''Shanghai_Cooperation_Organization_member_states_Summit_gets_underway_in_Samarkand_02.jpg","content-length":"216176","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:36:11 GMT","etag":"d4494b80147cf7edea8532b993d60e14","last-modified":"Sun, 05 Feb 2023 00:50:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/170","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e3cf04ff-b4d9-43c8-9d6e-2ea0f27b3835","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:29.26400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":381807,"end_time":382083,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1769","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ef7b3982-142a-42ca-b292-13cf4f758ebc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.52800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":383347,"utime":808,"cutime":0,"cstime":0,"stime":751,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f08dd3f0-e669-4516-bf31-706f9193a572","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":383714,"end_time":383764,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"216","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/110","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6b5ace3-254e-4c51-836a-16fa788fb7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6f2e76f-a189-4869-9f13-e68ff368b283","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.64800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Ebrahim_Raisi","method":"get","status_code":200,"start_time":381130,"end_time":381466,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"765","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-drrqp","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Ebrahim_Raisi\",\"to\":\"Ebrahim Raisi\"}],\"pages\":[{\"pageid\":49679283,\"ns\":0,\"title\":\"Ebrahim Raisi\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T09:02:12Z\",\"lastrevid\":1224761876,\"length\":116131,\"displaytitle\":\"Ebrahim Raisi\",\"varianttitles\":{\"en\":\"Ebrahim Raisi\"},\"description\":\"8th President of Iran from 2021 to 2024\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"pageimage\":\"Ebrahim_Raisi_(19.05.2024)_(cropped).jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf8e585-8f99-4dd8-92fc-5b9b0547e0f5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:30.51400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ff80c9cc-4f59-49a3-a778-11d545a8e258","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:28.99400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json index 458d50626..3190b6152 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/4a9a1f14-f4e1-4e3d-93cd-d51dfdb0a53d.json @@ -1 +1 @@ -[{"id":"05309710-52b8-47b9-b6ec-9bd1b8fce852","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.23200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":334742,"end_time":335051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"680","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07b299dc-14a9-40d4-9a93-36052a1f6cd0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.72300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":331214,"end_time":331542,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1099","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"082c90c4-02c9-4f8d-b0a1-42457d8c0cc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.99400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","method":"get","status_code":200,"start_time":334765,"end_time":334813,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1560","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"567","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 08:35:43 GMT","etag":"W/\"1223300368/d478ad20-1683-11ef-9910-f760628c90d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2026","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/15","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"mainpage\",\"title\":\"Main Page\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5296\",\"titles\":{\"canonical\":\"Main_Page\",\"normalized\":\"Main Page\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\"},\"pageid\":15580374,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg\",\"width\":320,\"height\":340},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/94/City_Building_Champaign_Illinois_from_west.jpg\",\"width\":1978,\"height\":2101},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223300368\",\"tid\":\"145d41bc-0f57-11ef-a9c9-a032e13c4746\",\"timestamp\":\"2024-05-11T05:26:55Z\",\"description\":\"Main page of the English Wikipedia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.wikipedia.org/wiki/Main_Page?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Main_Page\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Main_Page\",\"edit\":\"https://en.m.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Main_Page\"}},\"extract\":\"\",\"extract_html\":\"\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d36c64b-a7c5-449e-ac25-6962713bd1c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.21600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"121cd5c8-6a5f-4293-a1b1-e8e407c8b732","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14fcd973-0fe2-408d-aefd-b9bb9357e054","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.content.styles.images\u0026image=a.external%2C+.mw-parser-output+a.external\u0026variant=reference\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=1p40b","method":"get","status_code":200,"start_time":335142,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''a.external%2C%20.mw-parser-output%20a.external.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:01:45 GMT","etag":"W/\"1p40b\"","expires":"Wed, 19 Jun 2024 06:01:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/197658","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1910ea56-4b63-4e09-b199-118043db659b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.31900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329870,"end_time":330138,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1456","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ea7aaa2-77ea-4da9-afaa-6d1af2a3b93b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=site.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334945,"end_time":335006,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"611","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:45 GMT","etag":"W/\"1azmd\"","expires":"Mon, 20 May 2024 09:02:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/9073","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21960b02-421a-48c6-b4e0-c49e09151aa0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f55694b-7282-4793-8c98-746e84514c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":330976,"utime":283,"cutime":0,"cstime":0,"stime":208,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"335f06ac-bb17-4f33-843a-0cbe282fe868","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36572a0d-1cac-47c5-ad10-3ca060a88288","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52000000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg","method":"get","status_code":200,"start_time":335006,"end_time":335339,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"52463","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"2604","content-type":"image/svg+xml","date":"Sun, 19 May 2024 18:27:19 GMT","etag":"W/\"181a-617c8293c9c40\"","expires":"Mon, 19 May 2025 18:27:18 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/924609","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fa941f6-efd9-403f-874b-b0168c1b23e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=home\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335246,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''home.svg","content-encoding":"gzip","content-length":"222","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:18:11 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:18:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/115579","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42aad87c-be8f-4874-a889-113cb0e26041","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.17600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334939,"end_time":334995,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"15016","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:32 GMT","etag":"W/\"orl5c\"","expires":"Mon, 20 May 2024 08:57:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/267","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45f8ff68-ddf9-43fd-bae0-3307bf96c764","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":333976,"utime":302,"cutime":0,"cstime":0,"stime":240,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"563e2b19-73fb-4416-83c4-ae19bf77292f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.37100000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":153.98438,"touch_down_time":331101,"touch_up_time":331188},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56b79cb3-292f-437e-849d-ec1fbd3c26f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026version=tablv","method":"get","status_code":200,"start_time":335102,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"4803","content-type":"text/javascript; charset=utf-8","date":"Sun, 19 May 2024 22:39:42 GMT","etag":"W/\"tablv\"","expires":"Tue, 18 Jun 2024 22:39:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026sourcemap=1\u0026version=tablv","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/328385","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1f82eb-8381-4d6b-8bcc-f7307939bcd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"602eaceb-b65b-4a98-bd26-ea91cce1a5dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17571,"java_free_heap":5215,"total_pss":141967,"rss":238912,"native_total_heap":73728,"native_free_heap":6892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6923a082-5baf-484f-9e5b-46ce017f9a1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"73304fef-2c85-4491-8030-fd2cc9bdf2b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.23200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77d1f7bb-edcb-416f-9b4b-ce110d2fcde7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78b60a4b-90bc-4bbc-95a6-29177131d713","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.90700000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":85.98999,"y":144.96094,"touch_down_time":334629,"touch_up_time":334721},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa8bdfd-150c-4c4f-a102-694ab7d92ff5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17420,"java_free_heap":5018,"total_pss":140499,"rss":241152,"native_total_heap":70656,"native_free_heap":7082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b13e025-c385-47f0-b7d8-0cc78e62da7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.40200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a407dce5-1d30-4c85-8ede-0aa1d5f428aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4758f95-d02b-4c9d-b908-9822600f51c7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17585,"java_free_heap":5908,"total_pss":138650,"rss":236184,"native_total_heap":70656,"native_free_heap":7607,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdcc50f-e9d5-473a-a43e-5728da349458","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3c126cb-3fe8-44b4-889f-674a035f01c2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330241,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"714","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b4c7c272-c195-47ec-9c95-60ee43e174a0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=logIn\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335159,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''logIn.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:00:20 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:00:20 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/201325","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b94073ae-5791-4c48-86e7-a1d854ba640d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=search\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335151,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''search.svg","content-encoding":"gzip","content-length":"220","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:02:32 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 07:02:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/132479","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bbace32b-c315-4859-9989-e8043efd0cd1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.39400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":329933,"end_time":330213,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:30 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c47237ee-8496-42c6-8325-187f84482e0a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c480535c-f9ee-452e-908d-201968fee00f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.12200000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/wiki/Main_Page","method":"get","status_code":200,"start_time":334766,"end_time":334941,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.m.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"2392","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-language":"en","content-length":"25070","content-type":"text/html; charset=UTF-8","date":"Mon, 20 May 2024 08:21:51 GMT","last-modified":"Mon, 20 May 2024 08:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","origin-trial":"AonOP4SwCrqpb0nhZbg554z9iJimP3DxUDB8V4yu9fyyepauGKD0NXqTknWi4gnuDfMG6hNb7TDUDTsl0mDw9gIAAABmeyJvcmlnaW4iOiJodHRwczovL3dpa2lwZWRpYS5vcmc6NDQzIiwiZmVhdHVyZSI6IlRvcExldmVsVHBjZCIsImV4cGlyeSI6MTczNTM0Mzk5OSwiaXNTdWJkb21haW4iOnRydWV9","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2393.codfw.wmnet","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-DP=abd;Path=/;HttpOnly;secure;Expires=Mon, 20 May 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/3507","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c56b2d8d-7f9d-4482-9989-9a880afcc44b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc8b8974-e78a-4293-a34e-0ae4f4257957","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.57000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":862.9651,"y":153.98438,"touch_down_time":330290,"touch_up_time":330386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da31a943-caeb-412d-b66d-a84b077928ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg/242px-thumbnail.jpg","method":"get","status_code":200,"start_time":335052,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"40905","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg.webp","content-length":"18666","content-type":"image/webp","date":"Sun, 19 May 2024 21:39:56 GMT","etag":"318f1f62d392bd01f0c92aefd684c273","last-modified":"Sun, 19 May 2024 21:38:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25077","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da570f0b-4c82-4d7b-8fc5-328e6ca92bf5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.16900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":895.95703,"y":177.94922,"touch_down_time":331879,"touch_up_time":331981},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dcc2a5a5-159f-4c76-aae2-46ced28a0c5a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332344,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"352","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"de315a38-ac75-4f89-8414-b55d8dd9289d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=die\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335247,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''die.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:49:32 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:49:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/147101","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1e99acc-db90-4c71-9d08-fa0472699eee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5249a22-2c90-4c12-8d2e-c482af6e832b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=heart\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335251,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''heart.svg","content-encoding":"gzip","content-length":"230","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:33:00 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:33:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/98414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e60e744a-77f4-4735-b8b3-ec45cc2f80e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e6487deb-1c1e-4235-8394-58153dfa0100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/242px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":335007,"end_time":335340,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32279","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg.webp","content-length":"13362","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:43 GMT","etag":"116366c8c04da3c0d12ec01f8807a2ce","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22901","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7f97e8d-dddc-48e9-af6d-d2a835677ea7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.93200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8e81598-f1c6-48b0-a6e7-b5d1d970fc51","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026raw=1\u0026skin=minerva","method":"get","status_code":200,"start_time":334943,"end_time":335005,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"19691","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 09:01:07 GMT","etag":"W/\"5s31n\"","expires":"Mon, 20 May 2024 09:06:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=5s31n","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1731","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8f4471d-6d28-4b19-86fe-0939cdef277c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb2cbe0a-4a48-436b-80c1-4ed7da7264e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332345,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"edcc401e-299d-4a53-8e31-0f17f1d24aee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg/264px-Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg","method":"get","status_code":200,"start_time":335008,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32236","content-disposition":"inline;filename*=UTF-8''Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg.webp","content-length":"21622","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:27 GMT","etag":"2ffb37c0522c5b4bb8c48a776bcd0499","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/23045","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fffaf829-e771-4c4e-bc90-537097ff3f94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"05309710-52b8-47b9-b6ec-9bd1b8fce852","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.23200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":334742,"end_time":335051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"680","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07b299dc-14a9-40d4-9a93-36052a1f6cd0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.72300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":331214,"end_time":331542,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1099","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"082c90c4-02c9-4f8d-b0a1-42457d8c0cc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.99400000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","method":"get","status_code":200,"start_time":334765,"end_time":334813,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1560","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"567","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Main_Page","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 08:35:43 GMT","etag":"W/\"1223300368/d478ad20-1683-11ef-9910-f760628c90d5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2026","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/15","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"mainpage\",\"title\":\"Main Page\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5296\",\"titles\":{\"canonical\":\"Main_Page\",\"normalized\":\"Main Page\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMain Page\u003c/span\u003e\"},\"pageid\":15580374,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg\",\"width\":320,\"height\":340},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/94/City_Building_Champaign_Illinois_from_west.jpg\",\"width\":1978,\"height\":2101},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223300368\",\"tid\":\"145d41bc-0f57-11ef-a9c9-a032e13c4746\",\"timestamp\":\"2024-05-11T05:26:55Z\",\"description\":\"Main page of the English Wikipedia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.wikipedia.org/wiki/Main_Page?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Main_Page\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Main_Page\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Main_Page\",\"edit\":\"https://en.m.wikipedia.org/wiki/Main_Page?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Main_Page\"}},\"extract\":\"\",\"extract_html\":\"\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d36c64b-a7c5-449e-ac25-6962713bd1c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.21600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"121cd5c8-6a5f-4293-a1b1-e8e407c8b732","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14fcd973-0fe2-408d-aefd-b9bb9357e054","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.content.styles.images\u0026image=a.external%2C+.mw-parser-output+a.external\u0026variant=reference\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=1p40b","method":"get","status_code":200,"start_time":335142,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''a.external%2C%20.mw-parser-output%20a.external.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:01:45 GMT","etag":"W/\"1p40b\"","expires":"Wed, 19 Jun 2024 06:01:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/197658","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1910ea56-4b63-4e09-b199-118043db659b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.31900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329870,"end_time":330138,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1456","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ea7aaa2-77ea-4da9-afaa-6d1af2a3b93b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=site.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334945,"end_time":335006,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"611","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:45 GMT","etag":"W/\"1azmd\"","expires":"Mon, 20 May 2024 09:02:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/9073","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21960b02-421a-48c6-b4e0-c49e09151aa0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f55694b-7282-4793-8c98-746e84514c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":330976,"utime":283,"cutime":0,"cstime":0,"stime":208,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"335f06ac-bb17-4f33-843a-0cbe282fe868","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36572a0d-1cac-47c5-ad10-3ca060a88288","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52000000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg","method":"get","status_code":200,"start_time":335006,"end_time":335339,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"52463","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"2604","content-type":"image/svg+xml","date":"Sun, 19 May 2024 18:27:19 GMT","etag":"W/\"181a-617c8293c9c40\"","expires":"Mon, 19 May 2025 18:27:18 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/924609","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fa941f6-efd9-403f-874b-b0168c1b23e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=home\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335246,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''home.svg","content-encoding":"gzip","content-length":"222","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:18:11 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:18:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/115579","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42aad87c-be8f-4874-a889-113cb0e26041","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.17600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","method":"get","status_code":200,"start_time":334939,"end_time":334995,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"15016","content-type":"text/css; charset=utf-8","date":"Mon, 20 May 2024 08:57:32 GMT","etag":"W/\"orl5c\"","expires":"Mon, 20 May 2024 08:57:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/267","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"45f8ff68-ddf9-43fd-bae0-3307bf96c764","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":333976,"utime":302,"cutime":0,"cstime":0,"stime":240,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"563e2b19-73fb-4416-83c4-ae19bf77292f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.37100000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":153.98438,"touch_down_time":331101,"touch_up_time":331188},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"56b79cb3-292f-437e-849d-ec1fbd3c26f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52300000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026version=tablv","method":"get","status_code":200,"start_time":335102,"end_time":335342,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"4803","content-type":"text/javascript; charset=utf-8","date":"Sun, 19 May 2024 22:39:42 GMT","etag":"W/\"tablv\"","expires":"Tue, 18 Jun 2024 22:39:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.gadget.EditNoticesOnMobile%2Cswitcher\u0026skin=minerva\u0026sourcemap=1\u0026version=tablv","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/328385","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a1f82eb-8381-4d6b-8bcc-f7307939bcd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"602eaceb-b65b-4a98-bd26-ea91cce1a5dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17571,"java_free_heap":5215,"total_pss":141967,"rss":238912,"native_total_heap":73728,"native_free_heap":6892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6923a082-5baf-484f-9e5b-46ce017f9a1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"73304fef-2c85-4491-8030-fd2cc9bdf2b2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.23200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"77d1f7bb-edcb-416f-9b4b-ce110d2fcde7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78b60a4b-90bc-4bbc-95a6-29177131d713","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.90700000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":85.98999,"y":144.96094,"touch_down_time":334629,"touch_up_time":334721},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fa8bdfd-150c-4c4f-a102-694ab7d92ff5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17420,"java_free_heap":5018,"total_pss":140499,"rss":241152,"native_total_heap":70656,"native_free_heap":7082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9b13e025-c385-47f0-b7d8-0cc78e62da7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.40200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a407dce5-1d30-4c85-8ede-0aa1d5f428aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a4758f95-d02b-4c9d-b908-9822600f51c7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17585,"java_free_heap":5908,"total_pss":138650,"rss":236184,"native_total_heap":70656,"native_free_heap":7607,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdcc50f-e9d5-473a-a43e-5728da349458","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3c126cb-3fe8-44b4-889f-674a035f01c2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.42200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":329873,"end_time":330241,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"714","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b4c7c272-c195-47ec-9c95-60ee43e174a0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=logIn\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335159,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''logIn.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:00:20 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:00:20 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/201325","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b94073ae-5791-4c48-86e7-a1d854ba640d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52400000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=search\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335151,"end_time":335343,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''search.svg","content-encoding":"gzip","content-length":"220","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:02:32 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 07:02:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/132479","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bbace32b-c315-4859-9989-e8043efd0cd1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.39400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":329933,"end_time":330213,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-modified-since":"Mon, 20 May 2024 09:01:30 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:37 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c47237ee-8496-42c6-8325-187f84482e0a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c480535c-f9ee-452e-908d-201968fee00f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.12200000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/wiki/Main_Page","method":"get","status_code":200,"start_time":334766,"end_time":334941,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.m.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"2392","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-language":"en","content-length":"25070","content-type":"text/html; charset=UTF-8","date":"Mon, 20 May 2024 08:21:51 GMT","last-modified":"Mon, 20 May 2024 08:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","origin-trial":"AonOP4SwCrqpb0nhZbg554z9iJimP3DxUDB8V4yu9fyyepauGKD0NXqTknWi4gnuDfMG6hNb7TDUDTsl0mDw9gIAAABmeyJvcmlnaW4iOiJodHRwczovL3dpa2lwZWRpYS5vcmc6NDQzIiwiZmVhdHVyZSI6IlRvcExldmVsVHBjZCIsImV4cGlyeSI6MTczNTM0Mzk5OSwiaXNTdWJkb21haW4iOnRydWV9","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2393.codfw.wmnet","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-DP=abd;Path=/;HttpOnly;secure;Expires=Mon, 20 May 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/3507","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c56b2d8d-7f9d-4482-9989-9a880afcc44b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.20300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc8b8974-e78a-4293-a34e-0ae4f4257957","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.57000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":862.9651,"y":153.98438,"touch_down_time":330290,"touch_up_time":330386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da31a943-caeb-412d-b66d-a84b077928ef","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg/242px-thumbnail.jpg","method":"get","status_code":200,"start_time":335052,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"40905","content-disposition":"inline;filename*=UTF-8''PM_in_a_bilateral_meeting_with_the_President_of_the_Islamic_Republic_of_Iran%2C_Dr._Seyyed_Ebrahim_Raisi_during_the_15th_BRICS_Summit_at_Johannesburg%2C_in_South_Africa_on_August_24%2C_2023_%281%29_%28cropped%29.jpg.webp","content-length":"18666","content-type":"image/webp","date":"Sun, 19 May 2024 21:39:56 GMT","etag":"318f1f62d392bd01f0c92aefd684c273","last-modified":"Sun, 19 May 2024 21:38:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/25077","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"da570f0b-4c82-4d7b-8fc5-328e6ca92bf5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.16900000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":895.95703,"y":177.94922,"touch_down_time":331879,"touch_up_time":331981},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dcc2a5a5-159f-4c76-aae2-46ced28a0c5a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332344,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"352","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"de315a38-ac75-4f89-8414-b55d8dd9289d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=die\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335247,"end_time":335344,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''die.svg","content-encoding":"gzip","content-length":"238","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:49:32 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:49:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/147101","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1e99acc-db90-4c71-9d08-fa0472699eee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e5249a22-2c90-4c12-8d2e-c482af6e832b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=heart\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335251,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''heart.svg","content-encoding":"gzip","content-length":"230","content-type":"image/svg+xml","date":"Mon, 20 May 2024 07:33:00 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 07:33:00 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/98414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e60e744a-77f4-4735-b8b3-ec45cc2f80e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:38.39400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e6487deb-1c1e-4235-8394-58153dfa0100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/242px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":335007,"end_time":335340,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32279","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg.webp","content-length":"13362","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:43 GMT","etag":"116366c8c04da3c0d12ec01f8807a2ce","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22901","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7f97e8d-dddc-48e9-af6d-d2a835677ea7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.93200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8e81598-f1c6-48b0-a6e7-b5d1d970fc51","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.18600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026raw=1\u0026skin=minerva","method":"get","status_code":200,"start_time":334943,"end_time":335005,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=300, s-maxage=300, stale-while-revalidate=60","content-encoding":"gzip","content-length":"19691","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 09:01:07 GMT","etag":"W/\"5s31n\"","expires":"Mon, 20 May 2024 09:06:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=startup\u0026only=scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=5s31n","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1731","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8f4471d-6d28-4b19-86fe-0939cdef277c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:41.92900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb2cbe0a-4a48-436b-80c1-4ed7da7264e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:39.52600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":332026,"end_time":332345,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"edcc401e-299d-4a53-8e31-0f17f1d24aee","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg/264px-Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg","method":"get","status_code":200,"start_time":335008,"end_time":335341,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32236","content-disposition":"inline;filename*=UTF-8''Samir_A%C3%AFt_Sa%C3%AFd_-_Rings_Podium_2016_Olympics_Test_Event.jpg.webp","content-length":"21622","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:27 GMT","etag":"2ffb37c0522c5b4bb8c48a776bcd0499","last-modified":"Mon, 20 May 2024 00:02:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/23045","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fffaf829-e771-4c4e-bc90-537097ff3f94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.12200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json index 31220f888..4b6cb1a13 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5042cbe5-c87a-4057-855e-bbdc4768196a.json @@ -1 +1 @@ -[{"id":"020a3404-b4d3-4884-bc1d-419ea0070fa8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.10100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10d7067c-3c6e-48ae-acd4-166bc5bb1b04","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":445636,"end_time":445639,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12782bdb-a8e5-4e53-a505-fef48b1b07c2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":773,"total_pss":91188,"rss":168736,"native_total_heap":40960,"native_free_heap":4914,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"188b4fbc-50eb-4e90-9411-b30556078e3b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s_Republic_of_China.svg/45px-Flag_of_the_People%27s_Republic_of_China.svg.png","method":"get","status_code":200,"start_time":445750,"end_time":445803,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"7248","content-disposition":"inline;filename*=UTF-8''Flag_of_the_People%27s_Republic_of_China.svg.webp","content-length":"214","content-type":"image/webp","date":"Mon, 20 May 2024 07:02:44 GMT","etag":"ac5e49c101bc791c07551cd3d42e3bcc","last-modified":"Sat, 02 Mar 2024 08:39:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2287","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ada2149-a09e-44e8-9fde-ad7482de4455","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/45px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445703,"end_time":445800,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2510","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"242","content-type":"image/webp","date":"Mon, 20 May 2024 08:21:42 GMT","etag":"376f251ced23ca55870270fbde2e6a38","last-modified":"Sun, 23 Jul 2023 00:27:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2244","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"265fd5a0-3d00-415c-9da1-1badcd41226c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.88500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Red_pog.svg/12px-Red_pog.svg.png","method":"get","status_code":200,"start_time":445657,"end_time":445704,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"82748","content-disposition":"inline;filename*=UTF-8''Red_pog.svg.webp","content-length":"292","content-type":"image/webp","date":"Sun, 19 May 2024 10:04:25 GMT","etag":"17a200492689febd6b35d3eb8528ae66","last-modified":"Wed, 01 May 2024 21:29:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/63192","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"300e93f5-e7e4-4697-a9c7-0bb86a437879","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.22600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=bangalore\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":443705,"end_time":444045,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-sqst5","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"50idxu2hqbxxfisc0kotuvp97"},"request_body":null,"response_body":"{\"continue\":{\"cocontinue\":\"44275267|791123834\",\"continue\":\"||description|pageimages|info\"},\"query\":{\"pages\":[{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":14,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":1684337,\"ns\":0,\"title\":\"Bangalore Urban district\",\"index\":6,\"description\":\"District of Karnataka in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.970214,\"lon\":77.56029,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:32Z\",\"lastrevid\":1224290740,\"length\":63567,\"displaytitle\":\"Bangalore Urban district\",\"varianttitles\":{\"en\":\"Bangalore Urban district\"}},{\"pageid\":3367279,\"ns\":0,\"title\":\"Bangalore Metropolitan Transport Corporation\",\"index\":8,\"description\":\"Transport corporation of Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png\",\"width\":316,\"height\":316},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:31Z\",\"lastrevid\":1220095160,\"length\":35556,\"displaytitle\":\"Bangalore Metropolitan Transport Corporation\",\"varianttitles\":{\"en\":\"Bangalore Metropolitan Transport Corporation\"}},{\"pageid\":3992119,\"ns\":0,\"title\":\"Bangalore geography and environment\",\"index\":18,\"coordinates\":[{\"lat\":12.97,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T04:46:21Z\",\"lastrevid\":1224399208,\"length\":20419,\"displaytitle\":\"Bangalore geography and environment\",\"varianttitles\":{\"en\":\"Bangalore geography and environment\"}},{\"pageid\":3998184,\"ns\":0,\"title\":\"Bangalore Medical College and Research Institute\",\"index\":4,\"description\":\"Indian medical college in Bangalore, Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg\",\"width\":320,\"height\":427},\"coordinates\":[{\"lat\":12.95938333,\"lon\":77.57474167,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:17Z\",\"lastrevid\":1218784184,\"length\":21257,\"displaytitle\":\"Bangalore Medical College and Research Institute\",\"varianttitles\":{\"en\":\"Bangalore Medical College and Research Institute\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":16872084,\"ns\":0,\"title\":\"Bangalore City railway station\",\"index\":9,\"description\":\"Railway station in Bangalore, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/KSRBengaluruEntrance.jpg/320px-KSRBengaluruEntrance.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.97833333,\"lon\":77.56944444,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:59Z\",\"lastrevid\":1221137357,\"length\":19801,\"displaytitle\":\"Bangalore City railway station\",\"varianttitles\":{\"en\":\"Bangalore City railway station\"}},{\"pageid\":18466192,\"ns\":0,\"title\":\"Bangalore North Lok Sabha constituency\",\"index\":3,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.14,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334231,\"length\":53276,\"displaytitle\":\"Bangalore North Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore North Lok Sabha constituency\"}},{\"pageid\":18466360,\"ns\":0,\"title\":\"Bangalore South Lok Sabha constituency\",\"index\":5,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif\",\"width\":320,\"height\":231},\"coordinates\":[{\"lat\":12.76,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334343,\"length\":24491,\"displaytitle\":\"Bangalore South Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore South Lok Sabha constituency\"}},{\"pageid\":18626771,\"ns\":0,\"title\":\"Bangalore Rural Lok Sabha constituency\",\"index\":16,\"description\":\"Lok Sabha Constituency in Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.3,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221311137,\"length\":16502,\"displaytitle\":\"Bangalore Rural Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Rural Lok Sabha constituency\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":10,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":20477217,\"ns\":0,\"title\":\"Bangalore Fort\",\"index\":11,\"description\":\"Historic mud fort in Kamataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Old_Bangalore_Fort%2C_Inside_View.JPG/320px-Old_Bangalore_Fort%2C_Inside_View.JPG\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:25Z\",\"lastrevid\":1210428540,\"length\":35673,\"displaytitle\":\"Bangalore Fort\",\"varianttitles\":{\"en\":\"Bangalore Fort\"}},{\"pageid\":24251238,\"ns\":0,\"title\":\"Bangalore Central Business District\",\"index\":19,\"description\":\"Neighborhood in Bangalore Urban, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/59/Bangalore-cbd.jpg/320px-Bangalore-cbd.jpg\",\"width\":320,\"height\":237},\"coordinates\":[{\"lat\":12.975,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T20:57:01Z\",\"lastrevid\":1224510573,\"length\":15823,\"displaytitle\":\"Bangalore Central Business District\",\"varianttitles\":{\"en\":\"Bangalore Central Business District\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":7,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":31932753,\"ns\":0,\"title\":\"Bangalore Football League\",\"index\":12,\"description\":\"Football league\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:06:02Z\",\"lastrevid\":1224018601,\"length\":24294,\"displaytitle\":\"Bangalore Football League\",\"varianttitles\":{\"en\":\"Bangalore Football League\"}},{\"pageid\":38216551,\"ns\":0,\"title\":\"Bangalore University Task Force\",\"index\":20,\"description\":\"High-power committee\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:15:10Z\",\"lastrevid\":1208322313,\"length\":35399,\"displaytitle\":\"Bangalore University Task Force\",\"varianttitles\":{\"en\":\"Bangalore University Task Force\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":2,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":46187196,\"ns\":0,\"title\":\"Bangalore Naatkal\",\"index\":13,\"description\":\"2016 film directed by Bhaskar\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/8a/Bangalore_Naatkal_Tamil_poster.jpg\",\"width\":270,\"height\":367},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:21:32Z\",\"lastrevid\":1215621207,\"length\":23352,\"displaytitle\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\"}},{\"pageid\":55024630,\"ns\":0,\"title\":\"Bangalore Ganesh Utsava\",\"index\":17,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-05T21:52:14Z\",\"lastrevid\":1210075728,\"length\":37362,\"displaytitle\":\"Bangalore Ganesh Utsava\",\"varianttitles\":{\"en\":\"Bangalore Ganesh Utsava\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3073b7bb-3be8-47ef-ad76-51672405758e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":442564,"utime":95,"cutime":0,"cstime":0,"stime":76,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35110a1a-40c4-4575-b6ab-82b69e6ed409","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/46px-Flag_of_the_United_States.svg.png","method":"get","status_code":200,"start_time":445732,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"49045","content-length":"498","content-type":"image/webp","date":"Sun, 19 May 2024 19:26:07 GMT","etag":"2eecc01159f34cee7b96bc7ed010a421","last-modified":"Fri, 21 Jun 2019 08:11:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/11713","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35f2dc4a-f4a2-42b2-9c1a-185fa42b0cff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:28.85900000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=sc\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":441262,"end_time":441678,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.canary-77459b97b-8c6fm","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"2evy3lygncw5gh09s8aw0f62u"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"redirects\":[{\"index\":1,\"from\":\"Sc\",\"to\":\"SC\"}],\"pages\":[{\"pageid\":26700,\"ns\":0,\"title\":\"Science\",\"index\":10,\"description\":\"Systematic endeavor for gaining knowledge\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:40Z\",\"lastrevid\":1223109993,\"length\":170821,\"displaytitle\":\"Science\",\"varianttitles\":{\"en\":\"Science\"}},{\"pageid\":26740,\"ns\":0,\"title\":\"Scandinavia\",\"index\":11,\"description\":\"Subregion of Northern Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Scandinavia_M2002074_lrg.jpg/320px-Scandinavia_M2002074_lrg.jpg\",\"width\":320,\"height\":414},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:21:04Z\",\"lastrevid\":1224745886,\"length\":85969,\"displaytitle\":\"Scandinavia\",\"varianttitles\":{\"en\":\"Scandinavia\"}},{\"pageid\":26787,\"ns\":0,\"title\":\"Science fiction\",\"index\":7,\"description\":\"Genre of speculative fiction\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg/320px-The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg\",\"width\":320,\"height\":401},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224197918,\"length\":159442,\"displaytitle\":\"Science fiction\",\"varianttitles\":{\"en\":\"Science fiction\"}},{\"pageid\":26833,\"ns\":0,\"title\":\"Scientific method\",\"index\":12,\"description\":\"Interplay between observation, experiment, and theory in science\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:21:01Z\",\"lastrevid\":1224700801,\"length\":189671,\"displaytitle\":\"Scientific method\",\"varianttitles\":{\"en\":\"Scientific method\"}},{\"pageid\":26994,\"ns\":0,\"title\":\"Scotland\",\"index\":2,\"description\":\"Country within the United Kingdom\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png\",\"width\":320,\"height\":192},\"coordinates\":[{\"lat\":57,\"lon\":-4,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224599331,\"length\":240204,\"displaytitle\":\"Scotland\",\"varianttitles\":{\"en\":\"Scotland\"}},{\"pageid\":27040,\"ns\":0,\"title\":\"Schutzstaffel\",\"index\":4,\"description\":\"Nazi paramilitary organisation (1925–1945)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg\",\"width\":320,\"height\":238},\"coordinates\":[{\"lat\":52.50694444,\"lon\":13.38277778,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:48:53Z\",\"lastrevid\":1223244499,\"length\":142540,\"displaytitle\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\"}},{\"pageid\":27790,\"ns\":0,\"title\":\"Schizophrenia\",\"index\":6,\"description\":\"Mental disorder with psychotic symptoms\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1221204757,\"length\":169955,\"displaytitle\":\"Schizophrenia\",\"varianttitles\":{\"en\":\"Schizophrenia\"}},{\"pageid\":28397,\"ns\":0,\"title\":\"Scottish Gaelic\",\"index\":16,\"description\":\"Goidelic Celtic language of Scotland\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Scots_Gaelic_speakers_in_the_2011_census.png/320px-Scots_Gaelic_speakers_in_the_2011_census.png\",\"width\":320,\"height\":475},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T04:14:43Z\",\"lastrevid\":1224734192,\"length\":119497,\"displaytitle\":\"Scottish Gaelic\",\"varianttitles\":{\"en\":\"Scottish Gaelic\"}},{\"pageid\":37287,\"ns\":0,\"title\":\"Scooby-Doo\",\"index\":13,\"description\":\"American animated media franchise\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Scooby_doo_logo.png/320px-Scooby_doo_logo.png\",\"width\":320,\"height\":107},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224264757,\"length\":112505,\"displaytitle\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\"}},{\"pageid\":55092,\"ns\":0,\"title\":\"Scythians\",\"index\":17,\"description\":\"Nomadic Iranic people of the Pontic Steppe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Scythian_Kingdom_in_West_Asia.jpg/320px-Scythian_Kingdom_in_West_Asia.jpg\",\"width\":320,\"height\":195},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1221221772,\"length\":284125,\"displaytitle\":\"Scythians\",\"varianttitles\":{\"en\":\"Scythians\"}},{\"pageid\":59874,\"ns\":0,\"title\":\"Schrödinger equation\",\"index\":18,\"description\":\"Description of a quantum-mechanical system\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Grave_Schroedinger_%28detail%29.png/320px-Grave_Schroedinger_%28detail%29.png\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:11:53Z\",\"lastrevid\":1224728096,\"length\":74996,\"displaytitle\":\"Schrödinger equation\",\"varianttitles\":{\"en\":\"Schrödinger equation\"}},{\"pageid\":191304,\"ns\":0,\"title\":\"Schistosomiasis\",\"index\":8,\"description\":\"Human disease caused by parasitic worms called schistosomes\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Schistosomiasis_in_a_child_2.jpg/320px-Schistosomiasis_in_a_child_2.jpg\",\"width\":320,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:45Z\",\"lastrevid\":1224583089,\"length\":96568,\"displaytitle\":\"Schistosomiasis\",\"varianttitles\":{\"en\":\"Schistosomiasis\"}},{\"pageid\":225063,\"ns\":0,\"title\":\"SC\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:22:55Z\",\"lastrevid\":1214596484,\"length\":4989,\"displaytitle\":\"SC\",\"varianttitles\":{\"en\":\"SC\"}},{\"pageid\":267848,\"ns\":0,\"title\":\"Scarface (1983 film)\",\"index\":19,\"description\":\"American crime drama film by Brian De Palma\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/71/Scarface_-_1983_film.jpg\",\"width\":256,\"height\":388},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T14:42:53Z\",\"lastrevid\":1224634022,\"length\":97222,\"displaytitle\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\"}},{\"pageid\":3437663,\"ns\":0,\"title\":\"Science, technology, engineering, and mathematics\",\"index\":20,\"description\":\"Group of academic disciplines\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg/320px-Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg\",\"width\":320,\"height\":212},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:48Z\",\"lastrevid\":1223985006,\"length\":92714,\"displaytitle\":\"Science, technology, engineering, and mathematics\",\"varianttitles\":{\"en\":\"Science, technology, engineering, and mathematics\"}},{\"pageid\":13118744,\"ns\":0,\"title\":\"Scientology\",\"index\":14,\"description\":\"Beliefs and practices and associated movement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg/320px-Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg\",\"width\":320,\"height\":228},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:57:49Z\",\"lastrevid\":1224639439,\"length\":206002,\"displaytitle\":\"Scientology\",\"varianttitles\":{\"en\":\"Scientology\"}},{\"pageid\":16565139,\"ns\":0,\"title\":\"Schengen Area\",\"index\":5,\"description\":\"Area of 29 European states without mutual border controls\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:59:53Z\",\"lastrevid\":1224138185,\"length\":258944,\"displaytitle\":\"Schengen Area\",\"varianttitles\":{\"en\":\"Schengen Area\"}},{\"pageid\":20913246,\"ns\":0,\"title\":\"Scarlett Johansson\",\"index\":9,\"description\":\"American actress (born 1984)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg/320px-Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg\",\"width\":320,\"height\":498},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:01:37Z\",\"lastrevid\":1224575630,\"length\":202536,\"displaytitle\":\"Scarlett Johansson\",\"varianttitles\":{\"en\":\"Scarlett Johansson\"}},{\"pageid\":48077208,\"ns\":0,\"title\":\"Sci-Hub\",\"index\":15,\"description\":\"Scientific research paper file sharing website\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/80/Sci-hub_screen_shot.png/320px-Sci-hub_screen_shot.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:10:13Z\",\"lastrevid\":1224715159,\"length\":100790,\"displaytitle\":\"Sci-Hub\",\"varianttitles\":{\"en\":\"Sci-Hub\"}},{\"pageid\":54256563,\"ns\":0,\"title\":\"Scottie Scheffler\",\"index\":3,\"description\":\"American professional golfer (born 1996)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:20:20Z\",\"lastrevid\":1224708630,\"length\":52043,\"displaytitle\":\"Scottie Scheffler\",\"varianttitles\":{\"en\":\"Scottie Scheffler\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b4c9002-37fd-4eee-9ec1-e864131f9b36","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.37400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":444862,"end_time":445193,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e9fccb5-c245-4d38-ba0d-45d9c5bcfd4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.90100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","method":"get","status_code":200,"start_time":445137,"end_time":445720,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:03:33 GMT","etag":"W/\"1223290316/c85c3be0-158b-11ef-a9e5-76db261de79a\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42dd09bf-ffa9-4177-a33e-64657e636e18","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:27.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":4349,"total_pss":83482,"rss":161116,"native_total_heap":36864,"native_free_heap":5008,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4335f5cc-3aa4-4322-8772-5cae6934b077","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.35800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":438525,"end_time":439177,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"53ce0da2-c212-4609-ac2c-75dc5d9fdeb0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:30.98900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","method":"get","status_code":200,"start_time":443740,"end_time":443808,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"29707","content-disposition":"inline;filename*=UTF-8''Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","content-length":"36518","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:48:24 GMT","etag":"0e664e18a7e8c56780982cdec4dcddf5","last-modified":"Wed, 29 Mar 2023 19:01:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587457f7-d345-48a3-92b5-dafaea6a7cae","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58dd307c-1098-4485-8516-5b9f940d7131","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.74800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":439567,"utime":69,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a3d6b76-9467-47e6-aa4b-64a3ba96fba8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.32800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","method":"get","status_code":200,"start_time":445099,"end_time":445147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"24691","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"1015","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 02:12:01 GMT","etag":"W/\"1223290316/596e4ba0-158c-11ef-9522-c7a0c2b73d32\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/443","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1355\",\"titles\":{\"canonical\":\"Bangalore\",\"normalized\":\"Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\"},\"pageid\":44275267,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":640,\"height\":458},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223290316\",\"tid\":\"d22b1496-0f44-11ef-8b85-8777b462a886\",\"timestamp\":\"2024-05-11T03:16:13Z\",\"description\":\"Capital of Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97888889,\"lon\":77.59166667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bangalore\"}},\"extract\":\"Bangalore, officially Bengaluru, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than 8 million and a metropolitan population of around 15 million, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e, officially \u003cb\u003eBengaluru\u003c/b\u003e, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than \u003cspan class=\\\"nowrap\\\"\u003e8 million\u003c/span\u003e and a metropolitan population of around \u003cspan class=\\\"nowrap\\\"\u003e15 million\u003c/span\u003e, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"753276be-d6ea-471e-b456-1e25ac8f12ca","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.55200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png","method":"get","status_code":200,"start_time":444066,"end_time":444371,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"18593","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"4332f2b58aa1329cfab7539c4f1728f2","last-modified":"Fri, 03 Jan 2020 02:00:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75e3f617-a93d-495d-9f8c-1152762aa7bc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"766acf39-c1f0-4ab0-bddd-f3b877d992ed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.74500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":445564,"utime":172,"cutime":0,"cstime":0,"stime":134,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7bf3cbc3-d54e-463c-bb26-389e99ed889c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":445797,"end_time":445798,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"839eab92-ed09-445d-af80-a46fbb8e7e72","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.03200000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":1731,"x":459.9756,"y":309.96094,"touch_down_time":444777,"touch_up_time":444848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85df57c5-6b2c-4e97-bd98-1dd22694f09c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85f394f3-d874-4de8-b6af-91635217e51a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.51000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg","method":"get","status_code":200,"start_time":444063,"end_time":444329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"56063","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"0eabf42026cfaa93bb864a0f792af18d","last-modified":"Sun, 16 Feb 2020 09:41:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f2185a2-125f-475c-91f0-bdd2301aa082","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.09300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2e0afa5-e1d3-450f-b990-89c3b616e61a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=sc\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":441687,"end_time":441880,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6c13d8f-88ab-4333-b41f-4389607b105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5517be6-9227-46c5-919b-cc4fb7493354","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.65800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=bangalore\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":444054,"end_time":444477,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-kmz8x","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"e2pm726c46ptnwr5s7wscl6z1"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":37533,\"ns\":0,\"title\":\"Indian Institute of Science\",\"redirecttitle\":\"Indian Institute of Science Bangalore\",\"index\":16,\"description\":\"Public university for scientific research and higher education in Bangalore\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3b/Indian_Institute_of_Science_2019_logo.svg/320px-Indian_Institute_of_Science_2019_logo.svg.png\",\"width\":320,\"height\":286},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1222905910,\"length\":98459,\"displaytitle\":\"Indian Institute of Science\",\"varianttitles\":{\"en\":\"Indian Institute of Science\"}},{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":6,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":652234,\"ns\":0,\"title\":\"Whitefield, Bangalore\",\"index\":11,\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg/320px-Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg\",\"width\":320,\"height\":182},\"coordinates\":[{\"lat\":12.97,\"lon\":77.715,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:12:24Z\",\"lastrevid\":1223602569,\"length\":16938,\"displaytitle\":\"Whitefield, Bangalore\",\"varianttitles\":{\"en\":\"Whitefield, Bangalore\"}},{\"pageid\":920017,\"ns\":0,\"title\":\"Bangalore IT.in\",\"index\":4,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:13:29Z\",\"lastrevid\":1209907618,\"length\":1333,\"displaytitle\":\"Bangalore IT.in\",\"varianttitles\":{\"en\":\"Bangalore IT.in\"}},{\"pageid\":2192062,\"ns\":0,\"title\":\"Bangalore (disambiguation)\",\"index\":17,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-04-27T01:58:17Z\",\"lastrevid\":1189264050,\"length\":1062,\"displaytitle\":\"Bangalore (disambiguation)\",\"varianttitles\":{\"en\":\"Bangalore (disambiguation)\"}},{\"pageid\":2409948,\"ns\":0,\"title\":\"Namma Metro\",\"redirecttitle\":\"Bangalore metro\",\"index\":7,\"description\":\"Rapid transit system in Bengaluru, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Metro_Trains_of_Namma_Metro.jpg/320px-Metro_Trains_of_Namma_Metro.jpg\",\"width\":320,\"height\":257},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:47Z\",\"lastrevid\":1222695638,\"length\":148660,\"displaytitle\":\"Namma Metro\",\"varianttitles\":{\"en\":\"Namma Metro\"}},{\"pageid\":2912063,\"ns\":0,\"title\":\"Bangalore division\",\"index\":5,\"description\":\"Place in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Karnataka-divisions-Bangalore.png/320px-Karnataka-divisions-Bangalore.png\",\"width\":320,\"height\":506},\"coordinates\":[{\"lat\":12.9667,\"lon\":77.5667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:21:45Z\",\"lastrevid\":1221849884,\"length\":4625,\"displaytitle\":\"Bangalore division\",\"varianttitles\":{\"en\":\"Bangalore division\"}},{\"pageid\":3950518,\"ns\":0,\"title\":\"Economy of Bangalore\",\"index\":19,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/UB_City_Bangalore.JPG/320px-UB_City_Bangalore.JPG\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:10Z\",\"lastrevid\":1220141129,\"length\":27299,\"displaytitle\":\"Economy of Bangalore\",\"varianttitles\":{\"en\":\"Economy of Bangalore\"}},{\"pageid\":4044762,\"ns\":0,\"title\":\"Bengaluru Airport\",\"redirecttitle\":\"Bangalore Airport\",\"index\":8,\"description\":\"International airport in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/55/Kempegowda_International_Airport_Bengaluru_Logo.svg/320px-Kempegowda_International_Airport_Bengaluru_Logo.svg.png\",\"width\":320,\"height\":261},\"coordinates\":[{\"lat\":13.20694444,\"lon\":77.70416667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:53:10Z\",\"lastrevid\":1224574455,\"length\":132714,\"displaytitle\":\"Bengaluru Airport\",\"varianttitles\":{\"en\":\"Bengaluru Airport\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":8599775,\"ns\":0,\"title\":\"Bangalore Palace\",\"index\":18,\"description\":\"Royal palace in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Bangalore_Mysore_Maharaja_Palace.jpg/320px-Bangalore_Mysore_Maharaja_Palace.jpg\",\"width\":320,\"height\":151},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:34:38Z\",\"lastrevid\":1219003008,\"length\":6055,\"displaytitle\":\"Bangalore Palace\",\"varianttitles\":{\"en\":\"Bangalore Palace\"}},{\"pageid\":15861688,\"ns\":0,\"title\":\"Royal Challengers Bangalore\",\"index\":2,\"description\":\"Bangalore based franchise in the Indian Premier League\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0a/Royal_Challengers_Bengaluru_Logo.png\",\"width\":267,\"height\":373},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:32:47Z\",\"lastrevid\":1224730459,\"length\":90102,\"displaytitle\":\"Royal Challengers Bangalore\",\"varianttitles\":{\"en\":\"Royal Challengers Bangalore\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":12,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":26809312,\"ns\":0,\"title\":\"Purple Line (Namma Metro)\",\"redirecttitle\":\"Purple Line (Bangalore Metro)\",\"index\":13,\"description\":\"Line of Bengaluru's Namma Metro\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Namma_Metro%27s_Purple_Line_trainset.jpg/320px-Namma_Metro%27s_Purple_Line_trainset.jpg\",\"width\":320,\"height\":161},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:51:03Z\",\"lastrevid\":1223987918,\"length\":54136,\"displaytitle\":\"Purple Line (Namma Metro)\",\"varianttitles\":{\"en\":\"Purple Line (Namma Metro)\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":10,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":3,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"coordinates\":[{\"lat\":12.97888889,\"lon\":77.59166667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":45249047,\"ns\":0,\"title\":\"Love in Bangalore\",\"index\":14,\"description\":\"1966 Indian film\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:28:46Z\",\"lastrevid\":1212970362,\"length\":1925,\"displaytitle\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\"}},{\"pageid\":49213725,\"ns\":0,\"title\":\"Bangalore Blue\",\"index\":9,\"description\":\"Noir grape variety\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Blue_grapes_in_vineyard.jpg/320px-Blue_grapes_in_vineyard.jpg\",\"width\":320,\"height\":425},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T18:56:11Z\",\"lastrevid\":1147235604,\"length\":4448,\"displaytitle\":\"Bangalore Blue\",\"varianttitles\":{\"en\":\"Bangalore Blue\"}},{\"pageid\":64312095,\"ns\":0,\"title\":\"Bangalore South Assembly constituency\",\"index\":20,\"description\":\"Vidhana Sabha constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/176-Bangalore_South_constituency.svg/320px-176-Bangalore_South_constituency.svg.png\",\"width\":320,\"height\":316},\"coordinates\":[{\"lat\":12.86,\"lon\":77.58,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T09:23:25Z\",\"lastrevid\":1213122229,\"length\":8807,\"displaytitle\":\"Bangalore South Assembly constituency\",\"varianttitles\":{\"en\":\"Bangalore South Assembly constituency\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb424ca9-1a7a-4497-96bc-df809fc8419c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Flag_of_Belarus.svg/46px-Flag_of_Belarus.svg.png","method":"get","status_code":200,"start_time":445731,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13839","content-disposition":"inline;filename*=UTF-8''Flag_of_Belarus.svg.webp","content-length":"328","content-type":"image/webp","date":"Mon, 20 May 2024 05:12:54 GMT","etag":"22b0881547d06a0a7abe5e914011fd27","last-modified":"Tue, 23 Jan 2024 23:32:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1468","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bf526972-039e-4c45-9ea6-b229f82fa7d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.11200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg","method":"get","status_code":200,"start_time":441708,"end_time":441931,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32703","content-disposition":"inline;filename*=UTF-8''Scottie_Scheffler_2023_01.jpg","content-length":"28013","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:58:25 GMT","etag":"0a5a95d6838ea5225265c871fcc485ea","last-modified":"Mon, 15 Apr 2024 00:29:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/41","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3d974d7-6bed-4ef7-86fc-9a47511c3692","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdaf5ea3-1230-4eb8-a77e-30d77a3f353e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png","method":"get","status_code":200,"start_time":441706,"end_time":441886,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13931","content-disposition":"inline;filename*=UTF-8''Flag_of_Scotland.svg.png","content-length":"1416","content-type":"image/png","date":"Mon, 20 May 2024 05:11:18 GMT","etag":"116e7ad3411fef2892a4f560eeb9ac88","last-modified":"Tue, 29 Nov 2022 04:40:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d02eead2-1b40-49e7-93f2-412ae3a02e3d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","method":"get","status_code":200,"start_time":444057,"end_time":444109,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70814","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"33213","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:23:16 GMT","etag":"a77891f913653956636f4e78e9f85235","last-modified":"Tue, 07 May 2024 15:28:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d764d4b6-d648-4f3e-8322-b9f6000acea9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg","method":"get","status_code":200,"start_time":444060,"end_time":444120,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"27582","content-length":"18792","content-type":"image/jpeg","date":"Mon, 20 May 2024 01:23:48 GMT","etag":"e9ffa25766587d06e79ff3dd741c597d","last-modified":"Mon, 16 Oct 2017 22:45:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/33","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"42h4vxu7q87nt73606bmuy05qbjngxl"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7a30ad8-4b8e-40a0-8946-e7303171f40b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.01800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","method":"get","status_code":200,"start_time":443748,"end_time":443837,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"72961","content-disposition":"inline;filename*=UTF-8''Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","content-length":"38362","content-type":"image/jpeg","date":"Sun, 19 May 2024 12:47:30 GMT","etag":"aa706922e801305aca334599b4f39fa0","last-modified":"Sat, 25 Dec 2021 09:15:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d880b56d-b684-4eda-9268-336a556f2d3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.81800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":445635,"end_time":445636,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d9c0e3fd-b810-4891-838e-f9dd6e34451c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.19900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png","method":"get","status_code":200,"start_time":443745,"end_time":444018,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Map_of_the_Schengen_Area.svg.png","content-length":"39412","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f2546c5b669cc609c38f9a34aa3e6e9d","last-modified":"Sun, 31 Mar 2024 09:12:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e06e9a69-d791-4a62-adfa-d98199d7483c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.74700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15468,"java_free_heap":795,"total_pss":96401,"rss":173048,"native_total_heap":45056,"native_free_heap":5333,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11cd222-e695-4fdb-a294-871b07429e34","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":445642,"end_time":445644,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1aaa75b-f364-40e6-aebd-721dc43cfec3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.62600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=s\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":null,"start_time":442085,"end_time":442445,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e72d75b6-cc4c-4f24-beb8-212c4107baed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","method":"get","status_code":200,"start_time":444061,"end_time":444115,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65960","content-disposition":"inline;filename*=UTF-8''Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","content-length":"31020","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:44:11 GMT","etag":"08b33c6ca658bce29fcf7e4b7a8f05d6","last-modified":"Sun, 03 Sep 2023 00:40:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8c64f9d-60be-4071-aeac-3a25d8a3f7ce","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.40400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg/640px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg","method":"get","status_code":200,"start_time":445163,"end_time":445223,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11994","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"86275","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:43:39 GMT","etag":"0d0008172016fe7d7be9c073762e4520","last-modified":"Tue, 07 May 2024 15:34:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb7e39b3-c886-4944-a778-965e3c480f7a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.83000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":445639,"end_time":445649,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0475d0-3299-42c2-88fe-7d13a7df094b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif","method":"get","status_code":200,"start_time":444064,"end_time":444125,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"8935","content-length":"12268","content-type":"image/gif","date":"Mon, 20 May 2024 06:34:35 GMT","etag":"1358f74d5c77a355cff8a92a55e4f0b4","last-modified":"Thu, 19 Jul 2018 05:50:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f35cf97a-5bda-4130-a6a2-bf7528059fa3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.54500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg","method":"get","status_code":200,"start_time":444065,"end_time":444364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Brigade_Road_Bangalore.jpg","content-length":"33965","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f521e65ca0e6ef701eccd34fa7f43aa1","last-modified":"Mon, 07 Aug 2023 23:58:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f363c188-b88a-4077-8ba7-7bd5975881d9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.27400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":441702,"end_time":442093,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"15872","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:29 GMT","etag":"8ef639120e64588af7912ced4f2670b2","last-modified":"Sat, 27 Feb 2016 04:12:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"eyxrcp83otgt6lam7bflqzgsciop8pe"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6cd5c59-2f0c-47fa-9bdb-53100bc3931c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f846ac03-1d92-4e21-981b-db3bbdde169b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.36600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png","method":"get","status_code":200,"start_time":444067,"end_time":444184,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25040","content-length":"108611","content-type":"image/png","date":"Mon, 20 May 2024 02:06:10 GMT","etag":"1df3af57bc9e53f01563d0903c555eb4","last-modified":"Sat, 07 Apr 2018 14:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"bf5j4qbkjfu4k6au3h63waco77l0jfr"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf00dab-e951-4745-aea6-6568fad0f660","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.60300000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":304,"start_time":445154,"end_time":445422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","if-modified-since":"Fri, 29 Dec 2023 14:07:42 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-7","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"020a3404-b4d3-4884-bc1d-419ea0070fa8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.10100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"10d7067c-3c6e-48ae-acd4-166bc5bb1b04","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":null,"start_time":445636,"end_time":445639,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12782bdb-a8e5-4e53-a505-fef48b1b07c2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":773,"total_pss":91188,"rss":168736,"native_total_heap":40960,"native_free_heap":4914,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"188b4fbc-50eb-4e90-9411-b30556078e3b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s_Republic_of_China.svg/45px-Flag_of_the_People%27s_Republic_of_China.svg.png","method":"get","status_code":200,"start_time":445750,"end_time":445803,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"7248","content-disposition":"inline;filename*=UTF-8''Flag_of_the_People%27s_Republic_of_China.svg.webp","content-length":"214","content-type":"image/webp","date":"Mon, 20 May 2024 07:02:44 GMT","etag":"ac5e49c101bc791c07551cd3d42e3bcc","last-modified":"Sat, 02 Mar 2024 08:39:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2287","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1ada2149-a09e-44e8-9fde-ad7482de4455","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/45px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445703,"end_time":445800,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2510","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"242","content-type":"image/webp","date":"Mon, 20 May 2024 08:21:42 GMT","etag":"376f251ced23ca55870270fbde2e6a38","last-modified":"Sun, 23 Jul 2023 00:27:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2244","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"265fd5a0-3d00-415c-9da1-1badcd41226c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.88500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Red_pog.svg/12px-Red_pog.svg.png","method":"get","status_code":200,"start_time":445657,"end_time":445704,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"82748","content-disposition":"inline;filename*=UTF-8''Red_pog.svg.webp","content-length":"292","content-type":"image/webp","date":"Sun, 19 May 2024 10:04:25 GMT","etag":"17a200492689febd6b35d3eb8528ae66","last-modified":"Wed, 01 May 2024 21:29:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/63192","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"300e93f5-e7e4-4697-a9c7-0bb86a437879","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.22600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=bangalore\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":443705,"end_time":444045,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-sqst5","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"50idxu2hqbxxfisc0kotuvp97"},"request_body":null,"response_body":"{\"continue\":{\"cocontinue\":\"44275267|791123834\",\"continue\":\"||description|pageimages|info\"},\"query\":{\"pages\":[{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":14,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":1684337,\"ns\":0,\"title\":\"Bangalore Urban district\",\"index\":6,\"description\":\"District of Karnataka in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.970214,\"lon\":77.56029,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:32Z\",\"lastrevid\":1224290740,\"length\":63567,\"displaytitle\":\"Bangalore Urban district\",\"varianttitles\":{\"en\":\"Bangalore Urban district\"}},{\"pageid\":3367279,\"ns\":0,\"title\":\"Bangalore Metropolitan Transport Corporation\",\"index\":8,\"description\":\"Transport corporation of Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png\",\"width\":316,\"height\":316},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:31Z\",\"lastrevid\":1220095160,\"length\":35556,\"displaytitle\":\"Bangalore Metropolitan Transport Corporation\",\"varianttitles\":{\"en\":\"Bangalore Metropolitan Transport Corporation\"}},{\"pageid\":3992119,\"ns\":0,\"title\":\"Bangalore geography and environment\",\"index\":18,\"coordinates\":[{\"lat\":12.97,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T04:46:21Z\",\"lastrevid\":1224399208,\"length\":20419,\"displaytitle\":\"Bangalore geography and environment\",\"varianttitles\":{\"en\":\"Bangalore geography and environment\"}},{\"pageid\":3998184,\"ns\":0,\"title\":\"Bangalore Medical College and Research Institute\",\"index\":4,\"description\":\"Indian medical college in Bangalore, Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg\",\"width\":320,\"height\":427},\"coordinates\":[{\"lat\":12.95938333,\"lon\":77.57474167,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:17Z\",\"lastrevid\":1218784184,\"length\":21257,\"displaytitle\":\"Bangalore Medical College and Research Institute\",\"varianttitles\":{\"en\":\"Bangalore Medical College and Research Institute\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":16872084,\"ns\":0,\"title\":\"Bangalore City railway station\",\"index\":9,\"description\":\"Railway station in Bangalore, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/KSRBengaluruEntrance.jpg/320px-KSRBengaluruEntrance.jpg\",\"width\":320,\"height\":240},\"coordinates\":[{\"lat\":12.97833333,\"lon\":77.56944444,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:59Z\",\"lastrevid\":1221137357,\"length\":19801,\"displaytitle\":\"Bangalore City railway station\",\"varianttitles\":{\"en\":\"Bangalore City railway station\"}},{\"pageid\":18466192,\"ns\":0,\"title\":\"Bangalore North Lok Sabha constituency\",\"index\":3,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.14,\"lon\":77.56,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334231,\"length\":53276,\"displaytitle\":\"Bangalore North Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore North Lok Sabha constituency\"}},{\"pageid\":18466360,\"ns\":0,\"title\":\"Bangalore South Lok Sabha constituency\",\"index\":5,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif\",\"width\":320,\"height\":231},\"coordinates\":[{\"lat\":12.76,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:21Z\",\"lastrevid\":1224334343,\"length\":24491,\"displaytitle\":\"Bangalore South Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore South Lok Sabha constituency\"}},{\"pageid\":18626771,\"ns\":0,\"title\":\"Bangalore Rural Lok Sabha constituency\",\"index\":16,\"description\":\"Lok Sabha Constituency in Karnataka\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Rural_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":13.3,\"lon\":77.6,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221311137,\"length\":16502,\"displaytitle\":\"Bangalore Rural Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Rural Lok Sabha constituency\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":10,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":20477217,\"ns\":0,\"title\":\"Bangalore Fort\",\"index\":11,\"description\":\"Historic mud fort in Kamataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Old_Bangalore_Fort%2C_Inside_View.JPG/320px-Old_Bangalore_Fort%2C_Inside_View.JPG\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:25Z\",\"lastrevid\":1210428540,\"length\":35673,\"displaytitle\":\"Bangalore Fort\",\"varianttitles\":{\"en\":\"Bangalore Fort\"}},{\"pageid\":24251238,\"ns\":0,\"title\":\"Bangalore Central Business District\",\"index\":19,\"description\":\"Neighborhood in Bangalore Urban, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/59/Bangalore-cbd.jpg/320px-Bangalore-cbd.jpg\",\"width\":320,\"height\":237},\"coordinates\":[{\"lat\":12.975,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T20:57:01Z\",\"lastrevid\":1224510573,\"length\":15823,\"displaytitle\":\"Bangalore Central Business District\",\"varianttitles\":{\"en\":\"Bangalore Central Business District\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":7,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":31932753,\"ns\":0,\"title\":\"Bangalore Football League\",\"index\":12,\"description\":\"Football league\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:06:02Z\",\"lastrevid\":1224018601,\"length\":24294,\"displaytitle\":\"Bangalore Football League\",\"varianttitles\":{\"en\":\"Bangalore Football League\"}},{\"pageid\":38216551,\"ns\":0,\"title\":\"Bangalore University Task Force\",\"index\":20,\"description\":\"High-power committee\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:15:10Z\",\"lastrevid\":1208322313,\"length\":35399,\"displaytitle\":\"Bangalore University Task Force\",\"varianttitles\":{\"en\":\"Bangalore University Task Force\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":2,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":46187196,\"ns\":0,\"title\":\"Bangalore Naatkal\",\"index\":13,\"description\":\"2016 film directed by Bhaskar\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/8a/Bangalore_Naatkal_Tamil_poster.jpg\",\"width\":270,\"height\":367},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:21:32Z\",\"lastrevid\":1215621207,\"length\":23352,\"displaytitle\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Naatkal\u003c/i\u003e\"}},{\"pageid\":55024630,\"ns\":0,\"title\":\"Bangalore Ganesh Utsava\",\"index\":17,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-05T21:52:14Z\",\"lastrevid\":1210075728,\"length\":37362,\"displaytitle\":\"Bangalore Ganesh Utsava\",\"varianttitles\":{\"en\":\"Bangalore Ganesh Utsava\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3073b7bb-3be8-47ef-ad76-51672405758e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.74500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":43643,"uptime":442564,"utime":95,"cutime":0,"cstime":0,"stime":76,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35110a1a-40c4-4575-b6ab-82b69e6ed409","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/46px-Flag_of_the_United_States.svg.png","method":"get","status_code":200,"start_time":445732,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"49045","content-length":"498","content-type":"image/webp","date":"Sun, 19 May 2024 19:26:07 GMT","etag":"2eecc01159f34cee7b96bc7ed010a421","last-modified":"Fri, 21 Jun 2019 08:11:14 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/11713","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"35f2dc4a-f4a2-42b2-9c1a-185fa42b0cff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:28.85900000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=sc\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":441262,"end_time":441678,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.canary-77459b97b-8c6fm","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"2evy3lygncw5gh09s8aw0f62u"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"redirects\":[{\"index\":1,\"from\":\"Sc\",\"to\":\"SC\"}],\"pages\":[{\"pageid\":26700,\"ns\":0,\"title\":\"Science\",\"index\":10,\"description\":\"Systematic endeavor for gaining knowledge\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:40Z\",\"lastrevid\":1223109993,\"length\":170821,\"displaytitle\":\"Science\",\"varianttitles\":{\"en\":\"Science\"}},{\"pageid\":26740,\"ns\":0,\"title\":\"Scandinavia\",\"index\":11,\"description\":\"Subregion of Northern Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Scandinavia_M2002074_lrg.jpg/320px-Scandinavia_M2002074_lrg.jpg\",\"width\":320,\"height\":414},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:21:04Z\",\"lastrevid\":1224745886,\"length\":85969,\"displaytitle\":\"Scandinavia\",\"varianttitles\":{\"en\":\"Scandinavia\"}},{\"pageid\":26787,\"ns\":0,\"title\":\"Science fiction\",\"index\":7,\"description\":\"Genre of speculative fiction\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg/320px-The_War_of_the_Worlds_by_Henrique_Alvim_Corr%C3%AAa%2C_original_graphic_15.jpg\",\"width\":320,\"height\":401},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224197918,\"length\":159442,\"displaytitle\":\"Science fiction\",\"varianttitles\":{\"en\":\"Science fiction\"}},{\"pageid\":26833,\"ns\":0,\"title\":\"Scientific method\",\"index\":12,\"description\":\"Interplay between observation, experiment, and theory in science\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:21:01Z\",\"lastrevid\":1224700801,\"length\":189671,\"displaytitle\":\"Scientific method\",\"varianttitles\":{\"en\":\"Scientific method\"}},{\"pageid\":26994,\"ns\":0,\"title\":\"Scotland\",\"index\":2,\"description\":\"Country within the United Kingdom\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png\",\"width\":320,\"height\":192},\"coordinates\":[{\"lat\":57,\"lon\":-4,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:54Z\",\"lastrevid\":1224599331,\"length\":240204,\"displaytitle\":\"Scotland\",\"varianttitles\":{\"en\":\"Scotland\"}},{\"pageid\":27040,\"ns\":0,\"title\":\"Schutzstaffel\",\"index\":4,\"description\":\"Nazi paramilitary organisation (1925–1945)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg\",\"width\":320,\"height\":238},\"coordinates\":[{\"lat\":52.50694444,\"lon\":13.38277778,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:48:53Z\",\"lastrevid\":1223244499,\"length\":142540,\"displaytitle\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eSchutzstaffel\u003c/i\u003e\"}},{\"pageid\":27790,\"ns\":0,\"title\":\"Schizophrenia\",\"index\":6,\"description\":\"Mental disorder with psychotic symptoms\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1221204757,\"length\":169955,\"displaytitle\":\"Schizophrenia\",\"varianttitles\":{\"en\":\"Schizophrenia\"}},{\"pageid\":28397,\"ns\":0,\"title\":\"Scottish Gaelic\",\"index\":16,\"description\":\"Goidelic Celtic language of Scotland\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Scots_Gaelic_speakers_in_the_2011_census.png/320px-Scots_Gaelic_speakers_in_the_2011_census.png\",\"width\":320,\"height\":475},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T04:14:43Z\",\"lastrevid\":1224734192,\"length\":119497,\"displaytitle\":\"Scottish Gaelic\",\"varianttitles\":{\"en\":\"Scottish Gaelic\"}},{\"pageid\":37287,\"ns\":0,\"title\":\"Scooby-Doo\",\"index\":13,\"description\":\"American animated media franchise\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Scooby_doo_logo.png/320px-Scooby_doo_logo.png\",\"width\":320,\"height\":107},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224264757,\"length\":112505,\"displaytitle\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eScooby-Doo\u003c/i\u003e\"}},{\"pageid\":55092,\"ns\":0,\"title\":\"Scythians\",\"index\":17,\"description\":\"Nomadic Iranic people of the Pontic Steppe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Scythian_Kingdom_in_West_Asia.jpg/320px-Scythian_Kingdom_in_West_Asia.jpg\",\"width\":320,\"height\":195},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1221221772,\"length\":284125,\"displaytitle\":\"Scythians\",\"varianttitles\":{\"en\":\"Scythians\"}},{\"pageid\":59874,\"ns\":0,\"title\":\"Schrödinger equation\",\"index\":18,\"description\":\"Description of a quantum-mechanical system\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Grave_Schroedinger_%28detail%29.png/320px-Grave_Schroedinger_%28detail%29.png\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:11:53Z\",\"lastrevid\":1224728096,\"length\":74996,\"displaytitle\":\"Schrödinger equation\",\"varianttitles\":{\"en\":\"Schrödinger equation\"}},{\"pageid\":191304,\"ns\":0,\"title\":\"Schistosomiasis\",\"index\":8,\"description\":\"Human disease caused by parasitic worms called schistosomes\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Schistosomiasis_in_a_child_2.jpg/320px-Schistosomiasis_in_a_child_2.jpg\",\"width\":320,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:45Z\",\"lastrevid\":1224583089,\"length\":96568,\"displaytitle\":\"Schistosomiasis\",\"varianttitles\":{\"en\":\"Schistosomiasis\"}},{\"pageid\":225063,\"ns\":0,\"title\":\"SC\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:22:55Z\",\"lastrevid\":1214596484,\"length\":4989,\"displaytitle\":\"SC\",\"varianttitles\":{\"en\":\"SC\"}},{\"pageid\":267848,\"ns\":0,\"title\":\"Scarface (1983 film)\",\"index\":19,\"description\":\"American crime drama film by Brian De Palma\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/7/71/Scarface_-_1983_film.jpg\",\"width\":256,\"height\":388},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T14:42:53Z\",\"lastrevid\":1224634022,\"length\":97222,\"displaytitle\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eScarface\u003c/i\u003e (1983 film)\"}},{\"pageid\":3437663,\"ns\":0,\"title\":\"Science, technology, engineering, and mathematics\",\"index\":20,\"description\":\"Group of academic disciplines\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg/320px-Brad_Call_judges_an_electric_marble_sorter_%2817182097775%29.jpg\",\"width\":320,\"height\":212},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:23:48Z\",\"lastrevid\":1223985006,\"length\":92714,\"displaytitle\":\"Science, technology, engineering, and mathematics\",\"varianttitles\":{\"en\":\"Science, technology, engineering, and mathematics\"}},{\"pageid\":13118744,\"ns\":0,\"title\":\"Scientology\",\"index\":14,\"description\":\"Beliefs and practices and associated movement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg/320px-Church_of_Scientology_building_in_Los_Angeles%2C_Fountain_Avenue.jpg\",\"width\":320,\"height\":228},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:57:49Z\",\"lastrevid\":1224639439,\"length\":206002,\"displaytitle\":\"Scientology\",\"varianttitles\":{\"en\":\"Scientology\"}},{\"pageid\":16565139,\"ns\":0,\"title\":\"Schengen Area\",\"index\":5,\"description\":\"Area of 29 European states without mutual border controls\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:59:53Z\",\"lastrevid\":1224138185,\"length\":258944,\"displaytitle\":\"Schengen Area\",\"varianttitles\":{\"en\":\"Schengen Area\"}},{\"pageid\":20913246,\"ns\":0,\"title\":\"Scarlett Johansson\",\"index\":9,\"description\":\"American actress (born 1984)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg/320px-Scarlett_Johansson_by_Gage_Skidmore_2_%28cropped%2C_2%29.jpg\",\"width\":320,\"height\":498},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:01:37Z\",\"lastrevid\":1224575630,\"length\":202536,\"displaytitle\":\"Scarlett Johansson\",\"varianttitles\":{\"en\":\"Scarlett Johansson\"}},{\"pageid\":48077208,\"ns\":0,\"title\":\"Sci-Hub\",\"index\":15,\"description\":\"Scientific research paper file sharing website\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/80/Sci-hub_screen_shot.png/320px-Sci-hub_screen_shot.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:10:13Z\",\"lastrevid\":1224715159,\"length\":100790,\"displaytitle\":\"Sci-Hub\",\"varianttitles\":{\"en\":\"Sci-Hub\"}},{\"pageid\":54256563,\"ns\":0,\"title\":\"Scottie Scheffler\",\"index\":3,\"description\":\"American professional golfer (born 1996)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:20:20Z\",\"lastrevid\":1224708630,\"length\":52043,\"displaytitle\":\"Scottie Scheffler\",\"varianttitles\":{\"en\":\"Scottie Scheffler\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3b4c9002-37fd-4eee-9ec1-e864131f9b36","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.37400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":444862,"end_time":445193,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e9fccb5-c245-4d38-ba0d-45d9c5bcfd4b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.90100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","method":"get","status_code":200,"start_time":445137,"end_time":445720,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:03:33 GMT","etag":"W/\"1223290316/c85c3be0-158b-11ef-a9e5-76db261de79a\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42dd09bf-ffa9-4177-a33e-64657e636e18","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:27.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":14818,"java_free_heap":4349,"total_pss":83482,"rss":161116,"native_total_heap":36864,"native_free_heap":5008,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4335f5cc-3aa4-4322-8772-5cae6934b077","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.35800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":438525,"end_time":439177,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"704","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"53ce0da2-c212-4609-ac2c-75dc5d9fdeb0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:30.98900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg/320px-Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","method":"get","status_code":200,"start_time":443740,"end_time":443808,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"29707","content-disposition":"inline;filename*=UTF-8''Bundesarchiv_Bild_183-H04436%2C_Klagenfurt%2C_Adolf_Hitler%2C_Ehrenkompanie.jpg","content-length":"36518","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:48:24 GMT","etag":"0e664e18a7e8c56780982cdec4dcddf5","last-modified":"Wed, 29 Mar 2023 19:01:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"587457f7-d345-48a3-92b5-dafaea6a7cae","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58dd307c-1098-4485-8516-5b9f940d7131","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:26.74800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":43643,"uptime":439567,"utime":69,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a3d6b76-9467-47e6-aa4b-64a3ba96fba8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.32800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","method":"get","status_code":200,"start_time":445099,"end_time":445147,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"24691","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"1015","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 02:12:01 GMT","etag":"W/\"1223290316/596e4ba0-158c-11ef-9522-c7a0c2b73d32\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/443","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1355\",\"titles\":{\"canonical\":\"Bangalore\",\"normalized\":\"Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBangalore\u003c/span\u003e\"},\"pageid\":44275267,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":640,\"height\":458},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223290316\",\"tid\":\"d22b1496-0f44-11ef-8b85-8777b462a886\",\"timestamp\":\"2024-05-11T03:16:13Z\",\"description\":\"Capital of Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97888889,\"lon\":77.59166667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bangalore\"}},\"extract\":\"Bangalore, officially Bengaluru, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than 8 million and a metropolitan population of around 15 million, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e, officially \u003cb\u003eBengaluru\u003c/b\u003e, is the capital and largest city of the southern Indian state of Karnataka. It has a population of more than \u003cspan class=\\\"nowrap\\\"\u003e8 million\u003c/span\u003e and a metropolitan population of around \u003cspan class=\\\"nowrap\\\"\u003e15 million\u003c/span\u003e, making it India's third most populous city and fourth most populous urban agglomeration. It is the most populous city and largest urban agglomeration in South India, and is the 27th largest city in the world. Located on the Deccan Plateau, at a height of over 900 m (3,000 ft) above sea level, Bangalore has a pleasant climate throughout the year, with its parks and green spaces earning it the reputation of India's \\\"Garden City\\\". Its elevation is the highest of India's major cities.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"753276be-d6ea-471e-b456-1e25ac8f12ca","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.55200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png","method":"get","status_code":200,"start_time":444066,"end_time":444371,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"18593","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"4332f2b58aa1329cfab7539c4f1728f2","last-modified":"Fri, 03 Jan 2020 02:00:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75e3f617-a93d-495d-9f8c-1152762aa7bc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.20400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"766acf39-c1f0-4ab0-bddd-f3b877d992ed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.74500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":43643,"uptime":445564,"utime":172,"cutime":0,"cstime":0,"stime":134,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7bf3cbc3-d54e-463c-bb26-389e99ed889c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":null,"start_time":445797,"end_time":445798,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"839eab92-ed09-445d-af80-a46fbb8e7e72","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.03200000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":1731,"x":459.9756,"y":309.96094,"touch_down_time":444777,"touch_up_time":444848},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85df57c5-6b2c-4e97-bd98-1dd22694f09c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"85f394f3-d874-4de8-b6af-91635217e51a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.51000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bangalore_Medical_College_and_Research_Institute.jpg/320px-Bangalore_Medical_College_and_Research_Institute.jpg","method":"get","status_code":200,"start_time":444063,"end_time":444329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"56063","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"0eabf42026cfaa93bb864a0f792af18d","last-modified":"Sun, 16 Feb 2020 09:41:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f2185a2-125f-475c-91f0-bdd2301aa082","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.09300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2e0afa5-e1d3-450f-b990-89c3b616e61a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=sc\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":441687,"end_time":441880,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6c13d8f-88ab-4333-b41f-4389607b105a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5517be6-9227-46c5-919b-cc4fb7493354","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.65800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=bangalore\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":444054,"end_time":444477,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-kmz8x","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"e2pm726c46ptnwr5s7wscl6z1"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":37533,\"ns\":0,\"title\":\"Indian Institute of Science\",\"redirecttitle\":\"Indian Institute of Science Bangalore\",\"index\":16,\"description\":\"Public university for scientific research and higher education in Bangalore\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3b/Indian_Institute_of_Science_2019_logo.svg/320px-Indian_Institute_of_Science_2019_logo.svg.png\",\"width\":320,\"height\":286},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1222905910,\"length\":98459,\"displaytitle\":\"Indian Institute of Science\",\"varianttitles\":{\"en\":\"Indian Institute of Science\"}},{\"pageid\":277784,\"ns\":0,\"title\":\"Bangalore torpedo\",\"index\":6,\"description\":\"Explosive charge to clear obstacles\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:59Z\",\"lastrevid\":1210428508,\"length\":17808,\"displaytitle\":\"Bangalore torpedo\",\"varianttitles\":{\"en\":\"Bangalore torpedo\"}},{\"pageid\":652234,\"ns\":0,\"title\":\"Whitefield, Bangalore\",\"index\":11,\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg/320px-Prestige_Shantiniketan_In_Whitefield_Main_Road.jpg\",\"width\":320,\"height\":182},\"coordinates\":[{\"lat\":12.97,\"lon\":77.715,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:12:24Z\",\"lastrevid\":1223602569,\"length\":16938,\"displaytitle\":\"Whitefield, Bangalore\",\"varianttitles\":{\"en\":\"Whitefield, Bangalore\"}},{\"pageid\":920017,\"ns\":0,\"title\":\"Bangalore IT.in\",\"index\":4,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:13:29Z\",\"lastrevid\":1209907618,\"length\":1333,\"displaytitle\":\"Bangalore IT.in\",\"varianttitles\":{\"en\":\"Bangalore IT.in\"}},{\"pageid\":2192062,\"ns\":0,\"title\":\"Bangalore (disambiguation)\",\"index\":17,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-04-27T01:58:17Z\",\"lastrevid\":1189264050,\"length\":1062,\"displaytitle\":\"Bangalore (disambiguation)\",\"varianttitles\":{\"en\":\"Bangalore (disambiguation)\"}},{\"pageid\":2409948,\"ns\":0,\"title\":\"Namma Metro\",\"redirecttitle\":\"Bangalore metro\",\"index\":7,\"description\":\"Rapid transit system in Bengaluru, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Metro_Trains_of_Namma_Metro.jpg/320px-Metro_Trains_of_Namma_Metro.jpg\",\"width\":320,\"height\":257},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:50:47Z\",\"lastrevid\":1222695638,\"length\":148660,\"displaytitle\":\"Namma Metro\",\"varianttitles\":{\"en\":\"Namma Metro\"}},{\"pageid\":2912063,\"ns\":0,\"title\":\"Bangalore division\",\"index\":5,\"description\":\"Place in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Karnataka-divisions-Bangalore.png/320px-Karnataka-divisions-Bangalore.png\",\"width\":320,\"height\":506},\"coordinates\":[{\"lat\":12.9667,\"lon\":77.5667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:21:45Z\",\"lastrevid\":1221849884,\"length\":4625,\"displaytitle\":\"Bangalore division\",\"varianttitles\":{\"en\":\"Bangalore division\"}},{\"pageid\":3950518,\"ns\":0,\"title\":\"Economy of Bangalore\",\"index\":19,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/UB_City_Bangalore.JPG/320px-UB_City_Bangalore.JPG\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:25:10Z\",\"lastrevid\":1220141129,\"length\":27299,\"displaytitle\":\"Economy of Bangalore\",\"varianttitles\":{\"en\":\"Economy of Bangalore\"}},{\"pageid\":4044762,\"ns\":0,\"title\":\"Bengaluru Airport\",\"redirecttitle\":\"Bangalore Airport\",\"index\":8,\"description\":\"International airport in Bangalore, Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/5/55/Kempegowda_International_Airport_Bengaluru_Logo.svg/320px-Kempegowda_International_Airport_Bengaluru_Logo.svg.png\",\"width\":320,\"height\":261},\"coordinates\":[{\"lat\":13.20694444,\"lon\":77.70416667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:53:10Z\",\"lastrevid\":1224574455,\"length\":132714,\"displaytitle\":\"Bengaluru Airport\",\"varianttitles\":{\"en\":\"Bengaluru Airport\"}},{\"pageid\":6326799,\"ns\":0,\"title\":\"Bangalore University\",\"index\":15,\"description\":\"State university in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/34/Bangalore_University_logo.png\",\"width\":229,\"height\":249},\"coordinates\":[{\"lat\":12.938775,\"lon\":77.50318056,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T15:13:23Z\",\"lastrevid\":1220407971,\"length\":12920,\"displaytitle\":\"Bangalore University\",\"varianttitles\":{\"en\":\"Bangalore University\"}},{\"pageid\":8599775,\"ns\":0,\"title\":\"Bangalore Palace\",\"index\":18,\"description\":\"Royal palace in India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Bangalore_Mysore_Maharaja_Palace.jpg/320px-Bangalore_Mysore_Maharaja_Palace.jpg\",\"width\":320,\"height\":151},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:34:38Z\",\"lastrevid\":1219003008,\"length\":6055,\"displaytitle\":\"Bangalore Palace\",\"varianttitles\":{\"en\":\"Bangalore Palace\"}},{\"pageid\":15861688,\"ns\":0,\"title\":\"Royal Challengers Bangalore\",\"index\":2,\"description\":\"Bangalore based franchise in the Indian Premier League\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/0/0a/Royal_Challengers_Bengaluru_Logo.png\",\"width\":267,\"height\":373},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:32:47Z\",\"lastrevid\":1224730459,\"length\":90102,\"displaytitle\":\"Royal Challengers Bangalore\",\"varianttitles\":{\"en\":\"Royal Challengers Bangalore\"}},{\"pageid\":18626775,\"ns\":0,\"title\":\"Bangalore Central Lok Sabha constituency\",\"index\":12,\"description\":\"Constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_Central_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg\",\"width\":320,\"height\":439},\"coordinates\":[{\"lat\":12.99,\"lon\":77.61,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:08:22Z\",\"lastrevid\":1221142229,\"length\":13722,\"displaytitle\":\"Bangalore Central Lok Sabha constituency\",\"varianttitles\":{\"en\":\"Bangalore Central Lok Sabha constituency\"}},{\"pageid\":26809312,\"ns\":0,\"title\":\"Purple Line (Namma Metro)\",\"redirecttitle\":\"Purple Line (Bangalore Metro)\",\"index\":13,\"description\":\"Line of Bengaluru's Namma Metro\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Namma_Metro%27s_Purple_Line_trainset.jpg/320px-Namma_Metro%27s_Purple_Line_trainset.jpg\",\"width\":320,\"height\":161},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:51:03Z\",\"lastrevid\":1223987918,\"length\":54136,\"displaytitle\":\"Purple Line (Namma Metro)\",\"varianttitles\":{\"en\":\"Purple Line (Namma Metro)\"}},{\"pageid\":29580813,\"ns\":0,\"title\":\"Bangalore–Chennai Expressway\",\"index\":10,\"description\":\"Indian expressway connecting Bengaluru and Chennai\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Map_Bengaluru-Chennai_Expressway.svg/320px-Map_Bengaluru-Chennai_Expressway.svg.png\",\"width\":320,\"height\":128},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T05:20:26Z\",\"lastrevid\":1224250448,\"length\":13418,\"displaytitle\":\"Bangalore–Chennai Expressway\",\"varianttitles\":{\"en\":\"Bangalore–Chennai Expressway\"}},{\"pageid\":41594425,\"ns\":0,\"title\":\"Bangalore Days\",\"index\":3,\"description\":\"2014 film directed by Anjali Menon\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg\",\"width\":273,\"height\":364},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T16:25:46Z\",\"lastrevid\":1221013651,\"length\":35095,\"displaytitle\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eBangalore Days\u003c/i\u003e\"}},{\"pageid\":44275267,\"ns\":0,\"title\":\"Bangalore\",\"index\":1,\"description\":\"Capital of Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg\",\"width\":320,\"height\":229},\"coordinates\":[{\"lat\":12.97888889,\"lon\":77.59166667,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T17:16:22Z\",\"lastrevid\":1223290316,\"length\":198511,\"displaytitle\":\"Bangalore\",\"varianttitles\":{\"en\":\"Bangalore\"}},{\"pageid\":45249047,\"ns\":0,\"title\":\"Love in Bangalore\",\"index\":14,\"description\":\"1966 Indian film\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T12:28:46Z\",\"lastrevid\":1212970362,\"length\":1925,\"displaytitle\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eLove in Bangalore\u003c/i\u003e\"}},{\"pageid\":49213725,\"ns\":0,\"title\":\"Bangalore Blue\",\"index\":9,\"description\":\"Noir grape variety\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Blue_grapes_in_vineyard.jpg/320px-Blue_grapes_in_vineyard.jpg\",\"width\":320,\"height\":425},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T18:56:11Z\",\"lastrevid\":1147235604,\"length\":4448,\"displaytitle\":\"Bangalore Blue\",\"varianttitles\":{\"en\":\"Bangalore Blue\"}},{\"pageid\":64312095,\"ns\":0,\"title\":\"Bangalore South Assembly constituency\",\"index\":20,\"description\":\"Vidhana Sabha constituency in Karnataka, India\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/176-Bangalore_South_constituency.svg/320px-176-Bangalore_South_constituency.svg.png\",\"width\":320,\"height\":316},\"coordinates\":[{\"lat\":12.86,\"lon\":77.58,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T09:23:25Z\",\"lastrevid\":1213122229,\"length\":8807,\"displaytitle\":\"Bangalore South Assembly constituency\",\"varianttitles\":{\"en\":\"Bangalore South Assembly constituency\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb424ca9-1a7a-4497-96bc-df809fc8419c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.98300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Flag_of_Belarus.svg/46px-Flag_of_Belarus.svg.png","method":"get","status_code":200,"start_time":445731,"end_time":445802,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13839","content-disposition":"inline;filename*=UTF-8''Flag_of_Belarus.svg.webp","content-length":"328","content-type":"image/webp","date":"Mon, 20 May 2024 05:12:54 GMT","etag":"22b0881547d06a0a7abe5e914011fd27","last-modified":"Tue, 23 Jan 2024 23:32:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1468","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bf526972-039e-4c45-9ea6-b229f82fa7d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.11200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg","method":"get","status_code":200,"start_time":441708,"end_time":441931,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32703","content-disposition":"inline;filename*=UTF-8''Scottie_Scheffler_2023_01.jpg","content-length":"28013","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:58:25 GMT","etag":"0a5a95d6838ea5225265c871fcc485ea","last-modified":"Mon, 15 Apr 2024 00:29:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/41","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c3d974d7-6bed-4ef7-86fc-9a47511c3692","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdaf5ea3-1230-4eb8-a77e-30d77a3f353e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.06700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/320px-Flag_of_Scotland.svg.png","method":"get","status_code":200,"start_time":441706,"end_time":441886,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"13931","content-disposition":"inline;filename*=UTF-8''Flag_of_Scotland.svg.png","content-length":"1416","content-type":"image/png","date":"Mon, 20 May 2024 05:11:18 GMT","etag":"116e7ad3411fef2892a4f560eeb9ac88","last-modified":"Tue, 29 Nov 2022 04:40:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d02eead2-1b40-49e7-93f2-412ae3a02e3d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg/320px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","method":"get","status_code":200,"start_time":444057,"end_time":444109,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"70814","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"33213","content-type":"image/jpeg","date":"Sun, 19 May 2024 13:23:16 GMT","etag":"a77891f913653956636f4e78e9f85235","last-modified":"Tue, 07 May 2024 15:28:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d764d4b6-d648-4f3e-8322-b9f6000acea9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/5/5c/%27Bangalore_Days%27_2014_Malayalam_Film_-_Poster.jpg","method":"get","status_code":200,"start_time":444060,"end_time":444120,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"27582","content-length":"18792","content-type":"image/jpeg","date":"Mon, 20 May 2024 01:23:48 GMT","etag":"e9ffa25766587d06e79ff3dd741c597d","last-modified":"Mon, 16 Oct 2017 22:45:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/33","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"42h4vxu7q87nt73606bmuy05qbjngxl"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d7a30ad8-4b8e-40a0-8946-e7303171f40b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.01800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Cloth_embroidered_by_a_schizophrenia_sufferer.jpg/320px-Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","method":"get","status_code":200,"start_time":443748,"end_time":443837,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"72961","content-disposition":"inline;filename*=UTF-8''Cloth_embroidered_by_a_schizophrenia_sufferer.jpg","content-length":"38362","content-type":"image/jpeg","date":"Sun, 19 May 2024 12:47:30 GMT","etag":"aa706922e801305aca334599b4f39fa0","last-modified":"Sat, 25 Dec 2021 09:15:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/9","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d880b56d-b684-4eda-9268-336a556f2d3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.81800000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":null,"start_time":445635,"end_time":445636,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d9c0e3fd-b810-4891-838e-f9dd6e34451c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.19900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Map_of_the_Schengen_Area.svg/320px-Map_of_the_Schengen_Area.svg.png","method":"get","status_code":200,"start_time":443745,"end_time":444018,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Map_of_the_Schengen_Area.svg.png","content-length":"39412","content-type":"image/png","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f2546c5b669cc609c38f9a34aa3e6e9d","last-modified":"Sun, 31 Mar 2024 09:12:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e06e9a69-d791-4a62-adfa-d98199d7483c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.74700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15468,"java_free_heap":795,"total_pss":96401,"rss":173048,"native_total_heap":45056,"native_free_heap":5333,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11cd222-e695-4fdb-a294-871b07429e34","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.82500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":null,"start_time":445642,"end_time":445644,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1aaa75b-f364-40e6-aebd-721dc43cfec3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.62600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=s\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":null,"start_time":442085,"end_time":442445,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e72d75b6-cc4c-4f24-beb8-212c4107baed","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.29600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf/page1-320px-Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","method":"get","status_code":200,"start_time":444061,"end_time":444115,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"65960","content-disposition":"inline;filename*=UTF-8''Bangalore_North_Lok_Sabha_Constituency_Map_with_district_boundary_%282009_-_Present%29.pdf.jpg","content-length":"31020","content-type":"image/jpeg","date":"Sun, 19 May 2024 14:44:11 GMT","etag":"08b33c6ca658bce29fcf7e4b7a8f05d6","last-modified":"Sun, 03 Sep 2023 00:40:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e8c64f9d-60be-4071-aeac-3a25d8a3f7ce","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.40400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg/640px-Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_(2007).jpg","method":"get","status_code":200,"start_time":445163,"end_time":445223,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11994","content-disposition":"inline;filename*=UTF-8''Bagmane_Tech_Park%2C_CV_Raman_Nagar%2C_Bengaluru%2C_India_%282007%29.jpg","content-length":"86275","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:43:39 GMT","etag":"0d0008172016fe7d7be9c073762e4520","last-modified":"Tue, 07 May 2024 15:34:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eb7e39b3-c886-4944-a778-965e3c480f7a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.83000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":null,"start_time":445639,"end_time":445649,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0475d0-3299-42c2-88fe-7d13a7df094b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.30600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Bangalore_South_Constituencies.gif/320px-Bangalore_South_Constituencies.gif","method":"get","status_code":200,"start_time":444064,"end_time":444125,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"8935","content-length":"12268","content-type":"image/gif","date":"Mon, 20 May 2024 06:34:35 GMT","etag":"1358f74d5c77a355cff8a92a55e4f0b4","last-modified":"Thu, 19 Jul 2018 05:50:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f35cf97a-5bda-4130-a6a2-bf7528059fa3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.54500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Brigade_Road_Bangalore.jpg/320px-Brigade_Road_Bangalore.jpg","method":"get","status_code":200,"start_time":444065,"end_time":444364,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Brigade_Road_Bangalore.jpg","content-length":"33965","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:31 GMT","etag":"f521e65ca0e6ef701eccd34fa7f43aa1","last-modified":"Mon, 07 Aug 2023 23:58:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f363c188-b88a-4077-8ba7-7bd5975881d9","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:29.27400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/320px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":441702,"end_time":442093,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"15872","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:29 GMT","etag":"8ef639120e64588af7912ced4f2670b2","last-modified":"Sat, 27 Feb 2016 04:12:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"eyxrcp83otgt6lam7bflqzgsciop8pe"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f6cd5c59-2f0c-47fa-9bdb-53100bc3931c","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.04200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f846ac03-1d92-4e21-981b-db3bbdde169b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:31.36600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/2/2f/Bangalore_Metropolitan_Transport_Corporation_logo.png","method":"get","status_code":200,"start_time":444067,"end_time":444184,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25040","content-length":"108611","content-type":"image/png","date":"Mon, 20 May 2024 02:06:10 GMT","etag":"1df3af57bc9e53f01563d0903c555eb4","last-modified":"Sat, 07 Apr 2018 14:27:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/7","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"bf5j4qbkjfu4k6au3h63waco77l0jfr"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf00dab-e951-4745-aea6-6568fad0f660","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:32.60300000Z","type":"http","http":{"url":"https://donate.wikimedia.org/wiki/MediaWiki:AppsCampaignConfig.json?action=raw","method":"get","status_code":304,"start_time":445154,"end_time":445422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"donate.wikimedia.org","if-modified-since":"Fri, 29 Dec 2023 14:07:42 GMT","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","date":"Mon, 20 May 2024 09:03:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie","x-cache":"cp5023 hit, cp5023 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"DefaultDispatcher-worker-7","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json index 8900e233a..537d12655 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/579bdc09-24e1-4dcc-ba7d-e954505a9341.json @@ -1 +1 @@ -[{"id":"01890716-db31-4706-a700-262310951c37","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07d6b463-58a6-4f41-8f2e-f79ba5367ebe","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.00600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","method":"get","status_code":200,"start_time":445864,"end_time":446825,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"cilesz1hwtkea6orxvpf8zjse","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":16880,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1185\",\"titles\":{\"canonical\":\"Karnataka\",\"normalized\":\"Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Gagan_Mahal_Bijapura.jpg/320px-Gagan_Mahal_Bijapura.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c8/Gagan_Mahal_Bijapura.jpg\",\"width\":1141,\"height\":762},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221678390\",\"tid\":\"f3048d21-07a3-11ef-bede-8f2058ec9a14\",\"timestamp\":\"2024-05-01T10:17:01Z\",\"description\":\"State in southern India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97,\"lon\":77.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka\"}},\"extract\":\"Karnataka, also known colloquially as Karunāḍu, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed Karnataka in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKarnataka\u003c/b\u003e, also known colloquially as \u003cb\u003eKarunāḍu\u003c/b\u003e, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed \u003ci\u003eKarnataka\u003c/i\u003e in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka\"},{\"pageid\":70023,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Mysore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10086\",\"titles\":{\"canonical\":\"Mysore\",\"normalized\":\"Mysore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Mysuru_Montage.jpg/320px-Mysuru_Montage.jpg\",\"width\":320,\"height\":561},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/56/Mysuru_Montage.jpg\",\"width\":1000,\"height\":1754},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223068352\",\"tid\":\"fba44fe0-0e2b-11ef-941e-facbc4e8df99\",\"timestamp\":\"2024-05-09T17:45:54Z\",\"description\":\"City in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.30861111,\"lon\":76.65305556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore\"}},\"extract\":\"Mysore, officially Mysuru, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore\u003c/b\u003e, officially \u003cb\u003eMysuru\u003c/b\u003e, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore\"},{\"pageid\":1380947,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Sullia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2571896\",\"titles\":{\"canonical\":\"Sullia\",\"normalized\":\"Sullia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/NMC_Sullia_front_view.jpg/320px-NMC_Sullia_front_view.jpg\",\"width\":320,\"height\":152},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8c/NMC_Sullia_front_view.jpg\",\"width\":1598,\"height\":759},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761149\",\"tid\":\"8421b874-1686-11ef-a103-4e90a2abe26d\",\"timestamp\":\"2024-05-20T08:54:07Z\",\"description\":\"Town in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.55805556,\"lon\":75.38916667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.wikipedia.org/wiki/Sullia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sullia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sullia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sullia\"}},\"extract\":\"Sullia is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSullia\u003c/b\u003e is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\u003c/p\u003e\",\"normalizedtitle\":\"Sullia\"},{\"pageid\":1468641,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Domlur\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3595289\",\"titles\":{\"canonical\":\"Domlur\",\"normalized\":\"Domlur\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Domlur_BusDepot.JPG/320px-Domlur_BusDepot.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ed/Domlur_BusDepot.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217931298\",\"tid\":\"55211a03-f5d9-11ee-a0d5-711647236d2f\",\"timestamp\":\"2024-04-08T18:53:48Z\",\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.9608157,\"lon\":77.6361322},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.wikipedia.org/wiki/Domlur?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Domlur\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Domlur\",\"edit\":\"https://en.m.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Domlur\"}},\"extract\":\"Domlur is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDomlur\u003c/b\u003e is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\u003c/p\u003e\",\"normalizedtitle\":\"Domlur\"},{\"pageid\":1728245,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Kempe_Gowda_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6387049\",\"titles\":{\"canonical\":\"Kempe_Gowda_I\",\"normalized\":\"Kempe Gowda I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Kempegowda_I.jpg/320px-Kempegowda_I.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ac/Kempegowda_I.jpg\",\"width\":810,\"height\":1001},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224445989\",\"tid\":\"4e12eb13-1519-11ef-aebb-a6511243e4ff\",\"timestamp\":\"2024-05-18T13:19:50Z\",\"description\":\"Founder of Bangalore (1510–1569)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kempe_Gowda_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"}},\"extract\":\"Kempe Gowda I locally venerated as Nadaprabhu Kempe Gowda, or commonly known as Kempe Gowda, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored Ganga-gauri-vilasa, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKempe Gowda I\u003c/b\u003e locally venerated as \u003cb\u003eNadaprabhu Kempe Gowda\u003c/b\u003e, or commonly known as \u003cb\u003eKempe Gowda\u003c/b\u003e, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored \u003ci\u003eGanga-gauri-vilasa\u003c/i\u003e, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\u003c/p\u003e\",\"normalizedtitle\":\"Kempe Gowda I\"},{\"pageid\":1859572,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Vishnuvardhan_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2097394\",\"titles\":{\"canonical\":\"Vishnuvardhan_(actor)\",\"normalized\":\"Vishnuvardhan (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Vishnuvardhan_2013_stamp_of_India.jpg/320px-Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":926,\"height\":692},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224093492\",\"tid\":\"e5293ca4-1349-11ef-9498-28fe94e6da64\",\"timestamp\":\"2024-05-16T06:02:37Z\",\"description\":\"Indian actor (1950–2009)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Vishnuvardhan_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"}},\"extract\":\"Sampath Kumar, known by his stage name Vishnuvardhan, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema. Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSampath Kumar\u003c/b\u003e, known by his stage name \u003cb\u003eVishnuvardhan\u003c/b\u003e, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema\u003ci\u003e.\u003c/i\u003e Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\u003c/p\u003e\",\"normalizedtitle\":\"Vishnuvardhan (actor)\"},{\"pageid\":2660511,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"History_of_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16056635\",\"titles\":{\"canonical\":\"History_of_Bangalore\",\"normalized\":\"History of Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg/320px-Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":320,\"height\":519},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":1161,\"height\":1884},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223594812\",\"tid\":\"fae91352-10e2-11ef-90f8-e15901067025\",\"timestamp\":\"2024-05-13T04:40:53Z\",\"description\":\"Account of past events in Bengaluru, India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:History_of_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/History_of_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:History_of_Bangalore\"}},\"extract\":\"Bangalore is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\u003c/p\u003e\",\"normalizedtitle\":\"History of Bangalore\"},{\"pageid\":3820976,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4978693\",\"titles\":{\"canonical\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"normalized\":\"Bruhat Bengaluru Mahanagara Palike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Bbmp..jpg/320px-Bbmp..jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4d/Bbmp..jpg\",\"width\":474,\"height\":355},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223428088\",\"tid\":\"6313e564-1002-11ef-891b-34bed192305e\",\"timestamp\":\"2024-05-12T01:53:11Z\",\"description\":\"Administrative body for the city of Bengaluru\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bruhat_Bengaluru_Mahanagara_Palike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"}},\"extract\":\"Bruhat Bengaluru Mahanagara Palike (BBMP) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km2. Its boundaries have expanded more than 10 times over the last six decades.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBruhat Bengaluru Mahanagara Palike\u003c/b\u003e (\u003cb\u003eBBMP\u003c/b\u003e) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km\u003csup\u003e2\u003c/sup\u003e. Its boundaries have expanded more than 10 times over the last six decades.\u003c/p\u003e\",\"normalizedtitle\":\"Bruhat Bengaluru Mahanagara Palike\"},{\"pageid\":8010315,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Mysore_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1529219\",\"titles\":{\"canonical\":\"Mysore_Airport\",\"normalized\":\"Mysore Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Mysore_Airport.jpg/320px-Mysore_Airport.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Mysore_Airport.jpg\",\"width\":6000,\"height\":3375},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221901149\",\"tid\":\"229dd7aa-08aa-11ef-b1e4-c7f994ba9d24\",\"timestamp\":\"2024-05-02T17:33:49Z\",\"description\":\"Airport in Mysuru, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.2325,\"lon\":76.65638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore_Airport\"}},\"extract\":\"Mysore Airport, also known as Mandakalli Airport, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore Airport\u003c/b\u003e, also known as \u003cb\u003eMandakalli Airport\u003c/b\u003e, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore Airport\"},{\"pageid\":9387475,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Education_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5341051\",\"titles\":{\"canonical\":\"Education_in_Karnataka\",\"normalized\":\"Education in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Iisc-Founder.jpg/320px-Iisc-Founder.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/76/Iisc-Founder.jpg\",\"width\":480,\"height\":640},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210322104\",\"tid\":\"7aebbc8e-d44a-11ee-8b01-3af3a6ee520f\",\"timestamp\":\"2024-02-26T01:58:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Education_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Education_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Education_in_Karnataka\"}},\"extract\":\"The state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\",\"extract_html\":\"\u003cp\u003eThe state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\u003c/p\u003e\",\"normalizedtitle\":\"Education in Karnataka\"},{\"pageid\":10512950,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Karnataka_Rakshana_Vedike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3520980\",\"titles\":{\"canonical\":\"Karnataka_Rakshana_Vedike\",\"normalized\":\"Karnataka Rakshana Vedike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220018590\",\"tid\":\"46673f46-ffc1-11ee-9790-b9ab8d6af39d\",\"timestamp\":\"2024-04-21T09:26:47Z\",\"description\":\"Regionalistic group in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka_Rakshana_Vedike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"}},\"extract\":\"\\n\\nThe Karnataka Rakshana Vedike, popularly known as, KaRaVe and abbreviated as the KRV is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\nThe \u003cb\u003eKarnataka Rakshana Vedike\u003c/b\u003e, popularly known as, \u003cb\u003eKaRaVe\u003c/b\u003e and abbreviated as the \u003cb\u003eKRV\u003c/b\u003e is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka Rakshana Vedike\"},{\"pageid\":11661332,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Media_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6805710\",\"titles\":{\"canonical\":\"Media_in_Karnataka\",\"normalized\":\"Media in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184421697\",\"tid\":\"07f5266d-7fa2-11ee-b9ec-9c2b5ad4ac79\",\"timestamp\":\"2023-11-10T08:20:39Z\",\"description\":\"Overview of the media in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Media_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Media_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Media_in_Karnataka\"}},\"extract\":\"\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\",\"extract_html\":\"\u003cp\u003e\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\u003c/p\u003e\",\"normalizedtitle\":\"Media in Karnataka\"},{\"pageid\":15749661,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"List_of_tourist_attractions_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6643497\",\"titles\":{\"canonical\":\"List_of_tourist_attractions_in_Bangalore\",\"normalized\":\"List of tourist attractions in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Vidhana_Soudha_sunset.jpg\",\"width\":2027,\"height\":890},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217869735\",\"tid\":\"9bec158d-f593-11ee-bcea-f90d3955aa30\",\"timestamp\":\"2024-04-08T10:34:42Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_tourist_attractions_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"}},\"extract\":\"Bengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\",\"extract_html\":\"\u003cp\u003eBengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\u003c/p\u003e\",\"normalizedtitle\":\"List of tourist attractions in Bangalore\"},{\"pageid\":19041261,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Lakes_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6478987\",\"titles\":{\"canonical\":\"Lakes_in_Bangalore\",\"normalized\":\"Lakes in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222719449\",\"tid\":\"b85ab411-0c82-11ef-81ad-288042c6a3ef\",\"timestamp\":\"2024-05-07T15:01:45Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lakes_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"}},\"extract\":\"Lakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\",\"extract_html\":\"\u003cp\u003eLakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\u003c/p\u003e\",\"normalizedtitle\":\"Lakes in Bangalore\"},{\"pageid\":30806004,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Rajarajeshwari_Nagar,_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5320813\",\"titles\":{\"canonical\":\"Rajarajeshwari_Nagar,_Bangalore\",\"normalized\":\"Rajarajeshwari Nagar, Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg/320px-Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224389480\",\"tid\":\"27c2652a-14c3-11ef-97ec-318a54a06244\",\"timestamp\":\"2024-05-18T03:03:09Z\",\"description\":\"Neighborhood in Bengaluru, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.929949,\"lon\":77.536011},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Rajarajeshwari_Nagar%2C_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"}},\"extract\":\"Rajarajeshwari Nagar, officially Rajarajeshwari Nagara is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRajarajeshwari Nagar,\u003c/b\u003e officially \u003cb\u003eRajarajeshwari Nagara\u003c/b\u003e is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\u003c/p\u003e\",\"normalizedtitle\":\"Rajarajeshwari Nagar, Bangalore\"},{\"pageid\":30872437,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"S._L._Bhyrappa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5246375\",\"titles\":{\"canonical\":\"S._L._Bhyrappa\",\"normalized\":\"S. L. Bhyrappa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/S.L.Bhyrappa.jpg/320px-S.L.Bhyrappa.jpg\",\"width\":320,\"height\":460},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/S.L.Bhyrappa.jpg\",\"width\":2498,\"height\":3592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216323851\",\"tid\":\"c39bfe7e-ee82-11ee-8c4a-fea0472edf16\",\"timestamp\":\"2024-03-30T10:46:29Z\",\"description\":\"Indian novelist, philosopher and screenwriter\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/S._L._Bhyrappa\",\"edit\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"}},\"extract\":\"Santeshivara Lingannaiah Bhyrappa is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSanteshivara Lingannaiah Bhyrappa\u003c/b\u003e is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\u003c/p\u003e\",\"normalizedtitle\":\"S. L. Bhyrappa\"},{\"pageid\":36724102,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6603582\",\"titles\":{\"canonical\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"normalized\":\"List of Vijayanagara era temples in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg/320px-View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":4608,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1175359699\",\"tid\":\"bf0b5a2b-530b-11ee-a780-035970c51a51\",\"timestamp\":\"2023-09-14T14:34:01Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Vijayanagara_era_temples_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"}},\"extract\":\"\\n\\n\\nThe List of Vijayanagara era temples in Karnataka includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\",\"extract_html\":\"\u003cp\u003e\\n\\n\\nThe \u003cb\u003eList of Vijayanagara era temples in Karnataka\u003c/b\u003e includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\u003c/p\u003e\",\"normalizedtitle\":\"List of Vijayanagara era temples in Karnataka\"},{\"pageid\":47496105,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Prakash_Belawadi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7238168\",\"titles\":{\"canonical\":\"Prakash_Belawadi\",\"normalized\":\"Prakash Belawadi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Prakash_Belavadi_4.jpg/320px-Prakash_Belavadi_4.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Prakash_Belavadi_4.jpg\",\"width\":731,\"height\":548},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222797567\",\"tid\":\"487108c8-0ccc-11ef-827c-9c8edf2a32b0\",\"timestamp\":\"2024-05-07T23:48:20Z\",\"description\":\"Indian film director\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prakash_Belawadi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prakash_Belawadi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prakash_Belawadi\"}},\"extract\":\"Prakash Belawadi is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrakash Belawadi\u003c/b\u003e is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\u003c/p\u003e\",\"normalizedtitle\":\"Prakash Belawadi\"},{\"pageid\":50300633,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Jayciana\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24950637\",\"titles\":{\"canonical\":\"Jayciana\",\"normalized\":\"Jayciana\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220540943\",\"tid\":\"538e6384-0239-11ef-80db-046bfbaf07f2\",\"timestamp\":\"2024-04-24T12:51:11Z\",\"description\":\"Annual cultural festival\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.wikipedia.org/wiki/Jayciana?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jayciana\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jayciana\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jayciana\"}},\"extract\":\"Jayciana is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJayciana\u003c/b\u003e is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\u003c/p\u003e\",\"normalizedtitle\":\"Jayciana\"},{\"pageid\":66277810,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104903080\",\"titles\":{\"canonical\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"normalized\":\"2015 Bruhat Bengaluru Mahanagara Palike election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/320px-Lotus_flower_symbol.svg.png\",\"width\":320,\"height\":311},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/340px-Lotus_flower_symbol.svg.png\",\"width\":340,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218535775\",\"tid\":\"59cf1993-f8a8-11ee-8d79-f8805439f155\",\"timestamp\":\"2024-04-12T08:40:44Z\",\"description\":\"2015 election in India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"}},\"extract\":\"The 2015 Bruhat Bengaluru Mahanagara Palike election was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/b\u003e was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\u003c/p\u003e\",\"normalizedtitle\":\"2015 Bruhat Bengaluru Mahanagara Palike election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"097ec691-25f2-404d-b694-e925601b21af","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17719,"java_free_heap":5407,"total_pss":167889,"rss":262560,"native_total_heap":79872,"native_free_heap":5795,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a8e6c6-feb8-402b-99b3-30a55752e97b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/32px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":445893,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44707","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1036","content-type":"image/webp","date":"Sun, 19 May 2024 20:38:25 GMT","etag":"cd739a43c44b181292f80f73d577c105","last-modified":"Thu, 08 Jun 2023 05:53:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2982","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"16efd73a-5d9f-4a6b-89b0-3800990a6ed1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.32000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"22216446-310d-4e6a-9ae5-d2a61c3673e0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.96500000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":919.9512,"y":205.95703,"touch_down_time":451653,"touch_up_time":451782},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b477b78-bcf8-4a9e-b0b3-75aad4664124","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/38px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":445940,"end_time":445986,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"16013","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"1648","content-type":"image/webp","date":"Mon, 20 May 2024 04:36:40 GMT","etag":"f23eec45f0a338280a1d8cb9b39ccc75","last-modified":"Fri, 08 Sep 2023 17:18:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/977","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c7dfd53-6318-403d-8968-136763ddfcb6","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/36px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":445911,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9211","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"1606","content-type":"image/webp","date":"Mon, 20 May 2024 06:30:02 GMT","etag":"70423aa778261ff9ae4261991f013674","last-modified":"Sun, 06 Aug 2023 03:57:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/622","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f54bc85-ef1a-41f9-991f-83508326ac38","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.73200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"page_toolbar_button_show_overflow_menu","width":126,"height":126,"x":1009.96216,"y":182.98828,"touch_down_time":453453,"touch_up_time":453544},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3749a6c5-f0b4-4267-b177-b00e2f436be2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.87300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":440.95825,"y":1468.9453,"end_x":464.98535,"end_y":986.9531,"direction":"up","touch_down_time":446140,"touch_up_time":446691},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3bb86a55-1d02-470a-b0b0-03cb314e44d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.99500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f67b454-4def-4a6d-afff-91b4e39ae616","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/42px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":445868,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53433","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"1908","content-type":"image/webp","date":"Sun, 19 May 2024 18:13:00 GMT","etag":"9eb22eceec2d1971062ce08b67dcf9d1","last-modified":"Wed, 24 May 2023 14:58:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1035","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42354935-daae-41b2-aaee-9d106d83401e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/38px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":445819,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11063","content-length":"1174","content-type":"image/webp","date":"Mon, 20 May 2024 05:59:09 GMT","etag":"da286f6370a9d33991278d05967df0d1","last-modified":"Fri, 21 Jun 2019 08:25:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/261","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4d314163-274d-4ee4-a553-3fe53c43d558","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/42px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445776,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"57502","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"226","content-type":"image/webp","date":"Sun, 19 May 2024 17:05:10 GMT","etag":"f8b6d8e11e2a7c4dd8ac9388127be890","last-modified":"Sun, 23 Jul 2023 02:01:59 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1442","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"504e2ccc-d49e-4012-b288-7ada75447e4e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.72000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"505e805e-7539-4c13-a4fa-cfc370d249dc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52c13ba3-368e-4a0d-82d8-bec835cca1ea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b226149-7edd-4a5a-87b9-e46797f09421","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.20200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6162ff07-872c-4a07-b5ec-8d21952f59ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.58900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449128,"end_time":449408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"680f575d-eeeb-4a38-9e2f-a7b491adf3e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.33500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6986a335-2f6c-45dd-a0bf-d7d49589b3c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e004789-10bf-4e4f-801f-68a274380b59","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/28px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":445848,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"43774","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"836","content-type":"image/webp","date":"Sun, 19 May 2024 20:53:59 GMT","etag":"126f8494b0f116e1ee2b890ac64ea4d3","last-modified":"Sat, 16 Mar 2024 06:34:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1857","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71423733-5fee-419c-ba08-870284a59d23","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.29900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0435eb-f264-4df1-8d33-6c6016482897","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8be6c160-754d-444f-b5c1-2c68c04e42d2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449409,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"712","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9405717b-7603-4f9a-90c2-4d5287ab4c22","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/42px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":445954,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69339","content-disposition":"inline;filename*=UTF-8''Wikiversity_logo_2017.svg.webp","content-length":"562","content-type":"image/webp","date":"Sun, 19 May 2024 13:47:54 GMT","etag":"4a828dc89ddea450dcf8a0a529237641","last-modified":"Sat, 18 Dec 2021 10:16:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/880","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95daa89a-542f-44c7-9370-e80734196480","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.19500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":450698,"end_time":451013,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0ba2920-e465-4671-b9a9-2d86a08fffe8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.71600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a10b6579-b5c1-4907-ba1e-e24f94c7f22f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.87800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2174cd3-29a0-46d5-aa30-b49aee72abf3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.01900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":452531,"end_time":452838,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b13de324-39e8-4668-a2be-51704c96f738","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1c66dff-0680-4e09-9b73-8912605a408a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Bangalore_Palace.jpg/42px-Bangalore_Palace.jpg","method":"get","status_code":200,"start_time":445805,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"30598","content-disposition":"inline;filename*=UTF-8''Bangalore_Palace.jpg","content-length":"1106","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:33:34 GMT","etag":"a681d8eae4e88991c2f76c520d5595ca","last-modified":"Sat, 18 Dec 2021 07:38:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b23bef50-30a3-4cca-b2d3-5c3eb4cc91c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Openstreetmap_logo.svg/32px-Openstreetmap_logo.svg.png","method":"get","status_code":200,"start_time":445774,"end_time":445865,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36982","content-disposition":"inline;filename*=UTF-8''Openstreetmap_logo.svg.webp","content-length":"2404","content-type":"image/webp","date":"Sun, 19 May 2024 22:47:11 GMT","etag":"16a8ee4b7e7bc64dea201b90e5a4a6d3","last-modified":"Mon, 19 Sep 2022 10:52:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1679","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b2805971-2fba-4acd-b984-e0800830bd05","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":448565,"utime":248,"cutime":0,"cstime":0,"stime":194,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8f9e59f-4ac9-4522-ae0a-6392a92ef5ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17168,"java_free_heap":6064,"total_pss":168661,"rss":264472,"native_total_heap":66560,"native_free_heap":6093,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5273a31-336a-4bc8-9f7e-f47c3a28d65d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":43643,"uptime":451565,"utime":272,"cutime":0,"cstime":0,"stime":212,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5c16395-9eb1-42ca-b7df-598e26f3a6e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.10300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":525.9595,"y":465.9375,"end_x":521.97144,"end_y":745.95703,"direction":"down","touch_down_time":447656,"touch_up_time":447919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cb066e6e-e8b4-49b1-a4ac-ad14bf3d0e0e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17538,"java_free_heap":5033,"total_pss":172697,"rss":268200,"native_total_heap":71680,"native_free_heap":6427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdf298bf-4d1b-49da-aa7c-4cda57f3ffa5","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cee0e50e-8806-4e82-841b-cbe20c90a44e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.30000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cfdc0f27-5fc9-471b-8c94-fb36f55f9c81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.61300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":488.9795,"y":1251.9141,"end_x":511.9519,"end_y":409.98047,"direction":"up","touch_down_time":447042,"touch_up_time":447426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5d14e2d-b28d-4ecd-a02c-bc4160e30535","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.22100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/42px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":445997,"end_time":446039,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32409","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"198","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:24 GMT","etag":"b02818fe22f012e3bba0c3b2853b41a8","last-modified":"Thu, 04 Jan 2024 04:40:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1013","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6ccf0c9-1f29-449a-b9f3-dd0cef6d5231","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.28600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg","method":"get","status_code":200,"start_time":446848,"end_time":447105,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"12473","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:34 GMT","etag":"2c7bdca426cac204cbfdf15e3b71080e","last-modified":"Sat, 26 Mar 2016 10:36:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qw3ai9uecb9knskjpgi4oon5o4ug903"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8941c70-48d3-4dcc-89db-eac04a71dc3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.21200000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":904.95483,"y":149.9414,"touch_down_time":448957,"touch_up_time":449026},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e567f0c5-10b0-4669-8702-cbbf1c793160","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.38400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec4f7db5-556e-42da-878e-f80a9bc8ae45","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449410,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"706","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9d38c6-2f20-4fcf-8140-9785e36abd17","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/38px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":445987,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76214","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"518","content-type":"image/webp","date":"Sun, 19 May 2024 11:53:19 GMT","etag":"66771d756c5d4092be18d3ab3de44be0","last-modified":"Fri, 04 Aug 2023 01:39:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1541","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ecf6ec4c-4d9c-484b-90b7-828d07b78c9a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Terra.png/38px-Terra.png","method":"get","status_code":200,"start_time":445817,"end_time":445868,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58457","content-disposition":"inline;filename*=UTF-8''Terra.png.webp","content-length":"2948","content-type":"image/webp","date":"Sun, 19 May 2024 16:49:15 GMT","etag":"48f16c644a58aaca70b0719a23ae3cef","last-modified":"Thu, 27 Apr 2023 04:49:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/289","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0975435-c6a6-48e8-8b49-0d2008de2ff3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f2dfc82c-11c4-4b0b-931e-658c3d21c910","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17216,"java_free_heap":5996,"total_pss":155265,"rss":250772,"native_total_heap":91136,"native_free_heap":6339,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"01890716-db31-4706-a700-262310951c37","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"07d6b463-58a6-4f41-8f2e-f79ba5367ebe","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.00600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","method":"get","status_code":200,"start_time":445864,"end_time":446825,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Bangalore","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Bangalore","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:03:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2027","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"cilesz1hwtkea6orxvpf8zjse","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":16880,\"ns\":0,\"index\":6,\"type\":\"standard\",\"title\":\"Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1185\",\"titles\":{\"canonical\":\"Karnataka\",\"normalized\":\"Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Gagan_Mahal_Bijapura.jpg/320px-Gagan_Mahal_Bijapura.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c8/Gagan_Mahal_Bijapura.jpg\",\"width\":1141,\"height\":762},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221678390\",\"tid\":\"f3048d21-07a3-11ef-bede-8f2058ec9a14\",\"timestamp\":\"2024-05-01T10:17:01Z\",\"description\":\"State in southern India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.97,\"lon\":77.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka\"}},\"extract\":\"Karnataka, also known colloquially as Karunāḍu, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed Karnataka in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKarnataka\u003c/b\u003e, also known colloquially as \u003cb\u003eKarunāḍu\u003c/b\u003e, is a state in the southwestern region of India. It was formed as Mysore State on 1 November 1956, with the passage of the States Reorganisation Act, and renamed \u003ci\u003eKarnataka\u003c/i\u003e in 1973. The state is bordered by the Lakshadweep Sea to the west, Goa to the northwest, Maharashtra to the north, Telangana to the northeast, Andhra Pradesh to the east, Tamil Nadu to the southeast, and Kerala to the southwest. With 61,130,704 inhabitants at the 2011 census, Karnataka is the eighth-largest state by population, comprising 31 districts. The state was part of the Carnatic region in British terminology. With 15,257,000 residents, the state capital Bangalore is the fourth-most populated city in India.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka\"},{\"pageid\":70023,\"ns\":0,\"index\":1,\"type\":\"standard\",\"title\":\"Mysore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10086\",\"titles\":{\"canonical\":\"Mysore\",\"normalized\":\"Mysore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Mysuru_Montage.jpg/320px-Mysuru_Montage.jpg\",\"width\":320,\"height\":561},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/56/Mysuru_Montage.jpg\",\"width\":1000,\"height\":1754},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223068352\",\"tid\":\"fba44fe0-0e2b-11ef-941e-facbc4e8df99\",\"timestamp\":\"2024-05-09T17:45:54Z\",\"description\":\"City in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.30861111,\"lon\":76.65305556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore\"}},\"extract\":\"Mysore, officially Mysuru, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore\u003c/b\u003e, officially \u003cb\u003eMysuru\u003c/b\u003e, is the second-most populous city in the southern Indian state of Karnataka. It is the headquarters of Mysore district and Mysore division. As the traditional seat of the Wadiyar dynasty, the city functioned as the capital of the Kingdom of Mysore for almost six centuries. Known for its heritage structures, palaces, and its culture, Mysore has been called the \\\"City of Palaces\\\", the \\\"Heritage City\\\", and the \\\"Cultural Capital of Karnataka\\\". It is one of the cleanest cities in India according to the Swachh Survekshan.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore\"},{\"pageid\":1380947,\"ns\":0,\"index\":10,\"type\":\"standard\",\"title\":\"Sullia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2571896\",\"titles\":{\"canonical\":\"Sullia\",\"normalized\":\"Sullia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSullia\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/NMC_Sullia_front_view.jpg/320px-NMC_Sullia_front_view.jpg\",\"width\":320,\"height\":152},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8c/NMC_Sullia_front_view.jpg\",\"width\":1598,\"height\":759},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761149\",\"tid\":\"8421b874-1686-11ef-a103-4e90a2abe26d\",\"timestamp\":\"2024-05-20T08:54:07Z\",\"description\":\"Town in Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.55805556,\"lon\":75.38916667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.wikipedia.org/wiki/Sullia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sullia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sullia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sullia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sullia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sullia\"}},\"extract\":\"Sullia is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSullia\u003c/b\u003e is a town in the Dakshina Kannada district of the state of Karnataka, India. It is the headquarters of the Sullia taluk. Sullia is located 300 kilometres west of the state capital Bengaluru.\u003c/p\u003e\",\"normalizedtitle\":\"Sullia\"},{\"pageid\":1468641,\"ns\":0,\"index\":19,\"type\":\"standard\",\"title\":\"Domlur\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3595289\",\"titles\":{\"canonical\":\"Domlur\",\"normalized\":\"Domlur\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDomlur\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Domlur_BusDepot.JPG/320px-Domlur_BusDepot.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ed/Domlur_BusDepot.JPG\",\"width\":4320,\"height\":3240},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217931298\",\"tid\":\"55211a03-f5d9-11ee-a0d5-711647236d2f\",\"timestamp\":\"2024-04-08T18:53:48Z\",\"description\":\"Neighbourhood in Bangalore, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.9608157,\"lon\":77.6361322},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.wikipedia.org/wiki/Domlur?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Domlur\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Domlur\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Domlur\",\"edit\":\"https://en.m.wikipedia.org/wiki/Domlur?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Domlur\"}},\"extract\":\"Domlur is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDomlur\u003c/b\u003e is a small township located in the eastern part of Bangalore city in India. Domlur was included in the erstwhile Bangalore Civil and Military Station under the British Madras Presidency till it was transferred to the Mysore State in 1949.\u003c/p\u003e\",\"normalizedtitle\":\"Domlur\"},{\"pageid\":1728245,\"ns\":0,\"index\":2,\"type\":\"standard\",\"title\":\"Kempe_Gowda_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6387049\",\"titles\":{\"canonical\":\"Kempe_Gowda_I\",\"normalized\":\"Kempe Gowda I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKempe Gowda I\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Kempegowda_I.jpg/320px-Kempegowda_I.jpg\",\"width\":320,\"height\":395},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ac/Kempegowda_I.jpg\",\"width\":810,\"height\":1001},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224445989\",\"tid\":\"4e12eb13-1519-11ef-aebb-a6511243e4ff\",\"timestamp\":\"2024-05-18T13:19:50Z\",\"description\":\"Founder of Bangalore (1510–1569)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kempe_Gowda_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kempe_Gowda_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kempe_Gowda_I\"}},\"extract\":\"Kempe Gowda I locally venerated as Nadaprabhu Kempe Gowda, or commonly known as Kempe Gowda, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored Ganga-gauri-vilasa, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKempe Gowda I\u003c/b\u003e locally venerated as \u003cb\u003eNadaprabhu Kempe Gowda\u003c/b\u003e, or commonly known as \u003cb\u003eKempe Gowda\u003c/b\u003e, was a governor under the Vijayanagara Empire in early-modern India. He is famous for the development of Bangalore Town in the 16th century. Kempegowda erected many Kannada inscriptions across the region. He also authored \u003ci\u003eGanga-gauri-vilasa\u003c/i\u003e, a yakshagana (verse-play) in Telugu. He is commemorated with various statues and memorials and many places are named after him in Bangalore.\u003c/p\u003e\",\"normalizedtitle\":\"Kempe Gowda I\"},{\"pageid\":1859572,\"ns\":0,\"index\":16,\"type\":\"standard\",\"title\":\"Vishnuvardhan_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2097394\",\"titles\":{\"canonical\":\"Vishnuvardhan_(actor)\",\"normalized\":\"Vishnuvardhan (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVishnuvardhan (actor)\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Vishnuvardhan_2013_stamp_of_India.jpg/320px-Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Vishnuvardhan_2013_stamp_of_India.jpg\",\"width\":926,\"height\":692},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224093492\",\"tid\":\"e5293ca4-1349-11ef-9498-28fe94e6da64\",\"timestamp\":\"2024-05-16T06:02:37Z\",\"description\":\"Indian actor (1950–2009)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Vishnuvardhan_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Vishnuvardhan_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Vishnuvardhan_(actor)\"}},\"extract\":\"Sampath Kumar, known by his stage name Vishnuvardhan, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema. Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSampath Kumar\u003c/b\u003e, known by his stage name \u003cb\u003eVishnuvardhan\u003c/b\u003e, was an Indian actor who worked predominantly in Kannada cinema besides also having sporadically appeared in Tamil, Hindi, Telugu and Malayalam language films. Vishnuvardhan has a prolific career spanning over four decades, during which he has acted in more than 220 films. A popular cultural icon of Karnataka, and holds the status of a matinée idol amongst the Kannada diaspora. He is popularly called as Sahasa Simha, Dada and The Angry Young Man of Kannada Cinema\u003ci\u003e.\u003c/i\u003e Vishnuvardhan's contributions to Kannada cinema have been praised by his contemporaries in the Indian film industry. The Government of Karnataka honoured him with the Rajyothsava Prashasthi in 1990 and the Dr. Rajkumar Lifetime Achievement Award in 2007 for his contributions to Kannada cinema. He was called The Phoenix of Indian Cinema. In 2008, a poll conducted by CNN-IBN listed Vishnuvardhan as the most popular star in the Kannada film industry.\u003c/p\u003e\",\"normalizedtitle\":\"Vishnuvardhan (actor)\"},{\"pageid\":2660511,\"ns\":0,\"index\":4,\"type\":\"standard\",\"title\":\"History_of_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16056635\",\"titles\":{\"canonical\":\"History_of_Bangalore\",\"normalized\":\"History of Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHistory of Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg/320px-Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":320,\"height\":519},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Digitally_Produced_Image_Of_%22Bengaluru%22_Nagatara_900CE_Stone_Inscription_At_Begur%2C_Bengaluru_01.jpg\",\"width\":1161,\"height\":1884},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223594812\",\"tid\":\"fae91352-10e2-11ef-90f8-e15901067025\",\"timestamp\":\"2024-05-13T04:40:53Z\",\"description\":\"Account of past events in Bengaluru, India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:History_of_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/History_of_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/History_of_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:History_of_Bangalore\"}},\"extract\":\"Bangalore is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBangalore\u003c/b\u003e is the capital city of the state of Karnataka. Bangalore, as a city, was founded by Kempe Gowda I, who built a mud fort at the site in 1537. But the earliest evidence for the existence of a place called Bangalore dates back to c. 890.\u003c/p\u003e\",\"normalizedtitle\":\"History of Bangalore\"},{\"pageid\":3820976,\"ns\":0,\"index\":3,\"type\":\"standard\",\"title\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4978693\",\"titles\":{\"canonical\":\"Bruhat_Bengaluru_Mahanagara_Palike\",\"normalized\":\"Bruhat Bengaluru Mahanagara Palike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBruhat Bengaluru Mahanagara Palike\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Bbmp..jpg/320px-Bbmp..jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4d/Bbmp..jpg\",\"width\":474,\"height\":355},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223428088\",\"tid\":\"6313e564-1002-11ef-891b-34bed192305e\",\"timestamp\":\"2024-05-12T01:53:11Z\",\"description\":\"Administrative body for the city of Bengaluru\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bruhat_Bengaluru_Mahanagara_Palike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bruhat_Bengaluru_Mahanagara_Palike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bruhat_Bengaluru_Mahanagara_Palike\"}},\"extract\":\"Bruhat Bengaluru Mahanagara Palike (BBMP) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km2. Its boundaries have expanded more than 10 times over the last six decades.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBruhat Bengaluru Mahanagara Palike\u003c/b\u003e (\u003cb\u003eBBMP\u003c/b\u003e) is the administrative body responsible for civic amenities and some infrastructural assets of the Greater Bengaluru metropolitan area. It is the fourth largest Municipal Corporation in India and is responsible for a population of 8.4 million in an area of 741 km\u003csup\u003e2\u003c/sup\u003e. Its boundaries have expanded more than 10 times over the last six decades.\u003c/p\u003e\",\"normalizedtitle\":\"Bruhat Bengaluru Mahanagara Palike\"},{\"pageid\":8010315,\"ns\":0,\"index\":13,\"type\":\"standard\",\"title\":\"Mysore_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1529219\",\"titles\":{\"canonical\":\"Mysore_Airport\",\"normalized\":\"Mysore Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMysore Airport\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Mysore_Airport.jpg/320px-Mysore_Airport.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Mysore_Airport.jpg\",\"width\":6000,\"height\":3375},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221901149\",\"tid\":\"229dd7aa-08aa-11ef-b1e4-c7f994ba9d24\",\"timestamp\":\"2024-05-02T17:33:49Z\",\"description\":\"Airport in Mysuru, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.2325,\"lon\":76.65638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mysore_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mysore_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mysore_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mysore_Airport\"}},\"extract\":\"Mysore Airport, also known as Mandakalli Airport, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMysore Airport\u003c/b\u003e, also known as \u003cb\u003eMandakalli Airport\u003c/b\u003e, is a domestic airport serving Mysore in Karnataka, India. It is located eight kilometres (5 mi) south of the city in the village of Mandakalli and is owned and operated by the Airports Authority of India. The Princely State of Mysore constructed it in 1940. The airport was later refurbished and inaugurated in May 2010. At present, it has direct flights to Chennai, Goa, and Hyderabad.\u003c/p\u003e\",\"normalizedtitle\":\"Mysore Airport\"},{\"pageid\":9387475,\"ns\":0,\"index\":12,\"type\":\"standard\",\"title\":\"Education_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5341051\",\"titles\":{\"canonical\":\"Education_in_Karnataka\",\"normalized\":\"Education in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEducation in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Iisc-Founder.jpg/320px-Iisc-Founder.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/76/Iisc-Founder.jpg\",\"width\":480,\"height\":640},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210322104\",\"tid\":\"7aebbc8e-d44a-11ee-8b01-3af3a6ee520f\",\"timestamp\":\"2024-02-26T01:58:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Education_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Education_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Education_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Education_in_Karnataka\"}},\"extract\":\"The state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\",\"extract_html\":\"\u003cp\u003eThe state of Karnataka in India has well known institutions like the Indian Institute of Science (IISc), Indian Institute of Technology, Dharwad (IIT,DWD) Indian Institute of Management (IIM), the National Institute of Technology Karnataka (NITK), Indian Institute of Information Technology, Dharwad (IIIT), International Institute of Information Technology, Bangalore, Visvesvaraya Technological University (VTU) and the National Law School of India University. In addition, a Visvesvaraya Institute of Advanced Technology (VIAT) is being constructed in Muddenahalli.\u003c/p\u003e\",\"normalizedtitle\":\"Education in Karnataka\"},{\"pageid\":10512950,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Karnataka_Rakshana_Vedike\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3520980\",\"titles\":{\"canonical\":\"Karnataka_Rakshana_Vedike\",\"normalized\":\"Karnataka Rakshana Vedike\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKarnataka Rakshana Vedike\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220018590\",\"tid\":\"46673f46-ffc1-11ee-9790-b9ab8d6af39d\",\"timestamp\":\"2024-04-21T09:26:47Z\",\"description\":\"Regionalistic group in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Karnataka_Rakshana_Vedike\",\"edit\":\"https://en.m.wikipedia.org/wiki/Karnataka_Rakshana_Vedike?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Karnataka_Rakshana_Vedike\"}},\"extract\":\"\\n\\nThe Karnataka Rakshana Vedike, popularly known as, KaRaVe and abbreviated as the KRV is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\nThe \u003cb\u003eKarnataka Rakshana Vedike\u003c/b\u003e, popularly known as, \u003cb\u003eKaRaVe\u003c/b\u003e and abbreviated as the \u003cb\u003eKRV\u003c/b\u003e is a Pro-Kannada organization located in the state of Karnataka, India. The organization claims to have more than 6 million members enrolled from around the world spanning to about 12,000 branches across Karnataka in all 30 districts as well as international branches in the US, UK, UAE, Singapore, Canada, Australia, New Zealand, Saudi Arabia and Malaysia.\u003c/p\u003e\",\"normalizedtitle\":\"Karnataka Rakshana Vedike\"},{\"pageid\":11661332,\"ns\":0,\"index\":9,\"type\":\"standard\",\"title\":\"Media_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6805710\",\"titles\":{\"canonical\":\"Media_in_Karnataka\",\"normalized\":\"Media in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMedia in Karnataka\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184421697\",\"tid\":\"07f5266d-7fa2-11ee-b9ec-9c2b5ad4ac79\",\"timestamp\":\"2023-11-10T08:20:39Z\",\"description\":\"Overview of the media in Karnataka\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Media_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Media_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/Media_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Media_in_Karnataka\"}},\"extract\":\"\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\",\"extract_html\":\"\u003cp\u003e\\n\\nKarnataka has been a leading state in electronic communications, in India, since the start of first private radio station in Mysore, in 1935.\u003c/p\u003e\",\"normalizedtitle\":\"Media in Karnataka\"},{\"pageid\":15749661,\"ns\":0,\"index\":14,\"type\":\"standard\",\"title\":\"List_of_tourist_attractions_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6643497\",\"titles\":{\"canonical\":\"List_of_tourist_attractions_in_Bangalore\",\"normalized\":\"List of tourist attractions in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of tourist attractions in Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Vidhana_Soudha_sunset.jpg\",\"width\":2027,\"height\":890},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217869735\",\"tid\":\"9bec158d-f593-11ee-bcea-f90d3955aa30\",\"timestamp\":\"2024-04-08T10:34:42Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_tourist_attractions_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_tourist_attractions_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_tourist_attractions_in_Bangalore\"}},\"extract\":\"Bengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\",\"extract_html\":\"\u003cp\u003eBengaluru is the capital of the Indian state Karnataka. The city was known as the \\\"Garden City of India\\\".\u003c/p\u003e\",\"normalizedtitle\":\"List of tourist attractions in Bangalore\"},{\"pageid\":19041261,\"ns\":0,\"index\":11,\"type\":\"standard\",\"title\":\"Lakes_in_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6478987\",\"titles\":{\"canonical\":\"Lakes_in_Bangalore\",\"normalized\":\"Lakes in Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLakes in Bangalore\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222719449\",\"tid\":\"b85ab411-0c82-11ef-81ad-288042c6a3ef\",\"timestamp\":\"2024-05-07T15:01:45Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lakes_in_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lakes_in_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lakes_in_Bangalore\"}},\"extract\":\"Lakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\",\"extract_html\":\"\u003cp\u003eLakes and tanks in the metropolitan area of Greater Bangalore and the district of Bangalore Urban are reservoirs of varying sizes constructed over a number of centuries by various empires and dynasties for rainwater harvesting. Historically, these reservoirs were primarily either irrigation tanks or for the water supply, with secondary uses such as bathing and washing. The need for creating and sustaining these man-made dammed freshwater reservoirs was created by the absence of a major river nearby coupled with a growing settlement. As Bangalore grew from a small settlement into a city, both of the primary historical uses of the tanks changed. Agricultural land witnessed urbanization and alternate sources of water were provisioned, such as through borewells, piped reservoir water and later river water from further away.\u003c/p\u003e\",\"normalizedtitle\":\"Lakes in Bangalore\"},{\"pageid\":30806004,\"ns\":0,\"index\":15,\"type\":\"standard\",\"title\":\"Rajarajeshwari_Nagar,_Bangalore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5320813\",\"titles\":{\"canonical\":\"Rajarajeshwari_Nagar,_Bangalore\",\"normalized\":\"Rajarajeshwari Nagar, Bangalore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRajarajeshwari Nagar, Bangalore\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg/320px-Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Rajarajeshwari_Entrance_-_panoramio.jpg\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224389480\",\"tid\":\"27c2652a-14c3-11ef-97ec-318a54a06244\",\"timestamp\":\"2024-05-18T03:03:09Z\",\"description\":\"Neighborhood in Bengaluru, Karnataka, India\",\"description_source\":\"local\",\"coordinates\":{\"lat\":12.929949,\"lon\":77.536011},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Rajarajeshwari_Nagar%2C_Bangalore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Rajarajeshwari_Nagar%2C_Bangalore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Rajarajeshwari_Nagar%2C_Bangalore\"}},\"extract\":\"Rajarajeshwari Nagar, officially Rajarajeshwari Nagara is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRajarajeshwari Nagar,\u003c/b\u003e officially \u003cb\u003eRajarajeshwari Nagara\u003c/b\u003e is a residential neighborhood in Bangalore, Karnataka, India. It is located in the southwestern part of Bangalore along the Mysore Road, with Nagarbhavi and the Bangalore University to the north and north-west, Hosakerehalli to the east and Kengeri to the south-west. There is a prominent arch-shaped structure on Mysore Road which serves as the most popular entrance to this locality.\u003c/p\u003e\",\"normalizedtitle\":\"Rajarajeshwari Nagar, Bangalore\"},{\"pageid\":30872437,\"ns\":0,\"index\":20,\"type\":\"standard\",\"title\":\"S._L._Bhyrappa\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5246375\",\"titles\":{\"canonical\":\"S._L._Bhyrappa\",\"normalized\":\"S. L. Bhyrappa\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eS. L. Bhyrappa\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/S.L.Bhyrappa.jpg/320px-S.L.Bhyrappa.jpg\",\"width\":320,\"height\":460},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/S.L.Bhyrappa.jpg\",\"width\":2498,\"height\":3592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216323851\",\"tid\":\"c39bfe7e-ee82-11ee-8c4a-fea0472edf16\",\"timestamp\":\"2024-03-30T10:46:29Z\",\"description\":\"Indian novelist, philosopher and screenwriter\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/S._L._Bhyrappa\",\"edit\":\"https://en.m.wikipedia.org/wiki/S._L._Bhyrappa?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:S._L._Bhyrappa\"}},\"extract\":\"Santeshivara Lingannaiah Bhyrappa is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSanteshivara Lingannaiah Bhyrappa\u003c/b\u003e is an Indian novelist, philosopher and screenwriter who writes in Kannada. His work is popular in the state of Karnataka and he is widely regarded as one of modern India's popular novelists. His novels are unique in terms of theme, structure, and characterization. He has been among the top-selling authors in the Kannada language and his books have been translated into Hindi and Marathi which have also been bestsellers.\u003c/p\u003e\",\"normalizedtitle\":\"S. L. Bhyrappa\"},{\"pageid\":36724102,\"ns\":0,\"index\":17,\"type\":\"standard\",\"title\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6603582\",\"titles\":{\"canonical\":\"List_of_Vijayanagara_era_temples_in_Karnataka\",\"normalized\":\"List of Vijayanagara era temples in Karnataka\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of Vijayanagara era temples in Karnataka\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg/320px-View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/View_from_the_rear_of_the_Someshwara_Temple_at_Kolar.jpg\",\"width\":4608,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1175359699\",\"tid\":\"bf0b5a2b-530b-11ee-a780-035970c51a51\",\"timestamp\":\"2023-09-14T14:34:01Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Vijayanagara_era_temples_in_Karnataka\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Vijayanagara_era_temples_in_Karnataka?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Vijayanagara_era_temples_in_Karnataka\"}},\"extract\":\"\\n\\n\\nThe List of Vijayanagara era temples in Karnataka includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\",\"extract_html\":\"\u003cp\u003e\\n\\n\\nThe \u003cb\u003eList of Vijayanagara era temples in Karnataka\u003c/b\u003e includes notable and historically important Hindu and Jain temples and monoliths that were built or received significant patronage by the kings and vassals of the Vijayanagara Empire during the period 1336-1646 AD. This period includes the rule of the four dynasties: the Sangama, the Saluva, the Tuluva, and the Aravidu dynasties.\u003c/p\u003e\",\"normalizedtitle\":\"List of Vijayanagara era temples in Karnataka\"},{\"pageid\":47496105,\"ns\":0,\"index\":7,\"type\":\"standard\",\"title\":\"Prakash_Belawadi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7238168\",\"titles\":{\"canonical\":\"Prakash_Belawadi\",\"normalized\":\"Prakash Belawadi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrakash Belawadi\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Prakash_Belavadi_4.jpg/320px-Prakash_Belavadi_4.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/54/Prakash_Belavadi_4.jpg\",\"width\":731,\"height\":548},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222797567\",\"tid\":\"487108c8-0ccc-11ef-827c-9c8edf2a32b0\",\"timestamp\":\"2024-05-07T23:48:20Z\",\"description\":\"Indian film director\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prakash_Belawadi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prakash_Belawadi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prakash_Belawadi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prakash_Belawadi\"}},\"extract\":\"Prakash Belawadi is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrakash Belawadi\u003c/b\u003e is an Indian theatre artist, film director, television and media personality, who's also a teacher, activist and a journalist. He hails from Bangalore. He has participated in many seminars, conferences and festivals in India and abroad. He is a motivational speaker at events and TEDx conferences.\\nHe is also a mentor with the founding team of BISFF since 2010.\u003c/p\u003e\",\"normalizedtitle\":\"Prakash Belawadi\"},{\"pageid\":50300633,\"ns\":0,\"index\":5,\"type\":\"standard\",\"title\":\"Jayciana\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q24950637\",\"titles\":{\"canonical\":\"Jayciana\",\"normalized\":\"Jayciana\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJayciana\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220540943\",\"tid\":\"538e6384-0239-11ef-80db-046bfbaf07f2\",\"timestamp\":\"2024-04-24T12:51:11Z\",\"description\":\"Annual cultural festival\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.wikipedia.org/wiki/Jayciana?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jayciana\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jayciana\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jayciana\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jayciana?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jayciana\"}},\"extract\":\"Jayciana is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJayciana\u003c/b\u003e is the annual cultural festival of the Sri Jayachamarajendra College of Engineering, Mysuru usually held during April – May.\u003c/p\u003e\",\"normalizedtitle\":\"Jayciana\"},{\"pageid\":66277810,\"ns\":0,\"index\":8,\"type\":\"standard\",\"title\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104903080\",\"titles\":{\"canonical\":\"2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"normalized\":\"2015 Bruhat Bengaluru Mahanagara Palike election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/span\u003e\"},\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/320px-Lotus_flower_symbol.svg.png\",\"width\":320,\"height\":311},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Lotus_flower_symbol.svg/340px-Lotus_flower_symbol.svg.png\",\"width\":340,\"height\":330},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218535775\",\"tid\":\"59cf1993-f8a8-11ee-8d79-f8805439f155\",\"timestamp\":\"2024-04-12T08:40:44Z\",\"description\":\"2015 election in India\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2015_Bruhat_Bengaluru_Mahanagara_Palike_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2015_Bruhat_Bengaluru_Mahanagara_Palike_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2015_Bruhat_Bengaluru_Mahanagara_Palike_election\"}},\"extract\":\"The 2015 Bruhat Bengaluru Mahanagara Palike election was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2015 Bruhat Bengaluru Mahanagara Palike election\u003c/b\u003e was held on 22 April 2015 in all 198 Wards of Bangalore (Bengaluru).\u003c/p\u003e\",\"normalizedtitle\":\"2015 Bruhat Bengaluru Mahanagara Palike election\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"097ec691-25f2-404d-b694-e925601b21af","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17719,"java_free_heap":5407,"total_pss":167889,"rss":262560,"native_total_heap":79872,"native_free_heap":5795,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"09a8e6c6-feb8-402b-99b3-30a55752e97b","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/32px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":445893,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44707","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"1036","content-type":"image/webp","date":"Sun, 19 May 2024 20:38:25 GMT","etag":"cd739a43c44b181292f80f73d577c105","last-modified":"Thu, 08 Jun 2023 05:53:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2982","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"16efd73a-5d9f-4a6b-89b0-3800990a6ed1","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.32000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"22216446-310d-4e6a-9ae5-d2a61c3673e0","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.96500000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":919.9512,"y":205.95703,"touch_down_time":451653,"touch_up_time":451782},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b477b78-bcf8-4a9e-b0b3-75aad4664124","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/38px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":445940,"end_time":445986,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"16013","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"1648","content-type":"image/webp","date":"Mon, 20 May 2024 04:36:40 GMT","etag":"f23eec45f0a338280a1d8cb9b39ccc75","last-modified":"Fri, 08 Sep 2023 17:18:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/977","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c7dfd53-6318-403d-8968-136763ddfcb6","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/36px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":445911,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9211","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"1606","content-type":"image/webp","date":"Mon, 20 May 2024 06:30:02 GMT","etag":"70423aa778261ff9ae4261991f013674","last-modified":"Sun, 06 Aug 2023 03:57:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/622","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2f54bc85-ef1a-41f9-991f-83508326ac38","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.73200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"page_toolbar_button_show_overflow_menu","width":126,"height":126,"x":1009.96216,"y":182.98828,"touch_down_time":453453,"touch_up_time":453544},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3749a6c5-f0b4-4267-b177-b00e2f436be2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.87300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":440.95825,"y":1468.9453,"end_x":464.98535,"end_y":986.9531,"direction":"up","touch_down_time":446140,"touch_up_time":446691},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3bb86a55-1d02-470a-b0b0-03cb314e44d4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.99500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3f67b454-4def-4a6d-afff-91b4e39ae616","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/42px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":445868,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53433","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"1908","content-type":"image/webp","date":"Sun, 19 May 2024 18:13:00 GMT","etag":"9eb22eceec2d1971062ce08b67dcf9d1","last-modified":"Wed, 24 May 2023 14:58:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1035","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"42354935-daae-41b2-aaee-9d106d83401e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/38px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":445819,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"11063","content-length":"1174","content-type":"image/webp","date":"Mon, 20 May 2024 05:59:09 GMT","etag":"da286f6370a9d33991278d05967df0d1","last-modified":"Fri, 21 Jun 2019 08:25:41 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/261","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4d314163-274d-4ee4-a553-3fe53c43d558","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/42px-Flag_of_India.svg.png","method":"get","status_code":200,"start_time":445776,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"57502","content-disposition":"inline;filename*=UTF-8''Flag_of_India.svg.webp","content-length":"226","content-type":"image/webp","date":"Sun, 19 May 2024 17:05:10 GMT","etag":"f8b6d8e11e2a7c4dd8ac9388127be890","last-modified":"Sun, 23 Jul 2023 02:01:59 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1442","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"504e2ccc-d49e-4012-b288-7ada75447e4e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.72000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"505e805e-7539-4c13-a4fa-cfc370d249dc","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"52c13ba3-368e-4a0d-82d8-bec835cca1ea","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.30800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5b226149-7edd-4a5a-87b9-e46797f09421","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.20200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6162ff07-872c-4a07-b5ec-8d21952f59ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.58900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449128,"end_time":449408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"680f575d-eeeb-4a38-9e2f-a7b491adf3e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.33500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6986a335-2f6c-45dd-a0bf-d7d49589b3c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6e004789-10bf-4e4f-801f-68a274380b59","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.16600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/28px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":445848,"end_time":445985,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"43774","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"836","content-type":"image/webp","date":"Sun, 19 May 2024 20:53:59 GMT","etag":"126f8494b0f116e1ee2b890ac64ea4d3","last-modified":"Sat, 16 Mar 2024 06:34:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1857","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71423733-5fee-419c-ba08-870284a59d23","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.29900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e0435eb-f264-4df1-8d33-6c6016482897","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8be6c160-754d-444f-b5c1-2c68c04e42d2","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449409,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"712","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9405717b-7603-4f9a-90c2-4d5287ab4c22","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/42px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":445954,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"69339","content-disposition":"inline;filename*=UTF-8''Wikiversity_logo_2017.svg.webp","content-length":"562","content-type":"image/webp","date":"Sun, 19 May 2024 13:47:54 GMT","etag":"4a828dc89ddea450dcf8a0a529237641","last-modified":"Sat, 18 Dec 2021 10:16:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/880","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95daa89a-542f-44c7-9370-e80734196480","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.19500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":450698,"end_time":451013,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0ba2920-e465-4671-b9a9-2d86a08fffe8","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.71600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a10b6579-b5c1-4907-ba1e-e24f94c7f22f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.87800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a2174cd3-29a0-46d5-aa30-b49aee72abf3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:40.01900000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":452531,"end_time":452838,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"336","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:40 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b13de324-39e8-4668-a2be-51704c96f738","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.98900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1c66dff-0680-4e09-9b73-8912605a408a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Bangalore_Palace.jpg/42px-Bangalore_Palace.jpg","method":"get","status_code":200,"start_time":445805,"end_time":445866,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"30598","content-disposition":"inline;filename*=UTF-8''Bangalore_Palace.jpg","content-length":"1106","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:33:34 GMT","etag":"a681d8eae4e88991c2f76c520d5595ca","last-modified":"Sat, 18 Dec 2021 07:38:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b23bef50-30a3-4cca-b2d3-5c3eb4cc91c4","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Openstreetmap_logo.svg/32px-Openstreetmap_logo.svg.png","method":"get","status_code":200,"start_time":445774,"end_time":445865,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36982","content-disposition":"inline;filename*=UTF-8''Openstreetmap_logo.svg.webp","content-length":"2404","content-type":"image/webp","date":"Sun, 19 May 2024 22:47:11 GMT","etag":"16a8ee4b7e7bc64dea201b90e5a4a6d3","last-modified":"Mon, 19 Sep 2022 10:52:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1679","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b2805971-2fba-4acd-b984-e0800830bd05","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":43643,"uptime":448565,"utime":248,"cutime":0,"cstime":0,"stime":194,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8f9e59f-4ac9-4522-ae0a-6392a92ef5ff","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.74500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17168,"java_free_heap":6064,"total_pss":168661,"rss":264472,"native_total_heap":66560,"native_free_heap":6093,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5273a31-336a-4bc8-9f7e-f47c3a28d65d","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.74600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":43643,"uptime":451565,"utime":272,"cutime":0,"cstime":0,"stime":212,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c5c16395-9eb1-42ca-b7df-598e26f3a6e3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.10300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":525.9595,"y":465.9375,"end_x":521.97144,"end_y":745.95703,"direction":"down","touch_down_time":447656,"touch_up_time":447919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cb066e6e-e8b4-49b1-a4ac-ad14bf3d0e0e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17538,"java_free_heap":5033,"total_pss":172697,"rss":268200,"native_total_heap":71680,"native_free_heap":6427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cdf298bf-4d1b-49da-aa7c-4cda57f3ffa5","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:37.88500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cee0e50e-8806-4e82-841b-cbe20c90a44e","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.30000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":451804,"end_time":452118,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"725","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:03:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cfdc0f27-5fc9-471b-8c94-fb36f55f9c81","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.61300000Z","type":"gesture_scroll","gesture_scroll":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","x":488.9795,"y":1251.9141,"end_x":511.9519,"end_y":409.98047,"direction":"up","touch_down_time":447042,"touch_up_time":447426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5d14e2d-b28d-4ecd-a02c-bc4160e30535","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.22100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/42px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":445997,"end_time":446039,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32409","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"198","content-type":"image/webp","date":"Mon, 20 May 2024 00:03:24 GMT","etag":"b02818fe22f012e3bba0c3b2853b41a8","last-modified":"Thu, 04 Jan 2024 04:40:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1013","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d6ccf0c9-1f29-449a-b9f3-dd0cef6d5231","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:34.28600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vidhana_Soudha_sunset.jpg/320px-Vidhana_Soudha_sunset.jpg","method":"get","status_code":200,"start_time":446848,"end_time":447105,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"12473","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:03:34 GMT","etag":"2c7bdca426cac204cbfdf15e3b71080e","last-modified":"Sat, 26 Mar 2016 10:36:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"qw3ai9uecb9knskjpgi4oon5o4ug903"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8941c70-48d3-4dcc-89db-eac04a71dc3f","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.21200000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.TabCountsView","target_id":"page_toolbar_button_tabs","width":126,"height":168,"x":904.95483,"y":149.9414,"touch_down_time":448957,"touch_up_time":449026},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e567f0c5-10b0-4669-8702-cbbf1c793160","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:38.38400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec4f7db5-556e-42da-878e-f80a9bc8ae45","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:36.59100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":449129,"end_time":449410,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"706","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:03:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9d38c6-2f20-4fcf-8140-9785e36abd17","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.21200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/38px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":445987,"end_time":446030,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76214","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"518","content-type":"image/webp","date":"Sun, 19 May 2024 11:53:19 GMT","etag":"66771d756c5d4092be18d3ab3de44be0","last-modified":"Fri, 04 Aug 2023 01:39:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1541","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ecf6ec4c-4d9c-484b-90b7-828d07b78c9a","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:33.04900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Terra.png/38px-Terra.png","method":"get","status_code":200,"start_time":445817,"end_time":445868,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Bangalore","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58457","content-disposition":"inline;filename*=UTF-8''Terra.png.webp","content-length":"2948","content-type":"image/webp","date":"Sun, 19 May 2024 16:49:15 GMT","etag":"48f16c644a58aaca70b0719a23ae3cef","last-modified":"Thu, 27 Apr 2023 04:49:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/289","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0975435-c6a6-48e8-8b49-0d2008de2ff3","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:39.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f2dfc82c-11c4-4b0b-931e-658c3d21c910","session_id":"db984f7d-3d2c-4c84-b7a8-cc71ee2fe438","timestamp":"2024-05-20T09:03:35.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17216,"java_free_heap":5996,"total_pss":155265,"rss":250772,"native_total_heap":91136,"native_free_heap":6339,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json index 3cb05c2d6..ccfbe09ac 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5a4065bd-60a3-4146-ac6d-c4d637772a3c.json @@ -1 +1 @@ -[{"id":"30ca33c6-6d31-4d1a-ab56-29a30516e88c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":104605,"utime":11,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"346dda2a-4871-4560-a824-6625b9187a67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f4e77a4-5f6c-4fc0-bbea-e609d1fa5c57","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7cabe84f-31a4-47db-9345-e396c4ef113f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":3791,"java_free_heap":779,"total_pss":36101,"rss":88520,"native_total_heap":14446,"native_free_heap":10129,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d5ade0ea-ae90-40cc-813a-9840c1091eef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.21200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"30ca33c6-6d31-4d1a-ab56-29a30516e88c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":104605,"utime":11,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"346dda2a-4871-4560-a824-6625b9187a67","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3f4e77a4-5f6c-4fc0-bbea-e609d1fa5c57","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.23200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7cabe84f-31a4-47db-9345-e396c4ef113f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":3791,"java_free_heap":779,"total_pss":36101,"rss":88520,"native_total_heap":14446,"native_free_heap":10129,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d5ade0ea-ae90-40cc-813a-9840c1091eef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.21200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json index 2f3ea51f1..cc1319dde 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/5f604642-8ee6-41d5-9b51-dfef9b2b2fce.json @@ -1 +1 @@ -[{"id":"08b133ca-0aa4-43a5-88f7-58aa0de3cdbc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17813,"java_free_heap":4702,"total_pss":83729,"rss":180864,"native_total_heap":55296,"native_free_heap":13934,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a473be3-d72a-4c40-8fe2-48d3048a1b74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.48000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":200,"start_time":328250,"end_time":328299,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"25486","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"574","content-location":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/i18n/0.0.1\"","date":"Mon, 20 May 2024 01:56:49 GMT","etag":"W/\"-29437690499/a8435d10-1587-11ef-9ca2-eb8d6d601c75\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/6784","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1aa23b27-04c2-410b-bce7-0d79febcf712","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be891a0-a5c1-406e-85c5-ab1f983f0760","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bd7c24c-12dc-4e90-872f-67f6370e7867","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.14000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":237.96387,"y":390.9375,"touch_down_time":326873,"touch_up_time":326954},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bdca819-4669-445e-8106-8116f866b95b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2db5a959-dfe4-474b-8fe2-f972d4fdeb9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"309c2c86-0171-42dd-a81c-9353368a2363","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.11900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3a47f5c8-6a66-488a-8c09-ed25b4078758","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.87500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png","method":"get","status_code":200,"start_time":325640,"end_time":325694,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21113","content-disposition":"inline;filename*=UTF-8''Illu_conducting_passages.svg.png","content-length":"46000","content-type":"image/png","date":"Mon, 20 May 2024 03:09:39 GMT","etag":"16b2c870410f65c99f7ec65bb1c46d6d","last-modified":"Mon, 21 Mar 2022 10:14:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46631109-606e-412c-8d27-2653353abe6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.08000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":325639,"end_time":325899,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","content-length":"47989","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:33 GMT","etag":"d9b4d0f75089368a850fc4cde6a5afc7","last-modified":"Mon, 12 Jul 2021 20:26:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5009c99a-53e1-41b5-9800-c34d289c5010","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":200,"start_time":327991,"end_time":328048,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39475","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"14055","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21501","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"57e55e32-b032-43e0-9c2d-f286bb2cfa49","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.21200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5aa51a98-49a1-447e-9e52-d5c63f2a6464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","method":"get","status_code":200,"start_time":327396,"end_time":327972,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51cd2bb0-0fe6-11ef-bd1a-1d71cb25ee14\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2030","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ad624ae-1dca-4ec8-831c-eaa44203ceff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.25500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c011a3d-94fa-493a-be07-dab17ee61e96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71bdce5c-8804-438f-a355-d2e051f6b015","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":200,"start_time":327991,"end_time":328047,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38566","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"2529","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11193","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"723c72d8-76bc-4ca1-acc5-2661c3a13cf7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.09000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"79b2eb72-4c94-4c24-be6a-f504258eb93c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.21800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","method":"get","status_code":200,"start_time":328308,"end_time":329037,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"3ezppzh4qhqwuen8g21xvvnhm","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":51856,\"ns\":0,\"index\":20,\"type\":\"disambiguation\",\"title\":\"Acme\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296960\",\"titles\":{\"canonical\":\"Acme\",\"normalized\":\"Acme\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210027613\",\"tid\":\"a03bdbe5-d337-11ee-9881-cd92505f5158\",\"timestamp\":\"2024-02-24T17:10:36Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.wikipedia.org/wiki/Acme?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Acme\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Acme\",\"edit\":\"https://en.m.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Acme\"}},\"extract\":\"Acme is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAcme\u003c/b\u003e is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Acme\"},{\"pageid\":55044,\"ns\":0,\"index\":11,\"type\":\"disambiguation\",\"title\":\"Transition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q405416\",\"titles\":{\"canonical\":\"Transition\",\"normalized\":\"Transition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218110154\",\"tid\":\"dba53260-f6a9-11ee-97a9-1e10ac84822b\",\"timestamp\":\"2024-04-09T19:46:29Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.wikipedia.org/wiki/Transition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Transition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Transition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Transition\"}},\"extract\":\"Transition or transitional may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTransition\u003c/b\u003e or \u003cb\u003etransitional\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Transition\"},{\"pageid\":58717,\"ns\":0,\"index\":9,\"type\":\"disambiguation\",\"title\":\"Hume\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q224669\",\"titles\":{\"canonical\":\"Hume\",\"normalized\":\"Hume\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1193206643\",\"tid\":\"86ab898b-a98b-11ee-a7da-65aec92fe735\",\"timestamp\":\"2024-01-02T16:25:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.wikipedia.org/wiki/Hume?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hume\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hume\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hume\"}},\"extract\":\"Hume most commonly refers to:David Hume (1711–1776), Scottish philosopher\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHume\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eDavid Hume (1711–1776), Scottish philosopher\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Hume\"},{\"pageid\":148814,\"ns\":0,\"index\":12,\"type\":\"disambiguation\",\"title\":\"Max\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q225238\",\"titles\":{\"canonical\":\"Max\",\"normalized\":\"Max\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219425766\",\"tid\":\"6d34119c-fce2-11ee-8b11-75e3c19343cd\",\"timestamp\":\"2024-04-17T17:46:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.wikipedia.org/wiki/Max?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Max\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Max\",\"edit\":\"https://en.m.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Max\"}},\"extract\":\"Max or MAX may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMax\u003c/b\u003e or \u003cb\u003eMAX\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Max\"},{\"pageid\":279097,\"ns\":0,\"index\":2,\"type\":\"disambiguation\",\"title\":\"Star_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q176688\",\"titles\":{\"canonical\":\"Star_(disambiguation)\",\"normalized\":\"Star (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224134541\",\"tid\":\"85509e7f-1385-11ef-bd2f-84134f5c8a7b\",\"timestamp\":\"2024-05-16T13:09:26Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Star_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Star_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Star_(disambiguation)\"}},\"extract\":\"A star is a luminous astronomical object.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003estar\u003c/b\u003e is a luminous astronomical object.\u003c/p\u003e\",\"normalizedtitle\":\"Star (disambiguation)\"},{\"pageid\":290282,\"ns\":0,\"index\":8,\"type\":\"disambiguation\",\"title\":\"State\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q12251220\",\"titles\":{\"canonical\":\"State\",\"normalized\":\"State\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216877243\",\"tid\":\"30babe9c-f0fd-11ee-a250-3300880f5fd7\",\"timestamp\":\"2024-04-02T14:27:53Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/State\",\"revisions\":\"https://en.wikipedia.org/wiki/State?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:State\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/State\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/State\",\"edit\":\"https://en.m.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:State\"}},\"extract\":\"State most commonly refers to:State (polity), a centralized political organization that regulates law and society within a territory\\nSovereign state, a sovereign polity in international law, commonly referred to as a country\\nNation state, a state where the majority identify with a single nation \\nConstituent state, a political subdivision of a state\\nFederated state, constituent states part of a federation\\nState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eState\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eState (polity), a centralized political organization that regulates law and society within a territory\\n\u003cul\u003e\u003cli\u003eSovereign state, a sovereign polity in international law, commonly referred to as a country\u003c/li\u003e\\n\u003cli\u003eNation state, a state where the majority identify with a single nation \u003c/li\u003e\\n\u003cli\u003eConstituent state, a political subdivision of a state\u003c/li\u003e\\n\u003cli\u003eFederated state, constituent states part of a federation\u003c/li\u003e\u003c/ul\u003e\u003c/li\u003e\\n\u003cli\u003eState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"State\"},{\"pageid\":306880,\"ns\":0,\"index\":17,\"type\":\"disambiguation\",\"title\":\"Frame\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q294490\",\"titles\":{\"canonical\":\"Frame\",\"normalized\":\"Frame\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220799565\",\"tid\":\"51bfac39-0361-11ef-a4ec-fdcd7f4a5f97\",\"timestamp\":\"2024-04-26T00:09:59Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.wikipedia.org/wiki/Frame?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Frame\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Frame\",\"edit\":\"https://en.m.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Frame\"}},\"extract\":\"A frame is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eframe\u003c/b\u003e is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\u003c/p\u003e\",\"normalizedtitle\":\"Frame\"},{\"pageid\":466211,\"ns\":0,\"index\":4,\"type\":\"disambiguation\",\"title\":\"Flow\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5426556\",\"titles\":{\"canonical\":\"Flow\",\"normalized\":\"Flow\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222836864\",\"tid\":\"542af432-0d01-11ef-b3b3-5feec1ee5c5b\",\"timestamp\":\"2024-05-08T06:08:03Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.wikipedia.org/wiki/Flow?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Flow\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Flow\",\"edit\":\"https://en.m.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Flow\"}},\"extract\":\"Flow may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFlow\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Flow\"},{\"pageid\":497854,\"ns\":0,\"index\":10,\"type\":\"disambiguation\",\"title\":\"Triad\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2482068\",\"titles\":{\"canonical\":\"Triad\",\"normalized\":\"Triad\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221484812\",\"tid\":\"b78d96ed-06b9-11ef-9cc5-35df4b5c8ef8\",\"timestamp\":\"2024-04-30T06:20:19Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.wikipedia.org/wiki/Triad?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Triad\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Triad\",\"edit\":\"https://en.m.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Triad\"}},\"extract\":\"Triad or triade may refer to:a group of three\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTriad\u003c/b\u003e or \u003cb\u003etriade\u003c/b\u003e may refer to:\u003c/p\u003e\u003cul\u003e\u003cli\u003ea group of three\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Triad\"},{\"pageid\":528769,\"ns\":0,\"index\":5,\"type\":\"disambiguation\",\"title\":\"Locust_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q416372\",\"titles\":{\"canonical\":\"Locust_(disambiguation)\",\"normalized\":\"Locust (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184863699\",\"tid\":\"db722f41-81ce-11ee-b356-a8834ef0e4e5\",\"timestamp\":\"2023-11-13T02:46:34Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Locust_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"}},\"extract\":\"Locusts are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLocusts\u003c/b\u003e are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\u003c/p\u003e\",\"normalizedtitle\":\"Locust (disambiguation)\"},{\"pageid\":651807,\"ns\":0,\"index\":6,\"type\":\"disambiguation\",\"title\":\"Operator\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q228588\",\"titles\":{\"canonical\":\"Operator\",\"normalized\":\"Operator\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219370184\",\"tid\":\"9c787d9b-fca5-11ee-b070-ca416f63e422\",\"timestamp\":\"2024-04-17T10:31:12Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.wikipedia.org/wiki/Operator?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Operator\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Operator\",\"edit\":\"https://en.m.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Operator\"}},\"extract\":\"Operator may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOperator\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Operator\"},{\"pageid\":698312,\"ns\":0,\"index\":1,\"type\":\"disambiguation\",\"title\":\"Bass\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q227155\",\"titles\":{\"canonical\":\"Bass\",\"normalized\":\"Bass\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212658995\",\"tid\":\"5bd41b08-dda6-11ee-9915-c896cafa6952\",\"timestamp\":\"2024-03-08T23:48:27Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.wikipedia.org/wiki/Bass?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bass\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bass\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bass\"}},\"extract\":\"Bass or Basses may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBass\u003c/b\u003e or \u003cb\u003eBasses\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bass\"},{\"pageid\":1047948,\"ns\":0,\"index\":14,\"type\":\"disambiguation\",\"title\":\"Bean_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q356770\",\"titles\":{\"canonical\":\"Bean_(disambiguation)\",\"normalized\":\"Bean (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156385398\",\"tid\":\"85749416-f8b9-11ed-8a51-5d7eb7f0d61d\",\"timestamp\":\"2023-05-22T15:58:41Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bean_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"}},\"extract\":\"A bean is a large seed of several plants in the family Fabaceae.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebean\u003c/b\u003e is a large seed of several plants in the family \u003ci\u003eFabaceae\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Bean (disambiguation)\"},{\"pageid\":1102921,\"ns\":0,\"index\":7,\"type\":\"disambiguation\",\"title\":\"Bear_Creek\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q299502\",\"titles\":{\"canonical\":\"Bear_Creek\",\"normalized\":\"Bear Creek\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1186805589\",\"tid\":\"5b7499d1-8bae-11ee-bdab-354de44b9cb7\",\"timestamp\":\"2023-11-25T16:19:07Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bear_Creek\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bear_Creek\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bear_Creek\"}},\"extract\":\"Bear Creek or Bearcreek may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBear Creek\u003c/b\u003e or \u003cb\u003eBearcreek\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bear Creek\"},{\"pageid\":1928111,\"ns\":0,\"index\":3,\"type\":\"disambiguation\",\"title\":\"Cache\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1025020\",\"titles\":{\"canonical\":\"Cache\",\"normalized\":\"Cache\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661635\",\"tid\":\"3bc4a1e4-160a-11ef-b8bb-3cdd522a99bf\",\"timestamp\":\"2024-05-19T18:04:28Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.wikipedia.org/wiki/Cache?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cache\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cache\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cache\"}},\"extract\":\"Cache, caching, or caché may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCache\u003c/b\u003e, \u003cb\u003ecaching\u003c/b\u003e, or \u003cb\u003ecaché\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Cache\"},{\"pageid\":3281599,\"ns\":0,\"index\":16,\"type\":\"disambiguation\",\"title\":\"Genius_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q404618\",\"titles\":{\"canonical\":\"Genius_(disambiguation)\",\"normalized\":\"Genius (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1161111422\",\"tid\":\"6b9c9f6b-0f96-11ee-84fa-f9ac16ac26a1\",\"timestamp\":\"2023-06-20T18:15:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Genius_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"}},\"extract\":\"A genius is a person who has exceptional intellectual ability, creativity, or originality.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egenius\u003c/b\u003e is a person who has exceptional intellectual ability, creativity, or originality.\u003c/p\u003e\",\"normalizedtitle\":\"Genius (disambiguation)\"},{\"pageid\":4620140,\"ns\":0,\"index\":15,\"type\":\"disambiguation\",\"title\":\"Streamline\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1900895\",\"titles\":{\"canonical\":\"Streamline\",\"normalized\":\"Streamline\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1209904008\",\"tid\":\"434f1d0f-d2bc-11ee-b2c1-036e3ee9095a\",\"timestamp\":\"2024-02-24T02:27:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.wikipedia.org/wiki/Streamline?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Streamline\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Streamline\",\"edit\":\"https://en.m.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Streamline\"}},\"extract\":\"Streamline may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eStreamline\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Streamline\"},{\"pageid\":6771526,\"ns\":0,\"index\":19,\"type\":\"disambiguation\",\"title\":\"Linear_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1826396\",\"titles\":{\"canonical\":\"Linear_(disambiguation)\",\"normalized\":\"Linear (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216492975\",\"tid\":\"26ee5fd7-ef45-11ee-82bc-82313c7c5f5e\",\"timestamp\":\"2024-03-31T09:57:58Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Linear_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"}},\"extract\":\"Linear is used to describe linearity in mathematics.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLinear\u003c/b\u003e is used to describe linearity in mathematics.\u003c/p\u003e\",\"normalizedtitle\":\"Linear (disambiguation)\"},{\"pageid\":11040001,\"ns\":0,\"index\":13,\"type\":\"disambiguation\",\"title\":\"Fun_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q360552\",\"titles\":{\"canonical\":\"Fun_(disambiguation)\",\"normalized\":\"Fun (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156949285\",\"tid\":\"4fb9f00f-faf1-11ed-81d7-2fc57ef16069\",\"timestamp\":\"2023-05-25T11:43:05Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Fun_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"}},\"extract\":\"Fun generally refers to recreation or entertainment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFun\u003c/b\u003e generally refers to recreation or entertainment.\u003c/p\u003e\",\"normalizedtitle\":\"Fun (disambiguation)\"},{\"pageid\":50724448,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Glossary_of_computer_graphics\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25106492\",\"titles\":{\"canonical\":\"Glossary_of_computer_graphics\",\"normalized\":\"Glossary of computer graphics\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211169501\",\"tid\":\"6599dade-d78d-11ee-8bf4-2e6b9dc7dad8\",\"timestamp\":\"2024-03-01T05:34:39Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Glossary_of_computer_graphics\",\"edit\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"}},\"extract\":\"This is a glossary of terms relating to computer graphics.\",\"extract_html\":\"\u003cp\u003eThis is a glossary of terms relating to computer graphics.\u003c/p\u003e\",\"normalizedtitle\":\"Glossary of computer graphics\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c3bcc8c-ca85-4ee0-a848-ba43ca9a5158","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.51100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=t\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":323918,"end_time":324329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2298.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"7srrpm43ynlqnfiadnncd1yp9"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":25734,\"ns\":0,\"title\":\"Taiwan\",\"index\":12,\"description\":\"Country in East Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Flag_of_the_Republic_of_China.svg/320px-Flag_of_the_Republic_of_China.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":24,\"lon\":121,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T07:37:08Z\",\"lastrevid\":1224751002,\"length\":313804,\"displaytitle\":\"Taiwan\",\"varianttitles\":{\"en\":\"Taiwan\"}},{\"pageid\":29810,\"ns\":0,\"title\":\"Texas\",\"index\":16,\"description\":\"U.S. state\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Flag_of_Texas.svg/320px-Flag_of_Texas.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":31,\"lon\":-99,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T07:11:45Z\",\"lastrevid\":1224586226,\"length\":258627,\"displaytitle\":\"Texas\",\"varianttitles\":{\"en\":\"Texas\"}},{\"pageid\":29812,\"ns\":0,\"title\":\"The Beatles\",\"index\":14,\"description\":\"English rock band (1960–1970)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/The_Beatles_members_at_New_York_City_in_1964.jpg/320px-The_Beatles_members_at_New_York_City_in_1964.jpg\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224641394,\"length\":221036,\"displaytitle\":\"The Beatles\",\"varianttitles\":{\"en\":\"The Beatles\"}},{\"pageid\":30057,\"ns\":0,\"title\":\"Tokyo\",\"index\":18,\"description\":\"Capital and most populous city of Japan\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Skyscrapers_of_Shinjuku_2009_January.jpg/320px-Skyscrapers_of_Shinjuku_2009_January.jpg\",\"width\":320,\"height\":171},\"coordinates\":[{\"lat\":35.68972222,\"lon\":139.69222222,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:05:37Z\",\"lastrevid\":1224699089,\"length\":157548,\"displaytitle\":\"Tokyo\",\"varianttitles\":{\"en\":\"Tokyo\"}},{\"pageid\":30071,\"ns\":0,\"title\":\"T\",\"index\":1,\"description\":\"20th letter of the Latin alphabet\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T11:32:01Z\",\"lastrevid\":1223065110,\"length\":16234,\"displaytitle\":\"T\",\"varianttitles\":{\"en\":\"T\"}},{\"pageid\":30128,\"ns\":0,\"title\":\"Thailand\",\"index\":10,\"description\":\"Country in Southeast Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Flag_of_Thailand.svg/320px-Flag_of_Thailand.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":15,\"lon\":101,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224577988,\"length\":271956,\"displaytitle\":\"Thailand\",\"varianttitles\":{\"en\":\"Thailand\"}},{\"pageid\":30463,\"ns\":0,\"title\":\"Taxonomy (biology)\",\"index\":3,\"description\":\"Science of naming, defining and classifying organisms\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:43Z\",\"lastrevid\":1218991780,\"length\":70362,\"displaytitle\":\"Taxonomy (biology)\",\"varianttitles\":{\"en\":\"Taxonomy (biology)\"}},{\"pageid\":30680,\"ns\":0,\"title\":\"The New York Times\",\"index\":6,\"description\":\"American daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/The_New_York_Times%2C_January_13%2C_2024.png\",\"width\":234,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:12:00Z\",\"lastrevid\":1224686229,\"length\":227907,\"displaytitle\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\"}},{\"pageid\":30837,\"ns\":0,\"title\":\"Tampa Bay Buccaneers\",\"index\":9,\"description\":\"National Football League franchise in Tampa, Florida\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Tampabay_buccaneers_unif20.png/320px-Tampabay_buccaneers_unif20.png\",\"width\":320,\"height\":306},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:53:12Z\",\"lastrevid\":1224621779,\"length\":225993,\"displaytitle\":\"Tampa Bay Buccaneers\",\"varianttitles\":{\"en\":\"Tampa Bay Buccaneers\"}},{\"pageid\":30890,\"ns\":0,\"title\":\"Time zone\",\"index\":4,\"description\":\"Area that observes a uniform standard time\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224125392,\"length\":92267,\"displaytitle\":\"Time zone\",\"varianttitles\":{\"en\":\"Time zone\"}},{\"pageid\":31460,\"ns\":0,\"title\":\"Tom Cruise\",\"index\":20,\"description\":\"American actor (born 1962)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Tom_Cruise_by_Gage_Skidmore_2.jpg/320px-Tom_Cruise_by_Gage_Skidmore_2.jpg\",\"width\":320,\"height\":403},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224593587,\"length\":123370,\"displaytitle\":\"Tom Cruise\",\"varianttitles\":{\"en\":\"Tom Cruise\"}},{\"pageid\":52911,\"ns\":0,\"title\":\"Town\",\"index\":11,\"description\":\"Type of human settlement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/St_Mary%27s_Church%2C_Castle_Street_1.jpg/320px-St_Mary%27s_Church%2C_Castle_Street_1.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:58Z\",\"lastrevid\":1223398228,\"length\":97586,\"displaytitle\":\"Town\",\"varianttitles\":{\"en\":\"Town\"}},{\"pageid\":212390,\"ns\":0,\"title\":\"Tilde\",\"index\":2,\"description\":\"Punctuation and accent mark\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:48Z\",\"lastrevid\":1224034998,\"length\":62175,\"displaytitle\":\"Tilde\",\"varianttitles\":{\"en\":\"Tilde\"}},{\"pageid\":339841,\"ns\":0,\"title\":\"Tom Brady\",\"index\":19,\"description\":\"American football player (born 1977)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Tom_Brady_2021.png/320px-Tom_Brady_2021.png\",\"width\":320,\"height\":453},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:13:06Z\",\"lastrevid\":1224740104,\"length\":448204,\"displaytitle\":\"Tom Brady\",\"varianttitles\":{\"en\":\"Tom Brady\"}},{\"pageid\":5422144,\"ns\":0,\"title\":\"Taylor Swift\",\"index\":13,\"description\":\"American singer-songwriter (born 1989)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png/320px-Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png\",\"width\":320,\"height\":473},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:54:01Z\",\"lastrevid\":1224278219,\"length\":361501,\"displaytitle\":\"Taylor Swift\",\"varianttitles\":{\"en\":\"Taylor Swift\"}},{\"pageid\":9988187,\"ns\":0,\"title\":\"Twitter\",\"index\":8,\"description\":\"American social networking service\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Screen_of_X_%28Twitter%29.png/320px-Screen_of_X_%28Twitter%29.png\",\"width\":320,\"height\":179},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:32:30Z\",\"lastrevid\":1224741726,\"length\":325641,\"displaytitle\":\"Twitter\",\"varianttitles\":{\"en\":\"Twitter\"}},{\"pageid\":10396793,\"ns\":0,\"title\":\"The Holocaust\",\"index\":17,\"description\":\"Genocide of European Jews by Nazi Germany\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg/320px-Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg\",\"width\":320,\"height\":214},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:33:23Z\",\"lastrevid\":1223910128,\"length\":124931,\"displaytitle\":\"The Holocaust\",\"varianttitles\":{\"en\":\"The Holocaust\"}},{\"pageid\":11125639,\"ns\":0,\"title\":\"Turkey\",\"index\":5,\"description\":\"Country in West Asia and Southeast Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":39.91666667,\"lon\":32.85,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:26:16Z\",\"lastrevid\":1224741211,\"length\":318437,\"displaytitle\":\"Turkey\",\"varianttitles\":{\"en\":\"Turkey\"}},{\"pageid\":19344515,\"ns\":0,\"title\":\"The Guardian\",\"index\":15,\"description\":\"British national daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/67/The_Guardian_28_May_2021.jpg\",\"width\":283,\"height\":352},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:26Z\",\"lastrevid\":1222658458,\"length\":240656,\"displaytitle\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\"}},{\"pageid\":19508643,\"ns\":0,\"title\":\"Television show\",\"index\":7,\"description\":\"Segment of audiovisual content intended for broadcast on television\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/MDR_Kripo_live.jpg/320px-MDR_Kripo_live.jpg\",\"width\":320,\"height\":243},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:51:01Z\",\"lastrevid\":1224194639,\"length\":43203,\"displaytitle\":\"Television show\",\"varianttitles\":{\"en\":\"Television show\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"813d3248-e1fe-402a-9682-752b65613dd6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.60300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25126","content-disposition":"inline;filename*=UTF-8''World_Time_Zones_Map.svg.png","content-length":"68324","content-type":"image/png","date":"Mon, 20 May 2024 02:02:45 GMT","etag":"9b171584b050c3fd217dfd30574547f6","last-modified":"Sun, 31 Mar 2024 06:20:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ae68bb6-7433-47e3-b82a-204ccc8a02f7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":16718,"java_free_heap":5803,"total_pss":137314,"rss":242300,"native_total_heap":70656,"native_free_heap":10330,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b042f42-943f-4596-8ffc-acd853c4415d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.92400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":322477,"end_time":322743,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2299.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d881c8e-732d-4e6c-8751-a660ef65d778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.19900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dffbad7-3fd8-48f6-86ec-067dd1d76791","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.32100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":324084,"end_time":324140,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"481827","content-type":"multipart/form-data; boundary=7944559f-91a4-4d67-ba85-7db57ef8425f","host":"10.0.2.2:8080","msr-req-id":"39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90e438f0-c93b-4782-9375-89f06db70057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":327043,"end_time":327404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d8494d-f4c5-405f-b999-4cbc026f72c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92e56766-2b0f-4e5d-b514-cc09b7ca5afb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.27900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2.svg/80px-Wiktionary-logo-en-v2.svg.png","method":"get","status_code":200,"start_time":328052,"end_time":328098,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"68799","content-disposition":"inline;filename*=UTF-8''Wiktionary-logo-en-v2.svg.webp","content-length":"3238","content-type":"image/webp","date":"Sun, 19 May 2024 13:54:56 GMT","etag":"c57fb1ee1c3027a62a4112ca10924e9f","last-modified":"Sun, 31 Mar 2024 19:30:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/13195","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92f988ed-f9ac-4c6c-99cb-bcb9a4819264","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.82600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=t\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":324343,"end_time":324645,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95750852-f7dc-45f9-8011-1a06c8b42344","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22030,"java_free_heap":1922,"total_pss":91968,"rss":188260,"native_total_heap":55296,"native_free_heap":12770,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9776297b-4159-4f53-864b-e29bc6d2d2aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.28100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":200,"start_time":328043,"end_time":328100,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36457","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"24904","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20429","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c5dece2-a9d3-4f57-88e0-1120fb9b2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.25800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=trace\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":325633,"end_time":326077,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-zmxwq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"54z4tdhlrtwqvvy3vbuoazu30"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":42021,\"ns\":0,\"title\":\"Trace radioisotope\",\"index\":9,\"description\":\"Radioisotope that occurs naturally in trace amounts\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:00:52Z\",\"lastrevid\":1185490351,\"length\":3871,\"displaytitle\":\"Trace radioisotope\",\"varianttitles\":{\"en\":\"Trace radioisotope\"}},{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":3,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":174247,\"ns\":0,\"title\":\"Traceability\",\"index\":7,\"description\":\"Capability to trace something\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T03:01:35Z\",\"lastrevid\":1209209122,\"length\":22185,\"displaytitle\":\"Traceability\",\"varianttitles\":{\"en\":\"Traceability\"}},{\"pageid\":192266,\"ns\":0,\"title\":\"Trace class\",\"index\":18,\"description\":\"Compact operator for which a finite trace can be defined\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:24Z\",\"lastrevid\":1222901758,\"length\":18356,\"displaytitle\":\"Trace class\",\"varianttitles\":{\"en\":\"Trace class\"}},{\"pageid\":235175,\"ns\":0,\"title\":\"Trace element\",\"index\":6,\"description\":\"Element of low concentration\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:41Z\",\"lastrevid\":1221455717,\"length\":4788,\"displaytitle\":\"Trace element\",\"varianttitles\":{\"en\":\"Trace element\"}},{\"pageid\":344127,\"ns\":0,\"title\":\"Signal trace\",\"index\":14,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-07T07:48:19Z\",\"lastrevid\":1176213464,\"length\":1462,\"displaytitle\":\"Signal trace\",\"varianttitles\":{\"en\":\"Signal trace\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":647241,\"ns\":0,\"title\":\"Without a Trace\",\"index\":12,\"description\":\"American crime drama series that aired on CBS from 2002 to 2009\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/61/Without_a_trace_logo.jpg/320px-Without_a_trace_logo.jpg\",\"width\":320,\"height\":205},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:04:00Z\",\"lastrevid\":1220776236,\"length\":36173,\"displaytitle\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\"}},{\"pageid\":656411,\"ns\":0,\"title\":\"Stack trace\",\"index\":17,\"description\":\"Report of stack frames during program execution\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T11:14:33Z\",\"lastrevid\":1220214397,\"length\":9358,\"displaytitle\":\"Stack trace\",\"varianttitles\":{\"en\":\"Stack trace\"}},{\"pageid\":814148,\"ns\":0,\"title\":\"Partial trace\",\"index\":16,\"description\":\"Function over linear operators\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T19:42:11Z\",\"lastrevid\":1224497501,\"length\":11394,\"displaytitle\":\"Partial trace\",\"varianttitles\":{\"en\":\"Partial trace\"}},{\"pageid\":1411865,\"ns\":0,\"title\":\"TRACE\",\"index\":2,\"description\":\"NASA satellite of the Explorer program\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/TRACE_illustration_%28transparent_bg%29.png/320px-TRACE_illustration_%28transparent_bg%29.png\",\"width\":320,\"height\":358},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:27Z\",\"lastrevid\":1220777730,\"length\":10580,\"displaytitle\":\"TRACE\",\"varianttitles\":{\"en\":\"TRACE\"}},{\"pageid\":1473870,\"ns\":0,\"title\":\"Trace gas\",\"index\":20,\"description\":\"Gases apart from nitrogen, oxygen, and argon in Earth's atmosphere\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:47Z\",\"lastrevid\":1196165108,\"length\":12073,\"displaytitle\":\"Trace gas\",\"varianttitles\":{\"en\":\"Trace gas\"}},{\"pageid\":1775721,\"ns\":0,\"title\":\"Tracor\",\"index\":11,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:50Z\",\"lastrevid\":1187914941,\"length\":6816,\"displaytitle\":\"Tracor\",\"varianttitles\":{\"en\":\"Tracor\"}},{\"pageid\":5923016,\"ns\":0,\"title\":\"Traces\",\"index\":8,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1026786113,\"length\":1364,\"displaytitle\":\"Traces\",\"varianttitles\":{\"en\":\"Traces\"}},{\"pageid\":12977524,\"ns\":0,\"title\":\"Buffalo Trace\",\"index\":10,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-03T03:50:27Z\",\"lastrevid\":1155847083,\"length\":413,\"displaytitle\":\"Buffalo Trace\",\"varianttitles\":{\"en\":\"Buffalo Trace\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":4,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":23691192,\"ns\":0,\"title\":\"Trace Urban\",\"index\":15,\"description\":\"French music video television channel\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Traceurban2022.png\",\"width\":281,\"height\":234},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:02:19Z\",\"lastrevid\":1224430263,\"length\":5085,\"displaytitle\":\"Trace Urban\",\"varianttitles\":{\"en\":\"Trace Urban\"}},{\"pageid\":56336978,\"ns\":0,\"title\":\"Leave No Trace (film)\",\"index\":19,\"description\":\"2018 film directed by Debra Granik\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Leave_No_Trace.png\",\"width\":220,\"height\":326},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:30:52Z\",\"lastrevid\":1213940674,\"length\":31088,\"displaytitle\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\"}},{\"pageid\":67751245,\"ns\":0,\"title\":\"No Trace\",\"index\":13,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-04T12:45:31Z\",\"lastrevid\":1024877270,\"length\":297,\"displaytitle\":\"No Trace\",\"varianttitles\":{\"en\":\"No Trace\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a29a4210-71bb-4aed-926b-594ee1ba676e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a70af2ab-180b-452c-aba4-9814130dc00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.27000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","width":1080,"height":1731,"x":530.96924,"y":97.96875,"touch_down_time":329003,"touch_up_time":329087},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7ad62c3-7d8a-45db-bd7a-6d4f26154631","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.23300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":200,"start_time":327991,"end_time":328051,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45471","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"4852","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21393","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"af11ff8d-59b0-4d28-abc8-45fc301daa75","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3e1c8fb-90f4-4160-a501-8cd713bf716b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.90000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":322423,"end_time":322719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1054","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b480de16-bfef-460b-965d-9168e5fe8b5e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.24900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5389e9a-778b-433d-b086-93cbec315aad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7325882-b0f1-4527-b9b0-8348c61efe78","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":324976,"utime":166,"cutime":0,"cstime":0,"stime":130,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c04c7c3a-ff6c-4535-808b-b8c58d13afad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"caf7e17c-d815-4ea1-b729-235e03758e19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.58900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png","method":"get","status_code":200,"start_time":324364,"end_time":324408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64493","content-disposition":"inline;filename*=UTF-8''Latin_letter_T.svg.png","content-length":"1644","content-type":"image/png","date":"Sun, 19 May 2024 15:06:38 GMT","etag":"9dfb888dcc1370907d55e742f7bff81a","last-modified":"Wed, 13 Mar 2024 09:14:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/37","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc17d708-c713-4578-8cd6-d7f11dae7c02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.80400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=trace\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":325282,"end_time":325623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"3mwp74bhpcfgsz3sjuvmbyv59"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":4,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":53486,\"ns\":0,\"title\":\"Tracey Ullman\",\"index\":6,\"description\":\"British-American actress, comedian, singer, director, producer and writer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg\",\"width\":320,\"height\":421},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1224560456,\"length\":57284,\"displaytitle\":\"Tracey Ullman\",\"varianttitles\":{\"en\":\"Tracey Ullman\"}},{\"pageid\":70289,\"ns\":0,\"title\":\"Trachea\",\"index\":3,\"description\":\"Cartilaginous tube that connects the pharynx and larynx to the lungs\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png\",\"width\":320,\"height\":412},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:58Z\",\"lastrevid\":1221869674,\"length\":33683,\"displaytitle\":\"Trachea\",\"varianttitles\":{\"en\":\"Trachea\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":163837,\"ns\":0,\"title\":\"Tracey Emin\",\"index\":10,\"description\":\"English artist\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Tracey_Emin_1-cropped.jpg/320px-Tracey_Emin_1-cropped.jpg\",\"width\":320,\"height\":430},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1221169591,\"length\":137792,\"displaytitle\":\"Tracey Emin\",\"varianttitles\":{\"en\":\"Tracey Emin\"}},{\"pageid\":169833,\"ns\":0,\"title\":\"Tracy Chapman\",\"index\":8,\"description\":\"American singer-songwriter (born 1964)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1224488953,\"length\":42978,\"displaytitle\":\"Tracy Chapman\",\"varianttitles\":{\"en\":\"Tracy Chapman\"}},{\"pageid\":179179,\"ns\":0,\"title\":\"Traci Lords\",\"index\":2,\"description\":\"American actress (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg\",\"width\":320,\"height\":468},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:44Z\",\"lastrevid\":1223595908,\"length\":59968,\"displaytitle\":\"Traci Lords\",\"varianttitles\":{\"en\":\"Traci Lords\"}},{\"pageid\":305989,\"ns\":0,\"title\":\"Tracy Austin\",\"index\":13,\"description\":\"American tennis player\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Austin_2009_US_Open_02.jpg/320px-Austin_2009_US_Open_02.jpg\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:58:51Z\",\"lastrevid\":1221029612,\"length\":37982,\"displaytitle\":\"Tracy Austin\",\"varianttitles\":{\"en\":\"Tracy Austin\"}},{\"pageid\":367492,\"ns\":0,\"title\":\"Trace fossil\",\"index\":17,\"description\":\"Geological record of biological activity\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Cheirotherium_prints_possibly_Ticinosuchus.JPG/320px-Cheirotherium_prints_possibly_Ticinosuchus.JPG\",\"width\":320,\"height\":509},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:10:29Z\",\"lastrevid\":1222107766,\"length\":47210,\"displaytitle\":\"Trace fossil\",\"varianttitles\":{\"en\":\"Trace fossil\"}},{\"pageid\":481757,\"ns\":0,\"title\":\"Tracy Lawrence\",\"index\":11,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/CountrySingerTracyLawrence.jpg/320px-CountrySingerTracyLawrence.jpg\",\"width\":320,\"height\":311},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1213761574,\"length\":62239,\"displaytitle\":\"Tracy Lawrence\",\"varianttitles\":{\"en\":\"Tracy Lawrence\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":1014986,\"ns\":0,\"title\":\"Tracee Ellis Ross\",\"index\":7,\"description\":\"American actress\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg\",\"width\":320,\"height\":356},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:49:07Z\",\"lastrevid\":1223633352,\"length\":54995,\"displaytitle\":\"Tracee Ellis Ross\",\"varianttitles\":{\"en\":\"Tracee Ellis Ross\"}},{\"pageid\":1335475,\"ns\":0,\"title\":\"Tracy Morgan\",\"index\":9,\"description\":\"American actor and comedian (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Tracy_Morgan_3_Shankbone_2009_NYC.jpg/320px-Tracy_Morgan_3_Shankbone_2009_NYC.jpg\",\"width\":320,\"height\":382},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:14Z\",\"lastrevid\":1224054489,\"length\":45517,\"displaytitle\":\"Tracy Morgan\",\"varianttitles\":{\"en\":\"Tracy Morgan\"}},{\"pageid\":1619336,\"ns\":0,\"title\":\"Tracy-Ann Oberman\",\"index\":12,\"description\":\"English actress, playwright, writer and narrator (born 1966)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Tracy_Ann_Oberman_in_2015.jpg/320px-Tracy_Ann_Oberman_in_2015.jpg\",\"width\":320,\"height\":375},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:14Z\",\"lastrevid\":1224279525,\"length\":60059,\"displaytitle\":\"Tracy-Ann Oberman\",\"varianttitles\":{\"en\":\"Tracy-Ann Oberman\"}},{\"pageid\":1690983,\"ns\":0,\"title\":\"Tracy Smothers\",\"index\":15,\"description\":\"American professional wrestler (1962–2020)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/Tracy_Smothers.jpg/320px-Tracy_Smothers.jpg\",\"width\":320,\"height\":310},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:35Z\",\"lastrevid\":1223488378,\"length\":49799,\"displaytitle\":\"Tracy Smothers\",\"varianttitles\":{\"en\":\"Tracy Smothers\"}},{\"pageid\":1745354,\"ns\":0,\"title\":\"Tracy Byrd\",\"index\":19,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg/320px-Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg\",\"width\":320,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:44Z\",\"lastrevid\":1219259285,\"length\":16462,\"displaytitle\":\"Tracy Byrd\",\"varianttitles\":{\"en\":\"Tracy Byrd\"}},{\"pageid\":2279675,\"ns\":0,\"title\":\"Tracy Barlow\",\"index\":16,\"description\":\"Fictional character from Coronation Street\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/bb/Tracy_Barlow.jpg\",\"width\":305,\"height\":344},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T04:25:27Z\",\"lastrevid\":1222988164,\"length\":74550,\"displaytitle\":\"Tracy Barlow\",\"varianttitles\":{\"en\":\"Tracy Barlow\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":20,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":37853173,\"ns\":0,\"title\":\"Trace inequality\",\"index\":18,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T17:05:53Z\",\"lastrevid\":1219322257,\"length\":26247,\"displaytitle\":\"Trace inequality\",\"varianttitles\":{\"en\":\"Trace inequality\"}},{\"pageid\":51910669,\"ns\":0,\"title\":\"Trace McSorley\",\"index\":14,\"description\":\"American football player (born 1995)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg/320px-Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:09:27Z\",\"lastrevid\":1222646584,\"length\":44764,\"displaytitle\":\"Trace McSorley\",\"varianttitles\":{\"en\":\"Trace McSorley\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce071feb-2cee-406b-896b-1e8ea05be564","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.95100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","method":"get","status_code":200,"start_time":327397,"end_time":327770,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"468","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51c9a940-0fe6-11ef-9bdc-5a9dfe411725\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"disambiguation\",\"title\":\"Trace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296103\",\"titles\":{\"canonical\":\"Trace\",\"normalized\":\"Trace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\"},\"pageid\":155748,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1162625126\",\"tid\":\"d5940d5b-1717-11ee-845e-0f9a2664809f\",\"timestamp\":\"2023-06-30T07:29:23Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.wikipedia.org/wiki/Trace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Trace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Trace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Trace\"}},\"extract\":\"Trace may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTrace\u003c/b\u003e may refer to:\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce2d88f0-b357-42e8-8825-41151f2d3de1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":327976,"utime":233,"cutime":0,"cstime":0,"stime":174,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d0ed5ef1-c199-4946-8bc4-7d19540a0524","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.08400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2aa49fc-afd7-4e5c-b328-54cb588a0838","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.59400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324413,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"35084","content-disposition":"inline;filename*=UTF-8''Flag_of_Turkey.svg.png","content-length":"2498","content-type":"image/png","date":"Sun, 19 May 2024 23:16:47 GMT","etag":"0fa0bc210e5d2db4c8a5507ef34598e1","last-modified":"Mon, 29 Apr 2024 21:34:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/30","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ddc23c43-2cc2-44ea-a9fd-25dd0a38d38e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0c6441d-0499-4418-b6a7-5bab969e7c0c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_toolbar_button_search","width":670,"height":95,"x":483.96973,"y":144.96094,"touch_down_time":329748,"touch_up_time":329844},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ebb4446c-0a69-4532-8bd3-470ed6420d62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f567c552-15e0-4bcf-a47e-c01a1e9c3714","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.32400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/5/5f/Disambig_gray.svg/60px-Disambig_gray.svg.png","method":"get","status_code":200,"start_time":328100,"end_time":328143,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50716","content-disposition":"inline;filename*=UTF-8''Disambig_gray.svg.webp","content-length":"820","content-type":"image/webp","date":"Sun, 19 May 2024 18:56:18 GMT","etag":"e0e1b8db1a81204cebe4a1df26743a23","last-modified":"Thu, 06 May 2021 00:00:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3745","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"08b133ca-0aa4-43a5-88f7-58aa0de3cdbc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17813,"java_free_heap":4702,"total_pss":83729,"rss":180864,"native_total_heap":55296,"native_free_heap":13934,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a473be3-d72a-4c40-8fe2-48d3048a1b74","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.48000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","method":"get","status_code":200,"start_time":328250,"end_time":328299,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"25486","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"574","content-location":"https://en.wikipedia.org/api/rest_v1/data/i18n/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/i18n/0.0.1\"","date":"Mon, 20 May 2024 01:56:49 GMT","etag":"W/\"-29437690499/a8435d10-1587-11ef-9ca2-eb8d6d601c75\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/6784","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"locale\":\"en\",\"messages\":{\"en\":{\"description-add-link-title\":\"Add article description\",\"article-read-more-title\":\"Read more\",\"table-title-other\":\"More information\",\"page-edit-history\":\"View edit history\",\"info-box-close-text\":\"Close\",\"page-talk-page-subtitle\":\"Discuss improvements to this article\",\"page-issues-subtitle\":\"Alerts about subpar or problematic content\",\"page-talk-page\":\"View talk page\",\"info-box-title\":\"Quick Facts\",\"view-in-browser-footer-link\":\"View article in browser\",\"page-location\":\"View on a map\",\"page-similar-titles\":\"Similar pages\",\"page-last-edited\":\"{{PLURAL:$1|Updated yesterday|Updated $1 days ago|0=Updated today}}\",\"article-about-title\":\"About this article\",\"page-issues\":\"Page issues\",\"license-footer-name\":\"CC BY-SA 3.0\",\"license-footer-name-cc4\":\"CC BY-SA 4.0\",\"license-footer-text\":\"Content is available under $1 unless otherwise noted.\",\"page-read-in-other-languages\":\"Available in {{PLURAL:$1|$1 other language|$1 other languages}}\",\"article-edit-button\":\"Edit section\",\"article-edit-protected-button\":\"Edit section on protected page\",\"article-section-expand\":\"Expand section\",\"article-section-collapse\":\"Collapse section\",\"table-expand\":\"Expand table\",\"table-collapse\":\"Collapse table\",\"references-preview-header\":\"Preview of references\"}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1aa23b27-04c2-410b-bce7-0d79febcf712","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be891a0-a5c1-406e-85c5-ab1f983f0760","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bd7c24c-12dc-4e90-872f-67f6370e7867","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.14000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":237.96387,"y":390.9375,"touch_down_time":326873,"touch_up_time":326954},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2bdca819-4669-445e-8106-8116f866b95b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2db5a959-dfe4-474b-8fe2-f972d4fdeb9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"309c2c86-0171-42dd-a81c-9353368a2363","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.11900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3a47f5c8-6a66-488a-8c09-ed25b4078758","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.87500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png","method":"get","status_code":200,"start_time":325640,"end_time":325694,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"21113","content-disposition":"inline;filename*=UTF-8''Illu_conducting_passages.svg.png","content-length":"46000","content-type":"image/png","date":"Mon, 20 May 2024 03:09:39 GMT","etag":"16b2c870410f65c99f7ec65bb1c46d6d","last-modified":"Mon, 21 Mar 2022 10:14:29 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"46631109-606e-412c-8d27-2653353abe6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.08000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","method":"get","status_code":200,"start_time":325639,"end_time":325899,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg","content-length":"47989","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:33 GMT","etag":"d9b4d0f75089368a850fc4cde6a5afc7","last-modified":"Mon, 12 Jul 2021 20:26:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5009c99a-53e1-41b5-9800-c34d289c5010","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22900000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":200,"start_time":327991,"end_time":328048,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39475","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"14055","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21501","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"57e55e32-b032-43e0-9c2d-f286bb2cfa49","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.21200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5aa51a98-49a1-447e-9e52-d5c63f2a6464","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15300000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","method":"get","status_code":200,"start_time":327396,"end_time":327972,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","upgrade-insecure-requests":"1","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"pageview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51cd2bb0-0fe6-11ef-bd1a-1d71cb25ee14\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2030","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6ad624ae-1dca-4ec8-831c-eaa44203ceff","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.25500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c011a3d-94fa-493a-be07-dab17ee61e96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.10500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71bdce5c-8804-438f-a355-d2e051f6b015","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.22800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":200,"start_time":327991,"end_time":328047,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38566","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"2529","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11193","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"723c72d8-76bc-4ca1-acc5-2661c3a13cf7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.09000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"79b2eb72-4c94-4c24-be6a-f504258eb93c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.21800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","method":"get","status_code":200,"start_time":328308,"end_time":329037,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","referer":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Trace","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"1","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/related/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:36 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"accept-encoding,treat-as-untrusted,x-forwarded-proto,cookie,authorization,accept-language","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-search-id":"3ezppzh4qhqwuen8g21xvvnhm","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"pages\":[{\"pageid\":51856,\"ns\":0,\"index\":20,\"type\":\"disambiguation\",\"title\":\"Acme\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296960\",\"titles\":{\"canonical\":\"Acme\",\"normalized\":\"Acme\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAcme\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210027613\",\"tid\":\"a03bdbe5-d337-11ee-9881-cd92505f5158\",\"timestamp\":\"2024-02-24T17:10:36Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.wikipedia.org/wiki/Acme?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Acme\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Acme\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Acme\",\"edit\":\"https://en.m.wikipedia.org/wiki/Acme?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Acme\"}},\"extract\":\"Acme is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAcme\u003c/b\u003e is Ancient Greek for \\\"the peak\\\", \\\"zenith\\\" or \\\"prime\\\". It may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Acme\"},{\"pageid\":55044,\"ns\":0,\"index\":11,\"type\":\"disambiguation\",\"title\":\"Transition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q405416\",\"titles\":{\"canonical\":\"Transition\",\"normalized\":\"Transition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTransition\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218110154\",\"tid\":\"dba53260-f6a9-11ee-97a9-1e10ac84822b\",\"timestamp\":\"2024-04-09T19:46:29Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.wikipedia.org/wiki/Transition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Transition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Transition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Transition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Transition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Transition\"}},\"extract\":\"Transition or transitional may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTransition\u003c/b\u003e or \u003cb\u003etransitional\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Transition\"},{\"pageid\":58717,\"ns\":0,\"index\":9,\"type\":\"disambiguation\",\"title\":\"Hume\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q224669\",\"titles\":{\"canonical\":\"Hume\",\"normalized\":\"Hume\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHume\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1193206643\",\"tid\":\"86ab898b-a98b-11ee-a7da-65aec92fe735\",\"timestamp\":\"2024-01-02T16:25:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.wikipedia.org/wiki/Hume?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hume\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hume\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hume\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hume?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hume\"}},\"extract\":\"Hume most commonly refers to:David Hume (1711–1776), Scottish philosopher\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHume\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eDavid Hume (1711–1776), Scottish philosopher\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Hume\"},{\"pageid\":148814,\"ns\":0,\"index\":12,\"type\":\"disambiguation\",\"title\":\"Max\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q225238\",\"titles\":{\"canonical\":\"Max\",\"normalized\":\"Max\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMax\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219425766\",\"tid\":\"6d34119c-fce2-11ee-8b11-75e3c19343cd\",\"timestamp\":\"2024-04-17T17:46:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.wikipedia.org/wiki/Max?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Max\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Max\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Max\",\"edit\":\"https://en.m.wikipedia.org/wiki/Max?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Max\"}},\"extract\":\"Max or MAX may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMax\u003c/b\u003e or \u003cb\u003eMAX\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Max\"},{\"pageid\":279097,\"ns\":0,\"index\":2,\"type\":\"disambiguation\",\"title\":\"Star_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q176688\",\"titles\":{\"canonical\":\"Star_(disambiguation)\",\"normalized\":\"Star (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStar (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224134541\",\"tid\":\"85509e7f-1385-11ef-bd2f-84134f5c8a7b\",\"timestamp\":\"2024-05-16T13:09:26Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Star_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Star_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Star_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Star_(disambiguation)\"}},\"extract\":\"A star is a luminous astronomical object.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003estar\u003c/b\u003e is a luminous astronomical object.\u003c/p\u003e\",\"normalizedtitle\":\"Star (disambiguation)\"},{\"pageid\":290282,\"ns\":0,\"index\":8,\"type\":\"disambiguation\",\"title\":\"State\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q12251220\",\"titles\":{\"canonical\":\"State\",\"normalized\":\"State\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eState\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216877243\",\"tid\":\"30babe9c-f0fd-11ee-a250-3300880f5fd7\",\"timestamp\":\"2024-04-02T14:27:53Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/State\",\"revisions\":\"https://en.wikipedia.org/wiki/State?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:State\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/State\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/State\",\"edit\":\"https://en.m.wikipedia.org/wiki/State?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:State\"}},\"extract\":\"State most commonly refers to:State (polity), a centralized political organization that regulates law and society within a territory\\nSovereign state, a sovereign polity in international law, commonly referred to as a country\\nNation state, a state where the majority identify with a single nation \\nConstituent state, a political subdivision of a state\\nFederated state, constituent states part of a federation\\nState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eState\u003c/b\u003e most commonly refers to:\u003c/p\u003e\u003cul\u003e\u003cli\u003eState (polity), a centralized political organization that regulates law and society within a territory\\n\u003cul\u003e\u003cli\u003eSovereign state, a sovereign polity in international law, commonly referred to as a country\u003c/li\u003e\\n\u003cli\u003eNation state, a state where the majority identify with a single nation \u003c/li\u003e\\n\u003cli\u003eConstituent state, a political subdivision of a state\u003c/li\u003e\\n\u003cli\u003eFederated state, constituent states part of a federation\u003c/li\u003e\u003c/ul\u003e\u003c/li\u003e\\n\u003cli\u003eState of nature, a concept within philosophy that describes the way humans acted before forming societies or civilizations\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"State\"},{\"pageid\":306880,\"ns\":0,\"index\":17,\"type\":\"disambiguation\",\"title\":\"Frame\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q294490\",\"titles\":{\"canonical\":\"Frame\",\"normalized\":\"Frame\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFrame\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220799565\",\"tid\":\"51bfac39-0361-11ef-a4ec-fdcd7f4a5f97\",\"timestamp\":\"2024-04-26T00:09:59Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.wikipedia.org/wiki/Frame?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Frame\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Frame\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Frame\",\"edit\":\"https://en.m.wikipedia.org/wiki/Frame?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Frame\"}},\"extract\":\"A frame is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eframe\u003c/b\u003e is often a structural system that supports other components of a physical construction and/or steel frame that limits the construction's extent.\u003c/p\u003e\",\"normalizedtitle\":\"Frame\"},{\"pageid\":466211,\"ns\":0,\"index\":4,\"type\":\"disambiguation\",\"title\":\"Flow\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5426556\",\"titles\":{\"canonical\":\"Flow\",\"normalized\":\"Flow\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFlow\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222836864\",\"tid\":\"542af432-0d01-11ef-b3b3-5feec1ee5c5b\",\"timestamp\":\"2024-05-08T06:08:03Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.wikipedia.org/wiki/Flow?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Flow\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Flow\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Flow\",\"edit\":\"https://en.m.wikipedia.org/wiki/Flow?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Flow\"}},\"extract\":\"Flow may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFlow\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Flow\"},{\"pageid\":497854,\"ns\":0,\"index\":10,\"type\":\"disambiguation\",\"title\":\"Triad\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2482068\",\"titles\":{\"canonical\":\"Triad\",\"normalized\":\"Triad\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTriad\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221484812\",\"tid\":\"b78d96ed-06b9-11ef-9cc5-35df4b5c8ef8\",\"timestamp\":\"2024-04-30T06:20:19Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.wikipedia.org/wiki/Triad?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Triad\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Triad\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Triad\",\"edit\":\"https://en.m.wikipedia.org/wiki/Triad?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Triad\"}},\"extract\":\"Triad or triade may refer to:a group of three\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTriad\u003c/b\u003e or \u003cb\u003etriade\u003c/b\u003e may refer to:\u003c/p\u003e\u003cul\u003e\u003cli\u003ea group of three\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Triad\"},{\"pageid\":528769,\"ns\":0,\"index\":5,\"type\":\"disambiguation\",\"title\":\"Locust_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q416372\",\"titles\":{\"canonical\":\"Locust_(disambiguation)\",\"normalized\":\"Locust (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLocust (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1184863699\",\"tid\":\"db722f41-81ce-11ee-b356-a8834ef0e4e5\",\"timestamp\":\"2023-11-13T02:46:34Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Locust_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Locust_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Locust_(disambiguation)\"}},\"extract\":\"Locusts are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLocusts\u003c/b\u003e are the swarming phase of certain species of short-horned grasshoppers in the family Acridida.\u003c/p\u003e\",\"normalizedtitle\":\"Locust (disambiguation)\"},{\"pageid\":651807,\"ns\":0,\"index\":6,\"type\":\"disambiguation\",\"title\":\"Operator\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q228588\",\"titles\":{\"canonical\":\"Operator\",\"normalized\":\"Operator\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOperator\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219370184\",\"tid\":\"9c787d9b-fca5-11ee-b070-ca416f63e422\",\"timestamp\":\"2024-04-17T10:31:12Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.wikipedia.org/wiki/Operator?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Operator\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Operator\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Operator\",\"edit\":\"https://en.m.wikipedia.org/wiki/Operator?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Operator\"}},\"extract\":\"Operator may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOperator\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Operator\"},{\"pageid\":698312,\"ns\":0,\"index\":1,\"type\":\"disambiguation\",\"title\":\"Bass\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q227155\",\"titles\":{\"canonical\":\"Bass\",\"normalized\":\"Bass\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBass\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212658995\",\"tid\":\"5bd41b08-dda6-11ee-9915-c896cafa6952\",\"timestamp\":\"2024-03-08T23:48:27Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.wikipedia.org/wiki/Bass?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bass\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bass\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bass\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bass?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bass\"}},\"extract\":\"Bass or Basses may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBass\u003c/b\u003e or \u003cb\u003eBasses\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bass\"},{\"pageid\":1047948,\"ns\":0,\"index\":14,\"type\":\"disambiguation\",\"title\":\"Bean_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q356770\",\"titles\":{\"canonical\":\"Bean_(disambiguation)\",\"normalized\":\"Bean (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBean (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156385398\",\"tid\":\"85749416-f8b9-11ed-8a51-5d7eb7f0d61d\",\"timestamp\":\"2023-05-22T15:58:41Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bean_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bean_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bean_(disambiguation)\"}},\"extract\":\"A bean is a large seed of several plants in the family Fabaceae.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebean\u003c/b\u003e is a large seed of several plants in the family \u003ci\u003eFabaceae\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Bean (disambiguation)\"},{\"pageid\":1102921,\"ns\":0,\"index\":7,\"type\":\"disambiguation\",\"title\":\"Bear_Creek\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q299502\",\"titles\":{\"canonical\":\"Bear_Creek\",\"normalized\":\"Bear Creek\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBear Creek\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1186805589\",\"tid\":\"5b7499d1-8bae-11ee-bdab-354de44b9cb7\",\"timestamp\":\"2023-11-25T16:19:07Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bear_Creek\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bear_Creek\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bear_Creek\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bear_Creek?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bear_Creek\"}},\"extract\":\"Bear Creek or Bearcreek may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBear Creek\u003c/b\u003e or \u003cb\u003eBearcreek\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Bear Creek\"},{\"pageid\":1928111,\"ns\":0,\"index\":3,\"type\":\"disambiguation\",\"title\":\"Cache\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1025020\",\"titles\":{\"canonical\":\"Cache\",\"normalized\":\"Cache\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCache\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661635\",\"tid\":\"3bc4a1e4-160a-11ef-b8bb-3cdd522a99bf\",\"timestamp\":\"2024-05-19T18:04:28Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.wikipedia.org/wiki/Cache?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cache\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cache\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cache\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cache?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cache\"}},\"extract\":\"Cache, caching, or caché may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCache\u003c/b\u003e, \u003cb\u003ecaching\u003c/b\u003e, or \u003cb\u003ecaché\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Cache\"},{\"pageid\":3281599,\"ns\":0,\"index\":16,\"type\":\"disambiguation\",\"title\":\"Genius_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q404618\",\"titles\":{\"canonical\":\"Genius_(disambiguation)\",\"normalized\":\"Genius (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGenius (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1161111422\",\"tid\":\"6b9c9f6b-0f96-11ee-84fa-f9ac16ac26a1\",\"timestamp\":\"2023-06-20T18:15:22Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Genius_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Genius_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Genius_(disambiguation)\"}},\"extract\":\"A genius is a person who has exceptional intellectual ability, creativity, or originality.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egenius\u003c/b\u003e is a person who has exceptional intellectual ability, creativity, or originality.\u003c/p\u003e\",\"normalizedtitle\":\"Genius (disambiguation)\"},{\"pageid\":4620140,\"ns\":0,\"index\":15,\"type\":\"disambiguation\",\"title\":\"Streamline\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1900895\",\"titles\":{\"canonical\":\"Streamline\",\"normalized\":\"Streamline\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eStreamline\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1209904008\",\"tid\":\"434f1d0f-d2bc-11ee-b2c1-036e3ee9095a\",\"timestamp\":\"2024-02-24T02:27:32Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.wikipedia.org/wiki/Streamline?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Streamline\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Streamline\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Streamline\",\"edit\":\"https://en.m.wikipedia.org/wiki/Streamline?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Streamline\"}},\"extract\":\"Streamline may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eStreamline\u003c/b\u003e may refer to:\u003c/p\u003e\",\"normalizedtitle\":\"Streamline\"},{\"pageid\":6771526,\"ns\":0,\"index\":19,\"type\":\"disambiguation\",\"title\":\"Linear_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1826396\",\"titles\":{\"canonical\":\"Linear_(disambiguation)\",\"normalized\":\"Linear (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLinear (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216492975\",\"tid\":\"26ee5fd7-ef45-11ee-82bc-82313c7c5f5e\",\"timestamp\":\"2024-03-31T09:57:58Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Linear_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Linear_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Linear_(disambiguation)\"}},\"extract\":\"Linear is used to describe linearity in mathematics.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLinear\u003c/b\u003e is used to describe linearity in mathematics.\u003c/p\u003e\",\"normalizedtitle\":\"Linear (disambiguation)\"},{\"pageid\":11040001,\"ns\":0,\"index\":13,\"type\":\"disambiguation\",\"title\":\"Fun_(disambiguation)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q360552\",\"titles\":{\"canonical\":\"Fun_(disambiguation)\",\"normalized\":\"Fun (disambiguation)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFun (disambiguation)\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1156949285\",\"tid\":\"4fb9f00f-faf1-11ed-81d7-2fc57ef16069\",\"timestamp\":\"2023-05-25T11:43:05Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Fun_(disambiguation)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Fun_(disambiguation)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Fun_(disambiguation)\"}},\"extract\":\"Fun generally refers to recreation or entertainment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFun\u003c/b\u003e generally refers to recreation or entertainment.\u003c/p\u003e\",\"normalizedtitle\":\"Fun (disambiguation)\"},{\"pageid\":50724448,\"ns\":0,\"index\":18,\"type\":\"standard\",\"title\":\"Glossary_of_computer_graphics\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25106492\",\"titles\":{\"canonical\":\"Glossary_of_computer_graphics\",\"normalized\":\"Glossary of computer graphics\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGlossary of computer graphics\u003c/span\u003e\"},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211169501\",\"tid\":\"6599dade-d78d-11ee-8bf4-2e6b9dc7dad8\",\"timestamp\":\"2024-03-01T05:34:39Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Glossary_of_computer_graphics\",\"edit\":\"https://en.m.wikipedia.org/wiki/Glossary_of_computer_graphics?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Glossary_of_computer_graphics\"}},\"extract\":\"This is a glossary of terms relating to computer graphics.\",\"extract_html\":\"\u003cp\u003eThis is a glossary of terms relating to computer graphics.\u003c/p\u003e\",\"normalizedtitle\":\"Glossary of computer graphics\"}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c3bcc8c-ca85-4ee0-a848-ba43ca9a5158","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.51100000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=t\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":323918,"end_time":324329,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2298.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"7srrpm43ynlqnfiadnncd1yp9"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":25734,\"ns\":0,\"title\":\"Taiwan\",\"index\":12,\"description\":\"Country in East Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Flag_of_the_Republic_of_China.svg/320px-Flag_of_the_Republic_of_China.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":24,\"lon\":121,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T07:37:08Z\",\"lastrevid\":1224751002,\"length\":313804,\"displaytitle\":\"Taiwan\",\"varianttitles\":{\"en\":\"Taiwan\"}},{\"pageid\":29810,\"ns\":0,\"title\":\"Texas\",\"index\":16,\"description\":\"U.S. state\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Flag_of_Texas.svg/320px-Flag_of_Texas.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":31,\"lon\":-99,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T07:11:45Z\",\"lastrevid\":1224586226,\"length\":258627,\"displaytitle\":\"Texas\",\"varianttitles\":{\"en\":\"Texas\"}},{\"pageid\":29812,\"ns\":0,\"title\":\"The Beatles\",\"index\":14,\"description\":\"English rock band (1960–1970)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d8/The_Beatles_members_at_New_York_City_in_1964.jpg/320px-The_Beatles_members_at_New_York_City_in_1964.jpg\",\"width\":320,\"height\":320},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224641394,\"length\":221036,\"displaytitle\":\"The Beatles\",\"varianttitles\":{\"en\":\"The Beatles\"}},{\"pageid\":30057,\"ns\":0,\"title\":\"Tokyo\",\"index\":18,\"description\":\"Capital and most populous city of Japan\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Skyscrapers_of_Shinjuku_2009_January.jpg/320px-Skyscrapers_of_Shinjuku_2009_January.jpg\",\"width\":320,\"height\":171},\"coordinates\":[{\"lat\":35.68972222,\"lon\":139.69222222,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T23:05:37Z\",\"lastrevid\":1224699089,\"length\":157548,\"displaytitle\":\"Tokyo\",\"varianttitles\":{\"en\":\"Tokyo\"}},{\"pageid\":30071,\"ns\":0,\"title\":\"T\",\"index\":1,\"description\":\"20th letter of the Latin alphabet\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T11:32:01Z\",\"lastrevid\":1223065110,\"length\":16234,\"displaytitle\":\"T\",\"varianttitles\":{\"en\":\"T\"}},{\"pageid\":30128,\"ns\":0,\"title\":\"Thailand\",\"index\":10,\"description\":\"Country in Southeast Asia\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Flag_of_Thailand.svg/320px-Flag_of_Thailand.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":15,\"lon\":101,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224577988,\"length\":271956,\"displaytitle\":\"Thailand\",\"varianttitles\":{\"en\":\"Thailand\"}},{\"pageid\":30463,\"ns\":0,\"title\":\"Taxonomy (biology)\",\"index\":3,\"description\":\"Science of naming, defining and classifying organisms\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:43Z\",\"lastrevid\":1218991780,\"length\":70362,\"displaytitle\":\"Taxonomy (biology)\",\"varianttitles\":{\"en\":\"Taxonomy (biology)\"}},{\"pageid\":30680,\"ns\":0,\"title\":\"The New York Times\",\"index\":6,\"description\":\"American daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b7/The_New_York_Times%2C_January_13%2C_2024.png\",\"width\":234,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T21:12:00Z\",\"lastrevid\":1224686229,\"length\":227907,\"displaytitle\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe New York Times\u003c/i\u003e\"}},{\"pageid\":30837,\"ns\":0,\"title\":\"Tampa Bay Buccaneers\",\"index\":9,\"description\":\"National Football League franchise in Tampa, Florida\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Tampabay_buccaneers_unif20.png/320px-Tampabay_buccaneers_unif20.png\",\"width\":320,\"height\":306},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T00:53:12Z\",\"lastrevid\":1224621779,\"length\":225993,\"displaytitle\":\"Tampa Bay Buccaneers\",\"varianttitles\":{\"en\":\"Tampa Bay Buccaneers\"}},{\"pageid\":30890,\"ns\":0,\"title\":\"Time zone\",\"index\":4,\"description\":\"Area that observes a uniform standard time\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png\",\"width\":320,\"height\":174},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224125392,\"length\":92267,\"displaytitle\":\"Time zone\",\"varianttitles\":{\"en\":\"Time zone\"}},{\"pageid\":31460,\"ns\":0,\"title\":\"Tom Cruise\",\"index\":20,\"description\":\"American actor (born 1962)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Tom_Cruise_by_Gage_Skidmore_2.jpg/320px-Tom_Cruise_by_Gage_Skidmore_2.jpg\",\"width\":320,\"height\":403},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:55Z\",\"lastrevid\":1224593587,\"length\":123370,\"displaytitle\":\"Tom Cruise\",\"varianttitles\":{\"en\":\"Tom Cruise\"}},{\"pageid\":52911,\"ns\":0,\"title\":\"Town\",\"index\":11,\"description\":\"Type of human settlement\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/St_Mary%27s_Church%2C_Castle_Street_1.jpg/320px-St_Mary%27s_Church%2C_Castle_Street_1.jpg\",\"width\":320,\"height\":240},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:58Z\",\"lastrevid\":1223398228,\"length\":97586,\"displaytitle\":\"Town\",\"varianttitles\":{\"en\":\"Town\"}},{\"pageid\":212390,\"ns\":0,\"title\":\"Tilde\",\"index\":2,\"description\":\"Punctuation and accent mark\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:48Z\",\"lastrevid\":1224034998,\"length\":62175,\"displaytitle\":\"Tilde\",\"varianttitles\":{\"en\":\"Tilde\"}},{\"pageid\":339841,\"ns\":0,\"title\":\"Tom Brady\",\"index\":19,\"description\":\"American football player (born 1977)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Tom_Brady_2021.png/320px-Tom_Brady_2021.png\",\"width\":320,\"height\":453},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:13:06Z\",\"lastrevid\":1224740104,\"length\":448204,\"displaytitle\":\"Tom Brady\",\"varianttitles\":{\"en\":\"Tom Brady\"}},{\"pageid\":5422144,\"ns\":0,\"title\":\"Taylor Swift\",\"index\":13,\"description\":\"American singer-songwriter (born 1989)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png/320px-Taylor_Swift_at_the_2023_MTV_Video_Music_Awards_%283%29.png\",\"width\":320,\"height\":473},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:54:01Z\",\"lastrevid\":1224278219,\"length\":361501,\"displaytitle\":\"Taylor Swift\",\"varianttitles\":{\"en\":\"Taylor Swift\"}},{\"pageid\":9988187,\"ns\":0,\"title\":\"Twitter\",\"index\":8,\"description\":\"American social networking service\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Screen_of_X_%28Twitter%29.png/320px-Screen_of_X_%28Twitter%29.png\",\"width\":320,\"height\":179},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:32:30Z\",\"lastrevid\":1224741726,\"length\":325641,\"displaytitle\":\"Twitter\",\"varianttitles\":{\"en\":\"Twitter\"}},{\"pageid\":10396793,\"ns\":0,\"title\":\"The Holocaust\",\"index\":17,\"description\":\"Genocide of European Jews by Nazi Germany\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg/320px-Selection_on_the_ramp_at_Auschwitz-Birkenau%2C_1944_%28Auschwitz_Album%29_1a.jpg\",\"width\":320,\"height\":214},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:33:23Z\",\"lastrevid\":1223910128,\"length\":124931,\"displaytitle\":\"The Holocaust\",\"varianttitles\":{\"en\":\"The Holocaust\"}},{\"pageid\":11125639,\"ns\":0,\"title\":\"Turkey\",\"index\":5,\"description\":\"Country in West Asia and Southeast Europe\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png\",\"width\":320,\"height\":213},\"coordinates\":[{\"lat\":39.91666667,\"lon\":32.85,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T05:26:16Z\",\"lastrevid\":1224741211,\"length\":318437,\"displaytitle\":\"Turkey\",\"varianttitles\":{\"en\":\"Turkey\"}},{\"pageid\":19344515,\"ns\":0,\"title\":\"The Guardian\",\"index\":15,\"description\":\"British national daily newspaper\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/67/The_Guardian_28_May_2021.jpg\",\"width\":283,\"height\":352},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:26Z\",\"lastrevid\":1222658458,\"length\":240656,\"displaytitle\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eThe Guardian\u003c/i\u003e\"}},{\"pageid\":19508643,\"ns\":0,\"title\":\"Television show\",\"index\":7,\"description\":\"Segment of audiovisual content intended for broadcast on television\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/MDR_Kripo_live.jpg/320px-MDR_Kripo_live.jpg\",\"width\":320,\"height\":243},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:51:01Z\",\"lastrevid\":1224194639,\"length\":43203,\"displaytitle\":\"Television show\",\"varianttitles\":{\"en\":\"Television show\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"813d3248-e1fe-402a-9682-752b65613dd6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.60300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_Time_Zones_Map.svg/320px-World_Time_Zones_Map.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324422,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"25126","content-disposition":"inline;filename*=UTF-8''World_Time_Zones_Map.svg.png","content-length":"68324","content-type":"image/png","date":"Mon, 20 May 2024 02:02:45 GMT","etag":"9b171584b050c3fd217dfd30574547f6","last-modified":"Sun, 31 Mar 2024 06:20:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8ae68bb6-7433-47e3-b82a-204ccc8a02f7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":16718,"java_free_heap":5803,"total_pss":137314,"rss":242300,"native_total_heap":70656,"native_free_heap":10330,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b042f42-943f-4596-8ffc-acd853c4415d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.92400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026meta=siteinfo\u0026siprop=namespaces","method":"get","status_code":200,"start_time":322477,"end_time":322743,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw2299.codfw.wmnet","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"namespaces\":{\"-2\":{\"id\":-2,\"case\":\"first-letter\",\"name\":\"Media\",\"subpages\":false,\"canonical\":\"Media\",\"content\":false,\"nonincludable\":false},\"-1\":{\"id\":-1,\"case\":\"first-letter\",\"name\":\"Special\",\"subpages\":false,\"canonical\":\"Special\",\"content\":false,\"nonincludable\":false},\"0\":{\"id\":0,\"case\":\"first-letter\",\"name\":\"\",\"subpages\":false,\"content\":true,\"nonincludable\":false},\"1\":{\"id\":1,\"case\":\"first-letter\",\"name\":\"Talk\",\"subpages\":true,\"canonical\":\"Talk\",\"content\":false,\"nonincludable\":false},\"2\":{\"id\":2,\"case\":\"first-letter\",\"name\":\"User\",\"subpages\":true,\"canonical\":\"User\",\"content\":false,\"nonincludable\":false},\"3\":{\"id\":3,\"case\":\"first-letter\",\"name\":\"User talk\",\"subpages\":true,\"canonical\":\"User talk\",\"content\":false,\"nonincludable\":false},\"4\":{\"id\":4,\"case\":\"first-letter\",\"name\":\"Wikipedia\",\"subpages\":true,\"canonical\":\"Project\",\"content\":false,\"nonincludable\":false},\"5\":{\"id\":5,\"case\":\"first-letter\",\"name\":\"Wikipedia talk\",\"subpages\":true,\"canonical\":\"Project talk\",\"content\":false,\"nonincludable\":false},\"6\":{\"id\":6,\"case\":\"first-letter\",\"name\":\"File\",\"subpages\":false,\"canonical\":\"File\",\"content\":false,\"nonincludable\":false},\"7\":{\"id\":7,\"case\":\"first-letter\",\"name\":\"File talk\",\"subpages\":true,\"canonical\":\"File talk\",\"content\":false,\"nonincludable\":false},\"8\":{\"id\":8,\"case\":\"first-letter\",\"name\":\"MediaWiki\",\"subpages\":false,\"canonical\":\"MediaWiki\",\"content\":false,\"nonincludable\":false,\"namespaceprotection\":\"editinterface\"},\"9\":{\"id\":9,\"case\":\"first-letter\",\"name\":\"MediaWiki talk\",\"subpages\":true,\"canonical\":\"MediaWiki talk\",\"content\":false,\"nonincludable\":false},\"10\":{\"id\":10,\"case\":\"first-letter\",\"name\":\"Template\",\"subpages\":true,\"canonical\":\"Template\",\"content\":false,\"nonincludable\":false},\"11\":{\"id\":11,\"case\":\"first-letter\",\"name\":\"Template talk\",\"subpages\":true,\"canonical\":\"Template talk\",\"content\":false,\"nonincludable\":false},\"12\":{\"id\":12,\"case\":\"first-letter\",\"name\":\"Help\",\"subpages\":true,\"canonical\":\"Help\",\"content\":false,\"nonincludable\":false},\"13\":{\"id\":13,\"case\":\"first-letter\",\"name\":\"Help talk\",\"subpages\":true,\"canonical\":\"Help talk\",\"content\":false,\"nonincludable\":false},\"14\":{\"id\":14,\"case\":\"first-letter\",\"name\":\"Category\",\"subpages\":true,\"canonical\":\"Category\",\"content\":false,\"nonincludable\":false},\"15\":{\"id\":15,\"case\":\"first-letter\",\"name\":\"Category talk\",\"subpages\":true,\"canonical\":\"Category talk\",\"content\":false,\"nonincludable\":false},\"100\":{\"id\":100,\"case\":\"first-letter\",\"name\":\"Portal\",\"subpages\":true,\"canonical\":\"Portal\",\"content\":false,\"nonincludable\":false},\"101\":{\"id\":101,\"case\":\"first-letter\",\"name\":\"Portal talk\",\"subpages\":true,\"canonical\":\"Portal talk\",\"content\":false,\"nonincludable\":false},\"118\":{\"id\":118,\"case\":\"first-letter\",\"name\":\"Draft\",\"subpages\":true,\"canonical\":\"Draft\",\"content\":false,\"nonincludable\":false},\"119\":{\"id\":119,\"case\":\"first-letter\",\"name\":\"Draft talk\",\"subpages\":true,\"canonical\":\"Draft talk\",\"content\":false,\"nonincludable\":false},\"710\":{\"id\":710,\"case\":\"first-letter\",\"name\":\"TimedText\",\"subpages\":false,\"canonical\":\"TimedText\",\"content\":false,\"nonincludable\":false},\"711\":{\"id\":711,\"case\":\"first-letter\",\"name\":\"TimedText talk\",\"subpages\":false,\"canonical\":\"TimedText talk\",\"content\":false,\"nonincludable\":false},\"828\":{\"id\":828,\"case\":\"first-letter\",\"name\":\"Module\",\"subpages\":true,\"canonical\":\"Module\",\"content\":false,\"nonincludable\":false},\"829\":{\"id\":829,\"case\":\"first-letter\",\"name\":\"Module talk\",\"subpages\":true,\"canonical\":\"Module talk\",\"content\":false,\"nonincludable\":false}}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d881c8e-732d-4e6c-8751-a660ef65d778","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.19900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dffbad7-3fd8-48f6-86ec-067dd1d76791","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.32100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":324084,"end_time":324140,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"481827","content-type":"multipart/form-data; boundary=7944559f-91a4-4d67-ba85-7db57ef8425f","host":"10.0.2.2:8080","msr-req-id":"39e49e6b-ae6d-4f19-9d9e-dd6d0d083e41","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"90e438f0-c93b-4782-9375-89f06db70057","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":327043,"end_time":327404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"743","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d8494d-f4c5-405f-b999-4cbc026f72c4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92e56766-2b0f-4e5d-b514-cc09b7ca5afb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.27900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2.svg/80px-Wiktionary-logo-en-v2.svg.png","method":"get","status_code":200,"start_time":328052,"end_time":328098,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"68799","content-disposition":"inline;filename*=UTF-8''Wiktionary-logo-en-v2.svg.webp","content-length":"3238","content-type":"image/webp","date":"Sun, 19 May 2024 13:54:56 GMT","etag":"c57fb1ee1c3027a62a4112ca10924e9f","last-modified":"Sun, 31 Mar 2024 19:30:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/13195","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92f988ed-f9ac-4c6c-99cb-bcb9a4819264","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.82600000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=t\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":null,"start_time":324343,"end_time":324645,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"95750852-f7dc-45f9-8011-1a06c8b42344","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22030,"java_free_heap":1922,"total_pss":91968,"rss":188260,"native_total_heap":55296,"native_free_heap":12770,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9776297b-4159-4f53-864b-e29bc6d2d2aa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.28100000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":200,"start_time":328043,"end_time":328100,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36457","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"24904","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20429","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c5dece2-a9d3-4f57-88e0-1120fb9b2699","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:33.25800000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026converttitles=\u0026prop=description|pageimages|pageprops|coordinates|info\u0026ppprop=mainpage|disambiguation\u0026generator=search\u0026gsrnamespace=0\u0026gsrwhat=text\u0026inprop=varianttitles|displaytitle\u0026gsrinfo=\u0026gsrprop=redirecttitle\u0026piprop=thumbnail\u0026pilicense=any\u0026pithumbsize=320\u0026gsrsearch=trace\u0026gsrlimit=20\u0026gsroffset=0","method":"get","status_code":200,"start_time":325633,"end_time":326077,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:33 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-zmxwq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"54z4tdhlrtwqvvy3vbuoazu30"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gsroffset\":20,\"continue\":\"gsroffset||\"},\"query\":{\"pages\":[{\"pageid\":42021,\"ns\":0,\"title\":\"Trace radioisotope\",\"index\":9,\"description\":\"Radioisotope that occurs naturally in trace amounts\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T08:00:52Z\",\"lastrevid\":1185490351,\"length\":3871,\"displaytitle\":\"Trace radioisotope\",\"varianttitles\":{\"en\":\"Trace radioisotope\"}},{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":3,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":174247,\"ns\":0,\"title\":\"Traceability\",\"index\":7,\"description\":\"Capability to trace something\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-14T03:01:35Z\",\"lastrevid\":1209209122,\"length\":22185,\"displaytitle\":\"Traceability\",\"varianttitles\":{\"en\":\"Traceability\"}},{\"pageid\":192266,\"ns\":0,\"title\":\"Trace class\",\"index\":18,\"description\":\"Compact operator for which a finite trace can be defined\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:24Z\",\"lastrevid\":1222901758,\"length\":18356,\"displaytitle\":\"Trace class\",\"varianttitles\":{\"en\":\"Trace class\"}},{\"pageid\":235175,\"ns\":0,\"title\":\"Trace element\",\"index\":6,\"description\":\"Element of low concentration\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:09:41Z\",\"lastrevid\":1221455717,\"length\":4788,\"displaytitle\":\"Trace element\",\"varianttitles\":{\"en\":\"Trace element\"}},{\"pageid\":344127,\"ns\":0,\"title\":\"Signal trace\",\"index\":14,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-07T07:48:19Z\",\"lastrevid\":1176213464,\"length\":1462,\"displaytitle\":\"Signal trace\",\"varianttitles\":{\"en\":\"Signal trace\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":647241,\"ns\":0,\"title\":\"Without a Trace\",\"index\":12,\"description\":\"American crime drama series that aired on CBS from 2002 to 2009\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/6/61/Without_a_trace_logo.jpg/320px-Without_a_trace_logo.jpg\",\"width\":320,\"height\":205},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T01:04:00Z\",\"lastrevid\":1220776236,\"length\":36173,\"displaytitle\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\",\"varianttitles\":{\"en\":\"\u003ci\u003eWithout a Trace\u003c/i\u003e\"}},{\"pageid\":656411,\"ns\":0,\"title\":\"Stack trace\",\"index\":17,\"description\":\"Report of stack frames during program execution\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-16T11:14:33Z\",\"lastrevid\":1220214397,\"length\":9358,\"displaytitle\":\"Stack trace\",\"varianttitles\":{\"en\":\"Stack trace\"}},{\"pageid\":814148,\"ns\":0,\"title\":\"Partial trace\",\"index\":16,\"description\":\"Function over linear operators\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T19:42:11Z\",\"lastrevid\":1224497501,\"length\":11394,\"displaytitle\":\"Partial trace\",\"varianttitles\":{\"en\":\"Partial trace\"}},{\"pageid\":1411865,\"ns\":0,\"title\":\"TRACE\",\"index\":2,\"description\":\"NASA satellite of the Explorer program\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/TRACE_illustration_%28transparent_bg%29.png/320px-TRACE_illustration_%28transparent_bg%29.png\",\"width\":320,\"height\":358},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:27Z\",\"lastrevid\":1220777730,\"length\":10580,\"displaytitle\":\"TRACE\",\"varianttitles\":{\"en\":\"TRACE\"}},{\"pageid\":1473870,\"ns\":0,\"title\":\"Trace gas\",\"index\":20,\"description\":\"Gases apart from nitrogen, oxygen, and argon in Earth's atmosphere\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:47Z\",\"lastrevid\":1196165108,\"length\":12073,\"displaytitle\":\"Trace gas\",\"varianttitles\":{\"en\":\"Trace gas\"}},{\"pageid\":1775721,\"ns\":0,\"title\":\"Tracor\",\"index\":11,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:50Z\",\"lastrevid\":1187914941,\"length\":6816,\"displaytitle\":\"Tracor\",\"varianttitles\":{\"en\":\"Tracor\"}},{\"pageid\":5923016,\"ns\":0,\"title\":\"Traces\",\"index\":8,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1026786113,\"length\":1364,\"displaytitle\":\"Traces\",\"varianttitles\":{\"en\":\"Traces\"}},{\"pageid\":12977524,\"ns\":0,\"title\":\"Buffalo Trace\",\"index\":10,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-03T03:50:27Z\",\"lastrevid\":1155847083,\"length\":413,\"displaytitle\":\"Buffalo Trace\",\"varianttitles\":{\"en\":\"Buffalo Trace\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":4,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":23691192,\"ns\":0,\"title\":\"Trace Urban\",\"index\":15,\"description\":\"French music video television channel\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Traceurban2022.png\",\"width\":281,\"height\":234},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:02:19Z\",\"lastrevid\":1224430263,\"length\":5085,\"displaytitle\":\"Trace Urban\",\"varianttitles\":{\"en\":\"Trace Urban\"}},{\"pageid\":56336978,\"ns\":0,\"title\":\"Leave No Trace (film)\",\"index\":19,\"description\":\"2018 film directed by Debra Granik\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Leave_No_Trace.png\",\"width\":220,\"height\":326},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T22:30:52Z\",\"lastrevid\":1213940674,\"length\":31088,\"displaytitle\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\",\"varianttitles\":{\"en\":\"\u003ci\u003eLeave No Trace\u003c/i\u003e (film)\"}},{\"pageid\":67751245,\"ns\":0,\"title\":\"No Trace\",\"index\":13,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"pageprops\":{\"disambiguation\":\"\"},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-04T12:45:31Z\",\"lastrevid\":1024877270,\"length\":297,\"displaytitle\":\"No Trace\",\"varianttitles\":{\"en\":\"No Trace\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a29a4210-71bb-4aed-926b-594ee1ba676e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a70af2ab-180b-452c-aba4-9814130dc00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:36.27000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.ObservableWebView","target_id":"page_web_view","width":1080,"height":1731,"x":530.96924,"y":97.96875,"touch_down_time":329003,"touch_up_time":329087},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7ad62c3-7d8a-45db-bd7a-6d4f26154631","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.23300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":200,"start_time":327991,"end_time":328051,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"text/css,*/*;q=0.1","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"meta.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45471","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-length":"4852","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikimedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21393","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"af11ff8d-59b0-4d28-abc8-45fc301daa75","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3e1c8fb-90f4-4160-a501-8cd713bf716b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.90000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":322423,"end_time":322719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1054","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b480de16-bfef-460b-965d-9168e5fe8b5e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.24900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b5389e9a-778b-433d-b086-93cbec315aad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.66200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7325882-b0f1-4527-b9b0-8348c61efe78","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":324976,"utime":166,"cutime":0,"cstime":0,"stime":130,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c04c7c3a-ff6c-4535-808b-b8c58d13afad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"caf7e17c-d815-4ea1-b729-235e03758e19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.58900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Latin_letter_T.svg/320px-Latin_letter_T.svg.png","method":"get","status_code":200,"start_time":324364,"end_time":324408,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64493","content-disposition":"inline;filename*=UTF-8''Latin_letter_T.svg.png","content-length":"1644","content-type":"image/png","date":"Sun, 19 May 2024 15:06:38 GMT","etag":"9dfb888dcc1370907d55e742f7bff81a","last-modified":"Wed, 13 Mar 2024 09:14:51 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/37","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cc17d708-c713-4578-8cd6-d7f11dae7c02","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:32.80400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026redirects=\u0026converttitles=\u0026prop=description|pageimages|coordinates|info\u0026piprop=thumbnail\u0026pilicense=any\u0026generator=prefixsearch\u0026gpsnamespace=0\u0026inprop=varianttitles|displaytitle\u0026pithumbsize=320\u0026gpssearch=trace\u0026gpslimit=20\u0026gpsoffset=0","method":"get","status_code":200,"start_time":325282,"end_time":325623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"2","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:32 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-8k2pq","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"3mwp74bhpcfgsz3sjuvmbyv59"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"continue\":{\"gpsoffset\":20,\"continue\":\"gpsoffset||\"},\"query\":{\"pages\":[{\"pageid\":43270,\"ns\":0,\"title\":\"Trace (linear algebra)\",\"index\":4,\"description\":\"Sum of elements on the main diagonal\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:56Z\",\"lastrevid\":1214689955,\"length\":36596,\"displaytitle\":\"Trace (linear algebra)\",\"varianttitles\":{\"en\":\"Trace (linear algebra)\"}},{\"pageid\":53486,\"ns\":0,\"title\":\"Tracey Ullman\",\"index\":6,\"description\":\"British-American actress, comedian, singer, director, producer and writer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg\",\"width\":320,\"height\":421},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:45:59Z\",\"lastrevid\":1224560456,\"length\":57284,\"displaytitle\":\"Tracey Ullman\",\"varianttitles\":{\"en\":\"Tracey Ullman\"}},{\"pageid\":70289,\"ns\":0,\"title\":\"Trachea\",\"index\":3,\"description\":\"Cartilaginous tube that connects the pharynx and larynx to the lungs\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Illu_conducting_passages.svg/320px-Illu_conducting_passages.svg.png\",\"width\":320,\"height\":412},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:07:58Z\",\"lastrevid\":1221869674,\"length\":33683,\"displaytitle\":\"Trachea\",\"varianttitles\":{\"en\":\"Trachea\"}},{\"pageid\":155748,\"ns\":0,\"title\":\"Trace\",\"index\":1,\"description\":\"Topics referred to by the same term\",\"descriptionsource\":\"local\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-11T22:32:14Z\",\"lastrevid\":1162625126,\"length\":4493,\"displaytitle\":\"Trace\",\"varianttitles\":{\"en\":\"Trace\"}},{\"pageid\":163837,\"ns\":0,\"title\":\"Tracey Emin\",\"index\":10,\"description\":\"English artist\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Tracey_Emin_1-cropped.jpg/320px-Tracey_Emin_1-cropped.jpg\",\"width\":320,\"height\":430},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1221169591,\"length\":137792,\"displaytitle\":\"Tracey Emin\",\"varianttitles\":{\"en\":\"Tracey Emin\"}},{\"pageid\":169833,\"ns\":0,\"title\":\"Tracy Chapman\",\"index\":8,\"description\":\"American singer-songwriter (born 1964)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:42Z\",\"lastrevid\":1224488953,\"length\":42978,\"displaytitle\":\"Tracy Chapman\",\"varianttitles\":{\"en\":\"Tracy Chapman\"}},{\"pageid\":179179,\"ns\":0,\"title\":\"Traci Lords\",\"index\":2,\"description\":\"American actress (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg/320px-Traci_Lords_and_Laura_Byrnes_Pinup_Girl_Clothing_02_%28cropped%29.jpg\",\"width\":320,\"height\":468},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:46:44Z\",\"lastrevid\":1223595908,\"length\":59968,\"displaytitle\":\"Traci Lords\",\"varianttitles\":{\"en\":\"Traci Lords\"}},{\"pageid\":305989,\"ns\":0,\"title\":\"Tracy Austin\",\"index\":13,\"description\":\"American tennis player\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Austin_2009_US_Open_02.jpg/320px-Austin_2009_US_Open_02.jpg\",\"width\":320,\"height\":213},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-18T11:58:51Z\",\"lastrevid\":1221029612,\"length\":37982,\"displaytitle\":\"Tracy Austin\",\"varianttitles\":{\"en\":\"Tracy Austin\"}},{\"pageid\":367492,\"ns\":0,\"title\":\"Trace fossil\",\"index\":17,\"description\":\"Geological record of biological activity\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Cheirotherium_prints_possibly_Ticinosuchus.JPG/320px-Cheirotherium_prints_possibly_Ticinosuchus.JPG\",\"width\":320,\"height\":509},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:10:29Z\",\"lastrevid\":1222107766,\"length\":47210,\"displaytitle\":\"Trace fossil\",\"varianttitles\":{\"en\":\"Trace fossil\"}},{\"pageid\":481757,\"ns\":0,\"title\":\"Tracy Lawrence\",\"index\":11,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/CountrySingerTracyLawrence.jpg/320px-CountrySingerTracyLawrence.jpg\",\"width\":320,\"height\":311},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1213761574,\"length\":62239,\"displaytitle\":\"Tracy Lawrence\",\"varianttitles\":{\"en\":\"Tracy Lawrence\"}},{\"pageid\":487964,\"ns\":0,\"title\":\"Trace Adkins\",\"index\":5,\"description\":\"American country singer\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg\",\"width\":320,\"height\":336},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:48:00Z\",\"lastrevid\":1214751898,\"length\":42724,\"displaytitle\":\"Trace Adkins\",\"varianttitles\":{\"en\":\"Trace Adkins\"}},{\"pageid\":1014986,\"ns\":0,\"title\":\"Tracee Ellis Ross\",\"index\":7,\"description\":\"American actress\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg\",\"width\":320,\"height\":356},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T16:49:07Z\",\"lastrevid\":1223633352,\"length\":54995,\"displaytitle\":\"Tracee Ellis Ross\",\"varianttitles\":{\"en\":\"Tracee Ellis Ross\"}},{\"pageid\":1335475,\"ns\":0,\"title\":\"Tracy Morgan\",\"index\":9,\"description\":\"American actor and comedian (born 1968)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Tracy_Morgan_3_Shankbone_2009_NYC.jpg/320px-Tracy_Morgan_3_Shankbone_2009_NYC.jpg\",\"width\":320,\"height\":382},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:15:14Z\",\"lastrevid\":1224054489,\"length\":45517,\"displaytitle\":\"Tracy Morgan\",\"varianttitles\":{\"en\":\"Tracy Morgan\"}},{\"pageid\":1619336,\"ns\":0,\"title\":\"Tracy-Ann Oberman\",\"index\":12,\"description\":\"English actress, playwright, writer and narrator (born 1966)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Tracy_Ann_Oberman_in_2015.jpg/320px-Tracy_Ann_Oberman_in_2015.jpg\",\"width\":320,\"height\":375},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T03:02:14Z\",\"lastrevid\":1224279525,\"length\":60059,\"displaytitle\":\"Tracy-Ann Oberman\",\"varianttitles\":{\"en\":\"Tracy-Ann Oberman\"}},{\"pageid\":1690983,\"ns\":0,\"title\":\"Tracy Smothers\",\"index\":15,\"description\":\"American professional wrestler (1962–2020)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/Tracy_Smothers.jpg/320px-Tracy_Smothers.jpg\",\"width\":320,\"height\":310},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:35Z\",\"lastrevid\":1223488378,\"length\":49799,\"displaytitle\":\"Tracy Smothers\",\"varianttitles\":{\"en\":\"Tracy Smothers\"}},{\"pageid\":1745354,\"ns\":0,\"title\":\"Tracy Byrd\",\"index\":19,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg/320px-Tracy_Byrd_at_the_Republic_Country_Club%2C_3-22-19_MG_5817_%2833617141408%29_%28cropped%29.jpg\",\"width\":320,\"height\":426},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:16:44Z\",\"lastrevid\":1219259285,\"length\":16462,\"displaytitle\":\"Tracy Byrd\",\"varianttitles\":{\"en\":\"Tracy Byrd\"}},{\"pageid\":2279675,\"ns\":0,\"title\":\"Tracy Barlow\",\"index\":16,\"description\":\"Fictional character from Coronation Street\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/bb/Tracy_Barlow.jpg\",\"width\":305,\"height\":344},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T04:25:27Z\",\"lastrevid\":1222988164,\"length\":74550,\"displaytitle\":\"Tracy Barlow\",\"varianttitles\":{\"en\":\"Tracy Barlow\"}},{\"pageid\":17394446,\"ns\":0,\"title\":\"Trace Cyrus\",\"index\":20,\"description\":\"American musician\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Trace_Cyrus_Metro_Station_2.jpg/320px-Trace_Cyrus_Metro_Station_2.jpg\",\"width\":320,\"height\":368},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:47:44Z\",\"lastrevid\":1219500510,\"length\":16407,\"displaytitle\":\"Trace Cyrus\",\"varianttitles\":{\"en\":\"Trace Cyrus\"}},{\"pageid\":37853173,\"ns\":0,\"title\":\"Trace inequality\",\"index\":18,\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-01T17:05:53Z\",\"lastrevid\":1219322257,\"length\":26247,\"displaytitle\":\"Trace inequality\",\"varianttitles\":{\"en\":\"Trace inequality\"}},{\"pageid\":51910669,\"ns\":0,\"title\":\"Trace McSorley\",\"index\":14,\"description\":\"American football player (born 1995)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg/320px-Trace_McSorley_Football_Camp_%284%29_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T02:09:27Z\",\"lastrevid\":1222646584,\"length\":44764,\"displaytitle\":\"Trace McSorley\",\"varianttitles\":{\"en\":\"Trace McSorley\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce071feb-2cee-406b-896b-1e8ea05be564","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:34.95100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","method":"get","status_code":200,"start_time":327397,"end_time":327770,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"468","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Trace","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:01:35 GMT","etag":"W/\"1162625126/51c9a940-0fe6-11ef-9bdc-5a9dfe411725\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"disambiguation\",\"title\":\"Trace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q296103\",\"titles\":{\"canonical\":\"Trace\",\"normalized\":\"Trace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTrace\u003c/span\u003e\"},\"pageid\":155748,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1162625126\",\"tid\":\"d5940d5b-1717-11ee-845e-0f9a2664809f\",\"timestamp\":\"2023-06-30T07:29:23Z\",\"description\":\"Topics referred to by the same term\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.wikipedia.org/wiki/Trace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Trace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Trace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Trace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Trace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Trace\"}},\"extract\":\"Trace may refer to:\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTrace\u003c/b\u003e may refer to:\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce2d88f0-b357-42e8-8825-41151f2d3de1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":327976,"utime":233,"cutime":0,"cstime":0,"stime":174,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d0ed5ef1-c199-4946-8bc4-7d19540a0524","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.08400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d2aa49fc-afd7-4e5c-b328-54cb588a0838","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:31.59400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/320px-Flag_of_Turkey.svg.png","method":"get","status_code":200,"start_time":324370,"end_time":324413,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"35084","content-disposition":"inline;filename*=UTF-8''Flag_of_Turkey.svg.png","content-length":"2498","content-type":"image/png","date":"Sun, 19 May 2024 23:16:47 GMT","etag":"0fa0bc210e5d2db4c8a5507ef34598e1","last-modified":"Mon, 29 Apr 2024 21:34:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/30","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ddc23c43-2cc2-44ea-a9fd-25dd0a38d38e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0c6441d-0499-4418-b6a7-5bab969e7c0c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.textview.MaterialTextView","target_id":"page_toolbar_button_search","width":670,"height":95,"x":483.96973,"y":144.96094,"touch_down_time":329748,"touch_up_time":329844},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ebb4446c-0a69-4532-8bd3-470ed6420d62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:37.04100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f567c552-15e0-4bcf-a47e-c01a1e9c3714","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:35.32400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/5/5f/Disambig_gray.svg/60px-Disambig_gray.svg.png","method":"get","status_code":200,"start_time":328100,"end_time":328143,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Trace","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50716","content-disposition":"inline;filename*=UTF-8''Disambig_gray.svg.webp","content-length":"820","content-type":"image/webp","date":"Sun, 19 May 2024 18:56:18 GMT","etag":"e0e1b8db1a81204cebe4a1df26743a23","last-modified":"Thu, 06 May 2021 00:00:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/3745","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json index 1de44d6f9..a39c6974f 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/71328a17-de01-40c7-b02f-16651a939d92.json @@ -1 +1 @@ -[{"id":"03744f06-c024-432d-bb35-9f5585d65a94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.88400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":200,"start_time":403078,"end_time":403703,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-length":"74696","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/octet-stream","date":"Mon, 20 May 2024 09:02:50 GMT","etag":"W/\"123c8-18d7e9bad57\"","last-modified":"Tue, 06 Feb 2024 13:29:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0424c2b7-989a-4070-9daa-c787599da0fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.32400000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_places_container","width":1080,"height":126,"x":341.98242,"y":1459.9219,"touch_down_time":401000,"touch_up_time":401139},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"048acbdd-5cd9-4237-82d6-d5489250b2f3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"05eeef2c-06a7-4973-960e-d3f608d5fb4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0eff9259-2807-4579-97d6-a6cf4f260860","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be803ae-d96f-4bd7-8d6a-09c569d2aa31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"4045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2245e3af-e068-4134-8353-0cf02703ceb4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36a77f2d-2ae6-44b2-9dd6-f5d14c78e403","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.58400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":403491,"end_time":404403,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"959f-189fdc7a673\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"959f-189fdc70511\"","last-modified":"Wed, 16 Aug 2023 09:57:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"39e7a1fe-e78a-490d-b520-2f1d2cf9c7ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c6e4ca6-7470-4903-9934-ad35e332f49e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":985.968,"y":1705.8984,"touch_down_time":400060,"touch_up_time":400129},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4006267f-c890-4acf-94b3-4f26c6c37231","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.69300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":304,"start_time":403098,"end_time":403512,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/wikisprites%402x.png","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"31dcc-189fdc65691\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"31dcc-189fdc65691\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441010e5-8f84-43ad-956e-8246c91cedea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.27700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":200,"start_time":401342,"end_time":402096,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-length":"204236","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"image/png","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"31dcc-189fdc65691\"","last-modified":"Wed, 16 Aug 2023 09:56:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f166efa-9428-4f99-93ee-e1fd1a3dd81e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":364,"total_pss":122763,"rss":192132,"native_total_heap":87552,"native_free_heap":20076,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f84aeb6-3658-4d95-aa6e-5b047f9c832c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"50ffd9ea-f268-441e-8633-0bfda207d959","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20879,"java_free_heap":3203,"total_pss":164312,"rss":234732,"native_total_heap":109056,"native_free_heap":13494,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"63c891b0-c074-49cd-911f-655acdb685f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66a7c259-5daf-41d9-b763-ca7ff1a1702d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":5643,"total_pss":116220,"rss":185572,"native_total_heap":87552,"native_free_heap":22866,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"676954f3-30e7-44e2-b4dd-de37fddb22af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"67e9bb3c-e179-4e54-ad4f-f5b85f465884","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c62ffe2-f999-43fa-910b-6558515b3818","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.06700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"listViewButton","width":144,"height":116,"x":644.97437,"y":276.97266,"touch_down_time":403827,"touch_up_time":403884},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"711b6044-bba0-4403-a55f-8298c631df97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.81200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401368,"end_time":401631,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71740570-1a16-4da5-b887-1954c323e22e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a4c972-8101-4e77-910f-a73ca922dac4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.83500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401369,"end_time":401654,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"375","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76b432ab-fc9a-481f-9e76-828440a13216","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78d7fe7c-f1f9-4306-b591-4f9725e01c12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.22200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"action_mode_close_button","width":147,"height":126,"x":66.97266,"y":134.9414,"touch_down_time":398930,"touch_up_time":399039},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7a819c3b-6c6b-4f09-b9e0-d06d3cb5f108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.96500000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/0/0/0.pbf","method":"get","status_code":200,"start_time":401734,"end_time":401784,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"66777","content-encoding":"gzip","content-length":"149462","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Sun, 19 May 2024 14:29:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/22","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7d32d789-7272-45ee-b8cc-4807fe677ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":404347,"utime":969,"cutime":0,"cstime":0,"stime":895,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ea0bc1c-3505-47e3-8c88-e5c41c2ac5fd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.45000000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403269,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27228","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"825a62b0-aa94-41d2-9f16-e2771167b831","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.32100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b4312a5-6d2e-493d-8ce9-ed36ca153100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.88200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/info.json","method":"get","status_code":200,"start_time":401339,"end_time":401701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"5215","content-length":"526","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 07:35:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/4","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tilejson\":\"2.1.0\",\"name\":\"osm-pbf\",\"maxzoom\":15,\"vector_layers\":[{\"id\":\"landuse\"},{\"id\":\"waterway\"},{\"id\":\"water\"},{\"id\":\"aeroway\"},{\"id\":\"building\"},{\"id\":\"road\"},{\"id\":\"admin\"},{\"id\":\"country_label\"},{\"id\":\"place_label\"},{\"id\":\"poi_label\"},{\"id\":\"road_label\"}],\"attribution\":\"\u003ca href=\\\"https://wikimediafoundation.org/wiki/Maps_Terms_of_Use\\\"\u003eWikimedia maps\u003c/a\u003e | Map data \u0026copy; \u003ca href=\\\"http://openstreetmap.org/copyright\\\"\u003eOpenStreetMap contributors\u003c/a\u003e\",\"tiles\":[\"https://maps.wikimedia.org/osm-pbf/{z}/{x}/{y}.pbf\"]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cdc63de-7496-4c72-b6d6-e00c667de7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d8865-3b2e-4edf-9621-ee33f90cfd9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":2995,"total_pss":134823,"rss":204924,"native_total_heap":93696,"native_free_heap":16449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dc7d410-4e57-433b-a3ff-c6836c166432","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f75c484-fb6f-4b4b-a8db-326a575d836f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":401347,"utime":910,"cutime":0,"cstime":0,"stime":840,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"955a66ee-1e27-4250-b399-182924dd78ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98a2e9de-abd2-4024-947b-3229683fcccd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86000000Z","type":"gesture_click","gesture_click":{"target":"androidx.constraintlayout.widget.ConstraintLayout","target_id":null,"width":1080,"height":260,"x":592.9651,"y":863.96484,"touch_down_time":404510,"touch_up_time":404678},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c7dd32d-a3bc-468e-9f67-064ce8f0b578","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/160px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53270","content-length":"4886","content-type":"image/jpeg","date":"Sun, 19 May 2024 18:15:00 GMT","etag":"19bfeb9e31a1f301321b2c6461525007","last-modified":"Sat, 27 Feb 2016 04:11:56 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"egokliw6l2724ob9giuu9jd9qycxq4s"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a1b63f0e-a961-4287-9a1e-197e98ed3faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7d18e82-7916-46b6-81c6-524a686b5d52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:45.52900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":398348,"utime":893,"cutime":0,"cstime":0,"stime":813,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1192878-05bc-4e87-9988-39a9862885db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.89200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/11/329/794.pbf","method":"get","status_code":200,"start_time":402761,"end_time":403711,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"160877","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b67c4ad1-f93c-4d83-9976-bfbafaada55d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.24700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403066,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"13916","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8af255b-8904-4721-bb8f-162fd055b3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.46300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403282,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27925","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c09aaf45-ac5e-4b26-84a0-60ccc0129cf8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d4080193-86c3-4a41-a663-17eb749117a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.66900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":401342,"end_time":402487,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"959f-189fdc7a673\"","last-modified":"Wed, 16 Aug 2023 09:57:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8d8c89e-438b-4e0f-ac08-e6c86458fcdb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.78600000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403605,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","content-encoding":"gzip","content-length":"11194","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db1e7456-d1f4-4cfe-9d2d-80580ba286f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.33900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e396ed70-f06b-4a2a-845d-321c7c5b95dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/160px-Google_Campus%2C_Mountain_View%2C_CA.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33218","content-disposition":"inline;filename*=UTF-8''Google_Campus%2C_Mountain_View%2C_CA.jpg","content-length":"9706","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:49:11 GMT","etag":"887b247ad8c775d54c5d2b56defad17e","last-modified":"Fri, 14 Jan 2022 08:01:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/51","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7c9f8d7-aacd-4591-8888-53bc4cb95237","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.76100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.view.menu.ActionMenuItemView","target_id":"menu_search_lists","width":127,"height":126,"x":900.9668,"y":158.96484,"touch_down_time":397481,"touch_up_time":397577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eef5bfd9-3059-4092-a7f1-d48080d786e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f29e08c8-af3b-4239-9f60-85d29bfcd15d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.34400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026generator=geosearch\u0026prop=coordinates|description|pageimages|info\u0026inprop=varianttitles|displaytitle\u0026ggscoord=37.42199833333335|-122.08400000000002\u0026ggsradius=692\u0026ggslimit=75\u0026colimit=75","method":"get","status_code":200,"start_time":402757,"end_time":403162,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-brxf8","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"66nawcqf1btuypocho5jeyb5s"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"pages\":[{\"pageid\":773423,\"ns\":0,\"title\":\"Googleplex\",\"index\":-1,\"coordinates\":[{\"lat\":37.422,\"lon\":-122.084,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Corporate headquarters complex of Google\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/50px-Google_Campus%2C_Mountain_View%2C_CA.jpg\",\"width\":50,\"height\":28},\"pageimage\":\"Google_Campus,_Mountain_View,_CA.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:03:09Z\",\"lastrevid\":1223120704,\"length\":23050,\"displaytitle\":\"Googleplex\",\"varianttitles\":{\"en\":\"Googleplex\"}},{\"pageid\":2169786,\"ns\":0,\"title\":\"Bridge School Benefit\",\"index\":0,\"coordinates\":[{\"lat\":37.42666667,\"lon\":-122.08083333,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Charity concerts in California\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:18:58Z\",\"lastrevid\":1211634642,\"length\":16228,\"displaytitle\":\"Bridge School Benefit\",\"varianttitles\":{\"en\":\"Bridge School Benefit\"}},{\"pageid\":2550861,\"ns\":0,\"title\":\"Shoreline Amphitheatre\",\"index\":1,\"coordinates\":[{\"lat\":37.426778,\"lon\":-122.080733,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Concert venue in Mountain View, California, United States\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T19:28:11Z\",\"lastrevid\":1217346602,\"length\":6461,\"displaytitle\":\"Shoreline Amphitheatre\",\"varianttitles\":{\"en\":\"Shoreline Amphitheatre\"}},{\"pageid\":3603126,\"ns\":0,\"title\":\"Genetic Information Research Institute\",\"index\":2,\"coordinates\":[{\"lat\":37.4193,\"lon\":-122.088,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:24:21Z\",\"lastrevid\":1062612358,\"length\":2659,\"displaytitle\":\"Genetic Information Research Institute\",\"varianttitles\":{\"en\":\"Genetic Information Research Institute\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"03744f06-c024-432d-bb35-9f5585d65a94","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.88400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/font/Open%20Sans%20Regular/0-255.pbf","method":"get","status_code":200,"start_time":403078,"end_time":403703,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-length":"74696","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/octet-stream","date":"Mon, 20 May 2024 09:02:50 GMT","etag":"W/\"123c8-18d7e9bad57\"","last-modified":"Tue, 06 Feb 2024 13:29:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0424c2b7-989a-4070-9daa-c787599da0fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.32400000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_places_container","width":1080,"height":126,"x":341.98242,"y":1459.9219,"touch_down_time":401000,"touch_up_time":401139},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"048acbdd-5cd9-4237-82d6-d5489250b2f3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"381","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"05eeef2c-06a7-4973-960e-d3f608d5fb4f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0eff9259-2807-4579-97d6-a6cf4f260860","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1be803ae-d96f-4bd7-8d6a-09c569d2aa31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.63600000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401162,"end_time":401454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"4045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2245e3af-e068-4134-8353-0cf02703ceb4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.07900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"36a77f2d-2ae6-44b2-9dd6-f5d14c78e403","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.58400000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":403491,"end_time":404403,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"959f-189fdc7a673\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"959f-189fdc70511\"","last-modified":"Wed, 16 Aug 2023 09:57:05 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"39e7a1fe-e78a-490d-b520-2f1d2cf9c7ea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.46200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3c6e4ca6-7470-4903-9934-ad35e332f49e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":985.968,"y":1705.8984,"touch_down_time":400060,"touch_up_time":400129},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4006267f-c890-4acf-94b3-4f26c6c37231","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.69300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":304,"start_time":403098,"end_time":403512,"failure_reason":"org.wikipedia.dataclient.okhttp.HttpStatusException","failure_description":"Code: 304, URL: https://maps.wikimedia.org/static/webgl/wikisprites%402x.png","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","if-none-match":"W/\"31dcc-189fdc65691\"","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"age":"0","cache-control":"public, max-age=0","date":"Mon, 20 May 2024 09:02:51 GMT","etag":"W/\"31dcc-189fdc65691\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 hit, cp5031 pass","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441010e5-8f84-43ad-956e-8246c91cedea","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.27700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.png","method":"get","status_code":200,"start_time":401342,"end_time":402096,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"public, max-age=0","content-length":"204236","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"image/png","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"31dcc-189fdc65691\"","last-modified":"Wed, 16 Aug 2023 09:56:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f166efa-9428-4f99-93ee-e1fd1a3dd81e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":18356,"java_free_heap":364,"total_pss":122763,"rss":192132,"native_total_heap":87552,"native_free_heap":20076,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4f84aeb6-3658-4d95-aa6e-5b047f9c832c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"50ffd9ea-f268-441e-8633-0bfda207d959","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20879,"java_free_heap":3203,"total_pss":164312,"rss":234732,"native_total_heap":109056,"native_free_heap":13494,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"63c891b0-c074-49cd-911f-655acdb685f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"66a7c259-5daf-41d9-b763-ca7ff1a1702d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.53000000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":5643,"total_pss":116220,"rss":185572,"native_total_heap":87552,"native_free_heap":22866,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"676954f3-30e7-44e2-b4dd-de37fddb22af","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"67e9bb3c-e179-4e54-ad4f-f5b85f465884","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6c62ffe2-f999-43fa-910b-6558515b3818","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.06700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"listViewButton","width":144,"height":116,"x":644.97437,"y":276.97266,"touch_down_time":403827,"touch_up_time":403884},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"711b6044-bba0-4403-a55f-8298c631df97","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.81200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401368,"end_time":401631,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71740570-1a16-4da5-b887-1954c323e22e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"75a4c972-8101-4e77-910f-a73ca922dac4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.83500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":401369,"end_time":401654,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"375","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"76b432ab-fc9a-481f-9e76-828440a13216","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.36400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"78d7fe7c-f1f9-4306-b591-4f9725e01c12","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:46.22200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"action_mode_close_button","width":147,"height":126,"x":66.97266,"y":134.9414,"touch_down_time":398930,"touch_up_time":399039},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7a819c3b-6c6b-4f09-b9e0-d06d3cb5f108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.96500000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/0/0/0.pbf","method":"get","status_code":200,"start_time":401734,"end_time":401784,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"66777","content-encoding":"gzip","content-length":"149462","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Sun, 19 May 2024 14:29:52 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/22","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7d32d789-7272-45ee-b8cc-4807fe677ab2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.52800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":404347,"utime":969,"cutime":0,"cstime":0,"stime":895,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ea0bc1c-3505-47e3-8c88-e5c41c2ac5fd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.45000000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403269,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27228","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"825a62b0-aa94-41d2-9f16-e2771167b831","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.32100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8b4312a5-6d2e-493d-8ce9-ed36ca153100","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.88200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/info.json","method":"get","status_code":200,"start_time":401339,"end_time":401701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"5215","content-length":"526","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 07:35:55 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 hit/4","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tilejson\":\"2.1.0\",\"name\":\"osm-pbf\",\"maxzoom\":15,\"vector_layers\":[{\"id\":\"landuse\"},{\"id\":\"waterway\"},{\"id\":\"water\"},{\"id\":\"aeroway\"},{\"id\":\"building\"},{\"id\":\"road\"},{\"id\":\"admin\"},{\"id\":\"country_label\"},{\"id\":\"place_label\"},{\"id\":\"poi_label\"},{\"id\":\"road_label\"}],\"attribution\":\"\u003ca href=\\\"https://wikimediafoundation.org/wiki/Maps_Terms_of_Use\\\"\u003eWikimedia maps\u003c/a\u003e | Map data \u0026copy; \u003ca href=\\\"http://openstreetmap.org/copyright\\\"\u003eOpenStreetMap contributors\u003c/a\u003e\",\"tiles\":[\"https://maps.wikimedia.org/osm-pbf/{z}/{x}/{y}.pbf\"]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8cdc63de-7496-4c72-b6d6-e00c667de7d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d2d8865-3b2e-4edf-9621-ee33f90cfd9a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":19446,"java_free_heap":2995,"total_pss":134823,"rss":204924,"native_total_heap":93696,"native_free_heap":16449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8dc7d410-4e57-433b-a3ff-c6836c166432","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.54000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f75c484-fb6f-4b4b-a8db-326a575d836f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.52800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":401347,"utime":910,"cutime":0,"cstime":0,"stime":840,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"955a66ee-1e27-4250-b399-182924dd78ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.places.PlacesFragment","parent_activity":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98a2e9de-abd2-4024-947b-3229683fcccd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:51.86000000Z","type":"gesture_click","gesture_click":{"target":"androidx.constraintlayout.widget.ConstraintLayout","target_id":null,"width":1080,"height":260,"x":592.9651,"y":863.96484,"touch_down_time":404510,"touch_up_time":404678},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c7dd32d-a3bc-468e-9f67-064ce8f0b578","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/160px-Shoreline_Amphitheatre.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"53270","content-length":"4886","content-type":"image/jpeg","date":"Sun, 19 May 2024 18:15:00 GMT","etag":"19bfeb9e31a1f301321b2c6461525007","last-modified":"Sat, 27 Feb 2016 04:11:56 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"egokliw6l2724ob9giuu9jd9qycxq4s"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a1b63f0e-a961-4287-9a1e-197e98ed3faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.places.PlacesActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a7d18e82-7916-46b6-81c6-524a686b5d52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:45.52900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":398348,"utime":893,"cutime":0,"cstime":0,"stime":813,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b1192878-05bc-4e87-9988-39a9862885db","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.89200000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/11/329/794.pbf","method":"get","status_code":200,"start_time":402761,"end_time":403711,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"160877","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b67c4ad1-f93c-4d83-9976-bfbafaada55d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.24700000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403066,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"13916","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8af255b-8904-4721-bb8f-162fd055b3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.46300000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5271/12706.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403282,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-encoding":"gzip","content-length":"27925","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c09aaf45-ac5e-4b26-84a0-60ccc0129cf8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:47.31300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d4080193-86c3-4a41-a663-17eb749117a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:49.66900000Z","type":"http","http":{"url":"https://maps.wikimedia.org/static/webgl/wikisprites@2x.json","method":"get","status_code":200,"start_time":401342,"end_time":402487,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"public, max-age=0","content-encoding":"gzip","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/json; charset=UTF-8","date":"Mon, 20 May 2024 09:02:49 GMT","etag":"W/\"959f-189fdc7a673\"","last-modified":"Wed, 16 Aug 2023 09:57:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\n\t\"aerialway-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 650,\n\t\t\"y\": 948\n\t},\n\t\"aerialway-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 194,\n\t\t\"y\": 618\n\t},\n\t\"aerialway-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 80,\n\t\t\"y\": 124\n\t},\n\t\"airfield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 674,\n\t\t\"y\": 948\n\t},\n\t\"airfield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 230,\n\t\t\"y\": 618\n\t},\n\t\"airfield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 186\n\t},\n\t\"airport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 698,\n\t\t\"y\": 948\n\t},\n\t\"airport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 266,\n\t\t\"y\": 618\n\t},\n\t\"airport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 186\n\t},\n\t\"alcohol-shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 722,\n\t\t\"y\": 948\n\t},\n\t\"alcohol-shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 302,\n\t\t\"y\": 618\n\t},\n\t\"alcohol-shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 186\n\t},\n\t\"america-football-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 746,\n\t\t\"y\": 948\n\t},\n\t\"america-football-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 338,\n\t\t\"y\": 618\n\t},\n\t\"america-football-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 186\n\t},\n\t\"art-gallery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 770,\n\t\t\"y\": 948\n\t},\n\t\"art-gallery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 374,\n\t\t\"y\": 618\n\t},\n\t\"art-gallery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 186\n\t},\n\t\"bakery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 794,\n\t\t\"y\": 948\n\t},\n\t\"bakery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 410,\n\t\t\"y\": 618\n\t},\n\t\"bakery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 136,\n\t\t\"y\": 0\n\t},\n\t\"bank-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 818,\n\t\t\"y\": 948\n\t},\n\t\"bank-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 446,\n\t\t\"y\": 618\n\t},\n\t\"bank-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 184,\n\t\t\"y\": 0\n\t},\n\t\"bar-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 842,\n\t\t\"y\": 948\n\t},\n\t\"bar-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 482,\n\t\t\"y\": 618\n\t},\n\t\"bar-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 126,\n\t\t\"y\": 62\n\t},\n\t\"baseball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 866,\n\t\t\"y\": 948\n\t},\n\t\"baseball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 660\n\t},\n\t\"baseball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 174,\n\t\t\"y\": 62\n\t},\n\t\"basketball-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 890,\n\t\t\"y\": 948\n\t},\n\t\"basketball-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 660\n\t},\n\t\"basketball-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 222,\n\t\t\"y\": 62\n\t},\n\t\"beer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 914,\n\t\t\"y\": 948\n\t},\n\t\"beer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 660\n\t},\n\t\"beer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 128,\n\t\t\"y\": 124\n\t},\n\t\"bicycle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 938,\n\t\t\"y\": 948\n\t},\n\t\"bicycle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 660\n\t},\n\t\"bicycle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 176,\n\t\t\"y\": 124\n\t},\n\t\"building-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 962,\n\t\t\"y\": 948\n\t},\n\t\"building-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 660\n\t},\n\t\"building-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 224,\n\t\t\"y\": 124\n\t},\n\t\"bus-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 986,\n\t\t\"y\": 948\n\t},\n\t\"bus-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 660\n\t},\n\t\"bus-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 234\n\t},\n\t\"cafe-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1010,\n\t\t\"y\": 948\n\t},\n\t\"cafe-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 660\n\t},\n\t\"cafe-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 234\n\t},\n\t\"camera-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1034,\n\t\t\"y\": 948\n\t},\n\t\"camera-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 660\n\t},\n\t\"camera-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 234\n\t},\n\t\"campsite-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1058,\n\t\t\"y\": 948\n\t},\n\t\"campsite-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 660\n\t},\n\t\"campsite-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 234\n\t},\n\t\"car-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 660\n\t},\n\t\"car-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 660\n\t},\n\t\"car-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 234\n\t},\n\t\"cemetery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 660\n\t},\n\t\"cemetery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 282\n\t},\n\t\"chemist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 660\n\t},\n\t\"chemist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 660\n\t},\n\t\"chemist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 282\n\t},\n\t\"cinema-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 660\n\t},\n\t\"cinema-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 660\n\t},\n\t\"cinema-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 282\n\t},\n\t\"circle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 660\n\t},\n\t\"circle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 660\n\t},\n\t\"circle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 282\n\t},\n\t\"circle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 660\n\t},\n\t\"circle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 282\n\t},\n\t\"city-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 660\n\t},\n\t\"city-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 696\n\t},\n\t\"city-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 330\n\t},\n\t\"clothing-store-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 660\n\t},\n\t\"clothing-store-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 696\n\t},\n\t\"clothing-store-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 330\n\t},\n\t\"college-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 660\n\t},\n\t\"college-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 696\n\t},\n\t\"college-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 330\n\t},\n\t\"commercial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 660\n\t},\n\t\"commercial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 696\n\t},\n\t\"commercial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 330\n\t},\n\t\"cricket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 660\n\t},\n\t\"cricket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 696\n\t},\n\t\"cricket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 330\n\t},\n\t\"cross-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 660\n\t},\n\t\"cross-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 696\n\t},\n\t\"cross-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 378\n\t},\n\t\"dam-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 660\n\t},\n\t\"dam-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 696\n\t},\n\t\"dam-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 378\n\t},\n\t\"danger-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 660\n\t},\n\t\"danger-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 696\n\t},\n\t\"danger-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 378\n\t},\n\t\"default-1\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 30,\n\t\t\"x\": 320,\n\t\t\"y\": 948\n\t},\n\t\"default-2\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 40,\n\t\t\"x\": 350,\n\t\t\"y\": 948\n\t},\n\t\"default-3\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 50,\n\t\t\"x\": 390,\n\t\t\"y\": 948\n\t},\n\t\"default-4\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 60,\n\t\t\"x\": 440,\n\t\t\"y\": 948\n\t},\n\t\"default-5\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 70,\n\t\t\"x\": 500,\n\t\t\"y\": 948\n\t},\n\t\"default-6\": {\n\t\t\"height\": 26,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 80,\n\t\t\"x\": 570,\n\t\t\"y\": 948\n\t},\n\t\"dentist-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 660\n\t},\n\t\"dentist-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 696\n\t},\n\t\"dentist-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 378\n\t},\n\t\"disability-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 660\n\t},\n\t\"disability-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 696\n\t},\n\t\"disability-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 378\n\t},\n\t\"dog-park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 660\n\t},\n\t\"dog-park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 696\n\t},\n\t\"dog-park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 426\n\t},\n\t\"dot\": {\n\t\t\"height\": 8,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 8,\n\t\t\"x\": 1068,\n\t\t\"y\": 660\n\t},\n\t\"embassy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 660\n\t},\n\t\"embassy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 696\n\t},\n\t\"embassy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 426\n\t},\n\t\"emergency-telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 660\n\t},\n\t\"emergency-telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 696\n\t},\n\t\"emergency-telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 426\n\t},\n\t\"entrance-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 660\n\t},\n\t\"entrance-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 696\n\t},\n\t\"entrance-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 426\n\t},\n\t\"farm-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 660\n\t},\n\t\"farm-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 696\n\t},\n\t\"farm-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 426\n\t},\n\t\"fast-food-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 660\n\t},\n\t\"fast-food-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 732\n\t},\n\t\"fast-food-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 186\n\t},\n\t\"ferry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 696\n\t},\n\t\"ferry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 732\n\t},\n\t\"ferry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 186\n\t},\n\t\"fire-station-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 696\n\t},\n\t\"fire-station-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 732\n\t},\n\t\"fire-station-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 186\n\t},\n\t\"fuel-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 696\n\t},\n\t\"fuel-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 732\n\t},\n\t\"fuel-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 186\n\t},\n\t\"garden-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 696\n\t},\n\t\"garden-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 732\n\t},\n\t\"garden-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 186\n\t},\n\t\"gift-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 696\n\t},\n\t\"gift-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 732\n\t},\n\t\"gift-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 186\n\t},\n\t\"golf-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 696\n\t},\n\t\"golf-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 732\n\t},\n\t\"golf-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 234\n\t},\n\t\"grocery-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 696\n\t},\n\t\"grocery-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 732\n\t},\n\t\"grocery-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 234\n\t},\n\t\"hairdresser-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 696\n\t},\n\t\"hairdresser-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 732\n\t},\n\t\"hairdresser-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 234\n\t},\n\t\"harbor-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 696\n\t},\n\t\"harbor-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 732\n\t},\n\t\"harbor-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 234\n\t},\n\t\"heart-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 696\n\t},\n\t\"heart-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 732\n\t},\n\t\"heart-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 234\n\t},\n\t\"heliport-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 696\n\t},\n\t\"heliport-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 732\n\t},\n\t\"heliport-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 234\n\t},\n\t\"hospital-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 696\n\t},\n\t\"hospital-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 732\n\t},\n\t\"hospital-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 282\n\t},\n\t\"ice-cream-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 696\n\t},\n\t\"ice-cream-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 732\n\t},\n\t\"ice-cream-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 282\n\t},\n\t\"industrial-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 696\n\t},\n\t\"industrial-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 732\n\t},\n\t\"industrial-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 282\n\t},\n\t\"land-use-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 696\n\t},\n\t\"land-use-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 768\n\t},\n\t\"land-use-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 282\n\t},\n\t\"laundry-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 696\n\t},\n\t\"laundry-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 768\n\t},\n\t\"laundry-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 282\n\t},\n\t\"library-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 696\n\t},\n\t\"library-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 768\n\t},\n\t\"library-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 282\n\t},\n\t\"lighthouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 696\n\t},\n\t\"lighthouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 768\n\t},\n\t\"lighthouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 330\n\t},\n\t\"lodging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 696\n\t},\n\t\"lodging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 768\n\t},\n\t\"lodging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 330\n\t},\n\t\"logging-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 696\n\t},\n\t\"logging-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 768\n\t},\n\t\"logging-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 330\n\t},\n\t\"london-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 696\n\t},\n\t\"london-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 768\n\t},\n\t\"london-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 330\n\t},\n\t\"maki-12-base\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 696\n\t},\n\t\"maki-18-base\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 768\n\t},\n\t\"maki-24-base\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 330\n\t},\n\t\"maki-icons\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 330\n\t},\n\t\"marker-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 732\n\t},\n\t\"marker-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 768\n\t},\n\t\"marker-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 378\n\t},\n\t\"marker-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 732\n\t},\n\t\"marker-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 768\n\t},\n\t\"marker-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 378\n\t},\n\t\"minefield-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 732\n\t},\n\t\"minefield-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 768\n\t},\n\t\"minefield-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 378\n\t},\n\t\"mobilephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 732\n\t},\n\t\"mobilephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 768\n\t},\n\t\"mobilephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 378\n\t},\n\t\"monument-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 732\n\t},\n\t\"monument-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 768\n\t},\n\t\"monument-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 378\n\t},\n\t\"museum-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 732\n\t},\n\t\"museum-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 768\n\t},\n\t\"museum-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 378\n\t},\n\t\"music-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 732\n\t},\n\t\"music-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 768\n\t},\n\t\"music-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 426\n\t},\n\t\"mx-federal-1\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 62\n\t},\n\t\"mx-federal-2\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 618\n\t},\n\t\"mx-federal-3\": {\n\t\t\"height\": 42,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-1\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 80,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-2\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 114,\n\t\t\"y\": 618\n\t},\n\t\"mx-state-3\": {\n\t\t\"height\": 39,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 148,\n\t\t\"y\": 618\n\t},\n\t\"oil-well-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 732\n\t},\n\t\"oil-well-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 804\n\t},\n\t\"oil-well-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 426\n\t},\n\t\"park-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 732\n\t},\n\t\"park-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 804\n\t},\n\t\"park-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 426\n\t},\n\t\"park2-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 732\n\t},\n\t\"park2-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 804\n\t},\n\t\"park2-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 426\n\t},\n\t\"parking-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 732\n\t},\n\t\"parking-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 804\n\t},\n\t\"parking-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 426\n\t},\n\t\"parking-garage-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 732\n\t},\n\t\"parking-garage-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 804\n\t},\n\t\"parking-garage-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 426\n\t},\n\t\"pharmacy-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 732\n\t},\n\t\"pharmacy-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 804\n\t},\n\t\"pharmacy-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 232,\n\t\t\"y\": 0\n\t},\n\t\"pitch-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 732\n\t},\n\t\"pitch-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 804\n\t},\n\t\"pitch-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 280,\n\t\t\"y\": 0\n\t},\n\t\"place-of-worship-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 732\n\t},\n\t\"place-of-worship-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 804\n\t},\n\t\"place-of-worship-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 328,\n\t\t\"y\": 0\n\t},\n\t\"playground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 732\n\t},\n\t\"playground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 804\n\t},\n\t\"playground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 376,\n\t\t\"y\": 0\n\t},\n\t\"police-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 732\n\t},\n\t\"police-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 804\n\t},\n\t\"police-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 424,\n\t\t\"y\": 0\n\t},\n\t\"polling-place-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 732\n\t},\n\t\"polling-place-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 804\n\t},\n\t\"polling-place-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 472,\n\t\t\"y\": 0\n\t},\n\t\"post-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 732\n\t},\n\t\"post-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 804\n\t},\n\t\"post-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 270,\n\t\t\"y\": 62\n\t},\n\t\"prison-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 732\n\t},\n\t\"prison-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 804\n\t},\n\t\"prison-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 318,\n\t\t\"y\": 62\n\t},\n\t\"rail-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 732\n\t},\n\t\"rail-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 804\n\t},\n\t\"rail-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 366,\n\t\t\"y\": 62\n\t},\n\t\"rail-above-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 732\n\t},\n\t\"rail-above-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 804\n\t},\n\t\"rail-above-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 414,\n\t\t\"y\": 62\n\t},\n\t\"rail-light-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 768\n\t},\n\t\"rail-light-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 840\n\t},\n\t\"rail-light-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 462,\n\t\t\"y\": 62\n\t},\n\t\"rail-metro-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 768\n\t},\n\t\"rail-metro-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 840\n\t},\n\t\"rail-metro-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 272,\n\t\t\"y\": 124\n\t},\n\t\"rail-underground-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 768\n\t},\n\t\"rail-underground-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 840\n\t},\n\t\"rail-underground-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 320,\n\t\t\"y\": 124\n\t},\n\t\"religious-christian-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 768\n\t},\n\t\"religious-christian-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 840\n\t},\n\t\"religious-christian-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 368,\n\t\t\"y\": 124\n\t},\n\t\"religious-jewish-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 768\n\t},\n\t\"religious-jewish-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 840\n\t},\n\t\"religious-jewish-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 416,\n\t\t\"y\": 124\n\t},\n\t\"religious-muslim-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 768\n\t},\n\t\"religious-muslim-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 840\n\t},\n\t\"religious-muslim-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 464,\n\t\t\"y\": 124\n\t},\n\t\"restaurant-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 768\n\t},\n\t\"restaurant-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 840\n\t},\n\t\"restaurant-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 474\n\t},\n\t\"roadblock-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 768\n\t},\n\t\"roadblock-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 840\n\t},\n\t\"roadblock-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 474\n\t},\n\t\"rocket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 768\n\t},\n\t\"rocket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 840\n\t},\n\t\"rocket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 474\n\t},\n\t\"school-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 768\n\t},\n\t\"school-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 840\n\t},\n\t\"school-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 474\n\t},\n\t\"scooter-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 768\n\t},\n\t\"scooter-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 840\n\t},\n\t\"scooter-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 474\n\t},\n\t\"shop-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 768\n\t},\n\t\"shop-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 840\n\t},\n\t\"shop-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 474\n\t},\n\t\"skiing-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 768\n\t},\n\t\"skiing-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 840\n\t},\n\t\"skiing-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 474\n\t},\n\t\"slaughterhouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 852,\n\t\t\"y\": 768\n\t},\n\t\"slaughterhouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 840\n\t},\n\t\"slaughterhouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 474\n\t},\n\t\"soccer-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 876,\n\t\t\"y\": 768\n\t},\n\t\"soccer-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 840\n\t},\n\t\"soccer-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 474\n\t},\n\t\"square-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 900,\n\t\t\"y\": 768\n\t},\n\t\"square-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 876\n\t},\n\t\"square-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 474\n\t},\n\t\"square-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 924,\n\t\t\"y\": 768\n\t},\n\t\"square-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 876\n\t},\n\t\"square-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 474\n\t},\n\t\"star-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 948,\n\t\t\"y\": 768\n\t},\n\t\"star-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 876\n\t},\n\t\"star-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 522\n\t},\n\t\"star-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 972,\n\t\t\"y\": 768\n\t},\n\t\"star-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 876\n\t},\n\t\"star-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 522\n\t},\n\t\"suitcase-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 996,\n\t\t\"y\": 768\n\t},\n\t\"suitcase-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 876\n\t},\n\t\"suitcase-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 522\n\t},\n\t\"swimming-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1020,\n\t\t\"y\": 768\n\t},\n\t\"swimming-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 180,\n\t\t\"y\": 876\n\t},\n\t\"swimming-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 522\n\t},\n\t\"telephone-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 1044,\n\t\t\"y\": 768\n\t},\n\t\"telephone-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 216,\n\t\t\"y\": 876\n\t},\n\t\"telephone-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 522\n\t},\n\t\"tennis-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 540,\n\t\t\"y\": 804\n\t},\n\t\"tennis-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 252,\n\t\t\"y\": 876\n\t},\n\t\"tennis-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 522\n\t},\n\t\"theatre-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 564,\n\t\t\"y\": 804\n\t},\n\t\"theatre-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 288,\n\t\t\"y\": 876\n\t},\n\t\"theatre-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 522\n\t},\n\t\"toilets-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 588,\n\t\t\"y\": 804\n\t},\n\t\"toilets-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 324,\n\t\t\"y\": 876\n\t},\n\t\"toilets-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 336,\n\t\t\"y\": 522\n\t},\n\t\"town-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 612,\n\t\t\"y\": 804\n\t},\n\t\"town-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 360,\n\t\t\"y\": 876\n\t},\n\t\"town-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 384,\n\t\t\"y\": 522\n\t},\n\t\"town-hall-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 636,\n\t\t\"y\": 804\n\t},\n\t\"town-hall-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 396,\n\t\t\"y\": 876\n\t},\n\t\"town-hall-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 432,\n\t\t\"y\": 522\n\t},\n\t\"triangle-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 660,\n\t\t\"y\": 804\n\t},\n\t\"triangle-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 432,\n\t\t\"y\": 876\n\t},\n\t\"triangle-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 480,\n\t\t\"y\": 522\n\t},\n\t\"triangle-stroked-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 684,\n\t\t\"y\": 804\n\t},\n\t\"triangle-stroked-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 468,\n\t\t\"y\": 876\n\t},\n\t\"triangle-stroked-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 0,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 180,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 214,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 248,\n\t\t\"y\": 912\n\t},\n\t\"us-highway-alternate-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 34,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-alternate-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 0,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-business-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 68,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 102,\n\t\t\"y\": 0\n\t},\n\t\"us-highway-business-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 46,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-duplex-3\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 438,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-4\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 472,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-duplex-5\": {\n\t\t\"height\": 43,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 506,\n\t\t\"y\": 570\n\t},\n\t\"us-highway-truck-1\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 92,\n\t\t\"y\": 62\n\t},\n\t\"us-highway-truck-2\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 0,\n\t\t\"y\": 124\n\t},\n\t\"us-highway-truck-3\": {\n\t\t\"height\": 62,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 46,\n\t\t\"x\": 34,\n\t\t\"y\": 124\n\t},\n\t\"us-interstate-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 290,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 324,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 358,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-1\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 400,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-2\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 434,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-business-3\": {\n\t\t\"height\": 34,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 42,\n\t\t\"x\": 468,\n\t\t\"y\": 912\n\t},\n\t\"us-interstate-duplex-3\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 336,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-4\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 370,\n\t\t\"y\": 570\n\t},\n\t\"us-interstate-duplex-5\": {\n\t\t\"height\": 46,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 404,\n\t\t\"y\": 570\n\t},\n\t\"us-state-1\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 34,\n\t\t\"x\": 510,\n\t\t\"y\": 912\n\t},\n\t\"us-state-2\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 44,\n\t\t\"x\": 0,\n\t\t\"y\": 948\n\t},\n\t\"us-state-3\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 54,\n\t\t\"x\": 44,\n\t\t\"y\": 948\n\t},\n\t\"us-state-4\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 64,\n\t\t\"x\": 98,\n\t\t\"y\": 948\n\t},\n\t\"us-state-5\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 74,\n\t\t\"x\": 162,\n\t\t\"y\": 948\n\t},\n\t\"us-state-6\": {\n\t\t\"height\": 28,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 84,\n\t\t\"x\": 236,\n\t\t\"y\": 948\n\t},\n\t\"village-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 708,\n\t\t\"y\": 804\n\t},\n\t\"village-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 504,\n\t\t\"y\": 876\n\t},\n\t\"village-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 48,\n\t\t\"y\": 570\n\t},\n\t\"warehouse-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 732,\n\t\t\"y\": 804\n\t},\n\t\"warehouse-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 0,\n\t\t\"y\": 912\n\t},\n\t\"warehouse-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 96,\n\t\t\"y\": 570\n\t},\n\t\"waste-basket-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 756,\n\t\t\"y\": 804\n\t},\n\t\"waste-basket-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 36,\n\t\t\"y\": 912\n\t},\n\t\"waste-basket-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 144,\n\t\t\"y\": 570\n\t},\n\t\"water-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 780,\n\t\t\"y\": 804\n\t},\n\t\"water-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 72,\n\t\t\"y\": 912\n\t},\n\t\"water-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 192,\n\t\t\"y\": 570\n\t},\n\t\"wave\": {\n\t\t\"height\": 16,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 32,\n\t\t\"x\": 852,\n\t\t\"y\": 804\n\t},\n\t\"wetland-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 804,\n\t\t\"y\": 804\n\t},\n\t\"wetland-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 108,\n\t\t\"y\": 912\n\t},\n\t\"wetland-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 240,\n\t\t\"y\": 570\n\t},\n\t\"zoo-12\": {\n\t\t\"height\": 24,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 24,\n\t\t\"x\": 828,\n\t\t\"y\": 804\n\t},\n\t\"zoo-18\": {\n\t\t\"height\": 36,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 36,\n\t\t\"x\": 144,\n\t\t\"y\": 912\n\t},\n\t\"zoo-24\": {\n\t\t\"height\": 48,\n\t\t\"pixelRatio\": 2,\n\t\t\"width\": 48,\n\t\t\"x\": 288,\n\t\t\"y\": 570\n\t}\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d8d8c89e-438b-4e0f-ac08-e6c86458fcdb","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.78600000Z","type":"http","http":{"url":"https://maps.wikimedia.org/osm-pbf/15/5272/12705.pbf","method":"get","status_code":200,"start_time":402762,"end_time":403605,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"maps.wikimedia.org","referer":"https://maps.wikimedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","content-encoding":"gzip","content-length":"11194","content-security-policy":"default-src 'self'; object-src 'none'; media-src 'none'; style-src 'self'; frame-ancestors 'self'","content-type":"application/vnd.mapbox-vector-tile","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://maps.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db1e7456-d1f4-4cfe-9d2d-80580ba286f4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.33900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e396ed70-f06b-4a2a-845d-321c7c5b95dc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.39700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/160px-Google_Campus%2C_Mountain_View%2C_CA.jpg","method":"get","status_code":200,"start_time":403168,"end_time":403216,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33218","content-disposition":"inline;filename*=UTF-8''Google_Campus%2C_Mountain_View%2C_CA.jpg","content-length":"9706","content-type":"image/jpeg","date":"Sun, 19 May 2024 23:49:11 GMT","etag":"887b247ad8c775d54c5d2b56defad17e","last-modified":"Fri, 14 Jan 2022 08:01:48 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/51","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7c9f8d7-aacd-4591-8888-53bc4cb95237","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:44.76100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.view.menu.ActionMenuItemView","target_id":"menu_search_lists","width":127,"height":126,"x":900.9668,"y":158.96484,"touch_down_time":397481,"touch_up_time":397577},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eef5bfd9-3059-4092-a7f1-d48080d786e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:48.34200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f29e08c8-af3b-4239-9f60-85d29bfcd15d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:50.34400000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026generator=geosearch\u0026prop=coordinates|description|pageimages|info\u0026inprop=varianttitles|displaytitle\u0026ggscoord=37.42199833333335|-122.08400000000002\u0026ggsradius=692\u0026ggslimit=75\u0026colimit=75","method":"get","status_code":200,"start_time":402757,"end_time":403162,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-brxf8","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY","x-search-id":"66nawcqf1btuypocho5jeyb5s"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"pages\":[{\"pageid\":773423,\"ns\":0,\"title\":\"Googleplex\",\"index\":-1,\"coordinates\":[{\"lat\":37.422,\"lon\":-122.084,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Corporate headquarters complex of Google\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Google_Campus%2C_Mountain_View%2C_CA.jpg/50px-Google_Campus%2C_Mountain_View%2C_CA.jpg\",\"width\":50,\"height\":28},\"pageimage\":\"Google_Campus,_Mountain_View,_CA.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:03:09Z\",\"lastrevid\":1223120704,\"length\":23050,\"displaytitle\":\"Googleplex\",\"varianttitles\":{\"en\":\"Googleplex\"}},{\"pageid\":2169786,\"ns\":0,\"title\":\"Bridge School Benefit\",\"index\":0,\"coordinates\":[{\"lat\":37.42666667,\"lon\":-122.08083333,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Charity concerts in California\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:18:58Z\",\"lastrevid\":1211634642,\"length\":16228,\"displaytitle\":\"Bridge School Benefit\",\"varianttitles\":{\"en\":\"Bridge School Benefit\"}},{\"pageid\":2550861,\"ns\":0,\"title\":\"Shoreline Amphitheatre\",\"index\":1,\"coordinates\":[{\"lat\":37.426778,\"lon\":-122.080733,\"primary\":true,\"globe\":\"earth\"}],\"description\":\"Concert venue in Mountain View, California, United States\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Shoreline_Amphitheatre.jpg/50px-Shoreline_Amphitheatre.jpg\",\"width\":50,\"height\":35},\"pageimage\":\"Shoreline_Amphitheatre.jpg\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-19T19:28:11Z\",\"lastrevid\":1217346602,\"length\":6461,\"displaytitle\":\"Shoreline Amphitheatre\",\"varianttitles\":{\"en\":\"Shoreline Amphitheatre\"}},{\"pageid\":3603126,\"ns\":0,\"title\":\"Genetic Information Research Institute\",\"index\":2,\"coordinates\":[{\"lat\":37.4193,\"lon\":-122.088,\"primary\":true,\"globe\":\"earth\"}],\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-17T21:24:21Z\",\"lastrevid\":1062612358,\"length\":2659,\"displaytitle\":\"Genetic Information Research Institute\",\"varianttitles\":{\"en\":\"Genetic Information Research Institute\"}}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json index 3454136c9..5e5e1b6a9 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bb57bd3e-dfbc-4cf5-b047-6b7f3e91804d.json @@ -1 +1 @@ -[{"id":"084be746-258a-4cc3-901d-65fcdc3704f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.62800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"view_announcement_action_negative","width":186,"height":126,"x":483.96973,"y":1269.9609,"touch_down_time":342372,"touch_up_time":342443},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"11c91321-dd60-47cb-9e63-5f28d8933493","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.68300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343451,"end_time":343502,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32500","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/837","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14b1adc3-21ca-4cc8-bc0f-cbe0d0d44c22","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3478,"total_pss":143117,"rss":220400,"native_total_heap":72704,"native_free_heap":7157,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"23d10fbd-021d-4004-b177-249f2fbfd752","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":339977,"utime":367,"cutime":0,"cstime":0,"stime":297,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"263c8a09-8359-4b79-80c3-2c9635397815","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.84400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343662,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"18515","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a152c5d-7e55-461d-aa30-492519829cd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"312f0bbb-147b-41bd-9473-b57d7956a075","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.68100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":200,"start_time":358238,"end_time":358500,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4694","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-length":"24379","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3dbdb963-9029-46b2-ba43-9defeb21f4ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.41500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":200,"start_time":358183,"end_time":358234,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9356","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"734","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e0a60f5-5d2c-4152-889a-d4f1e4395413","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:54.43600000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":289.97314,"y":1752.8906,"touch_down_time":346326,"touch_up_time":347251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ea82988-201e-40df-8ba6-6c11edb0ab50","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.44700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":338969,"end_time":339266,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"729","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4794147a-d4f2-4be4-b282-1c8b0abda56f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4814,"total_pss":140875,"rss":216788,"native_total_heap":72704,"native_free_heap":8888,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"47b4c8a8-8259-4272-9946-92f5888b6fb3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.65000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":421.97388,"y":1303.9453,"end_x":421.97388,"end_y":1137.9492,"direction":"up","touch_down_time":343340,"touch_up_time":343469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58a339d9-0c44-49ba-8ec8-5fc11106628a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.67600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":200,"start_time":358237,"end_time":358494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-length":"426","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a0ead45-ef62-41d8-990b-1693a568fa16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d19b739-3b38-49c8-93fe-56466b128a4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.90000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":358673,"end_time":358719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39505","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21523","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7218053b-194e-4724-95c5-782ed4939d19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.17100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":341538,"end_time":341990,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"14142","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"773","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Research_vessel","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 05:06:07 GMT","etag":"W/\"1189178093/cbf09930-14ba-11ef-81f5-220829a64a4e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Research vessel\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q391022\",\"titles\":{\"canonical\":\"Research_vessel\",\"normalized\":\"Research vessel\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\"},\"pageid\":1540172,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Deployment_of_oceanographic_research_vessels.png/320px-Deployment_of_oceanographic_research_vessels.png\",\"width\":320,\"height\":187},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4b/Deployment_of_oceanographic_research_vessels.png\",\"width\":899,\"height\":525},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1189178093\",\"tid\":\"6dfcef8b-9723-11ee-812a-a685357c50a7\",\"timestamp\":\"2023-12-10T06:14:52Z\",\"description\":\"Ship or boat designed, modified, or equipped to carry out research at sea\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.wikipedia.org/wiki/Research_vessel?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Research_vessel\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Research_vessel\",\"edit\":\"https://en.m.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Research_vessel\"}},\"extract\":\"A research vessel is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eresearch vessel\u003c/b\u003e is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"757d1543-8f81-49e2-a4bd-0d31829bf8a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:01.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4402,"total_pss":141242,"rss":217936,"native_total_heap":72704,"native_free_heap":8220,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c68f321-7f0a-43bb-be1b-e19f19c5419e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37026","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/721","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f9fea1c-a612-481b-960b-b75d9861c3e5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5679,"total_pss":138877,"rss":214816,"native_total_heap":70656,"native_free_heap":8114,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83ed430d-f1df-408a-8fbd-10ab59cd9de3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3978,"total_pss":142277,"rss":219320,"native_total_heap":72704,"native_free_heap":7566,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"892555ec-1b37-4178-a1fa-235fcb0a1109","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:52.16500000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":980.95825,"y":834.96094,"touch_down_time":344902,"touch_up_time":344982},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8abfd012-e748-4309-8a6a-e4a84a3e2225","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":354977,"utime":455,"cutime":0,"cstime":0,"stime":473,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d36a73e-c4ad-42ac-9618-d27d8d83cfc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":345976,"utime":418,"cutime":0,"cstime":0,"stime":358,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9376c72b-ae9a-4b48-bd17-c1b761368d9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":340383,"end_time":340387,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98c3d0ae-573e-43f9-bca3-58b5900c6d96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5201,"total_pss":140018,"rss":216100,"native_total_heap":72704,"native_free_heap":9082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17d448-2a94-42e2-981b-0ee0c25c7d08","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":682.9761,"y":1501.9336,"end_x":644.97437,"end_y":990.9375,"direction":"up","touch_down_time":349206,"touch_up_time":350657},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9e81a07d-556f-4a9b-8291-bde9d4194d2a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":5430,"total_pss":138667,"rss":215216,"native_total_heap":68608,"native_free_heap":9205,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0167e03-6f1d-4855-8a1e-73b0e3199944","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a30bd7ed-3904-4d1b-a433-480982db7f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6408cf4-abde-4cbd-bb20-064546663e4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.25700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":344063,"end_time":344076,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"66225","content-type":"multipart/form-data; boundary=aad05064-f24f-4701-b88a-a51585f43545","host":"10.0.2.2:8080","msr-req-id":"bc40a0ca-34a1-461f-b59f-21b3b3c30297","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a90f0799-4055-4221-8136-0940e6503d71","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":1656,"total_pss":128635,"rss":219932,"native_total_heap":64512,"native_free_heap":7040,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae2fddd1-a103-4a83-8514-f862cc0c003b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":357978,"utime":462,"cutime":0,"cstime":0,"stime":493,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3635ae1-46be-4293-ba59-bb8f7cc889e7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.21500000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":340,"x":383.97217,"y":1463.9062,"touch_down_time":354290,"touch_up_time":355032},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b721223b-93d7-43dd-b635-dffb1468c0da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":1654,"total_pss":147521,"rss":223432,"native_total_heap":70656,"native_free_heap":6427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8deda50-ca4f-4799-ac31-679003f8d2b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.85200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":358625,"end_time":358671,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38597","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11205","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8fcd61c-46b2-42f5-b021-571cfb2faa91","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:00.52600000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":294,"x":535.979,"y":1123.9453,"touch_down_time":352543,"touch_up_time":353342},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b9fab93e-23be-40c3-a99f-42540fce42e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f45354-cdc0-43aa-81c2-a71a3a11b8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5563,"total_pss":139519,"rss":215708,"native_total_heap":70656,"native_free_heap":8111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c83ebb94-2d85-444f-bb9a-ca339b929fce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.93200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":340692,"end_time":340751,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"173","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/93","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c9623240-bc40-42fa-a416-11e5f98306a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"14942","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/638","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf13c1e-c2df-4148-a5bc-70b5048e4def","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":342977,"utime":396,"cutime":0,"cstime":0,"stime":324,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cd67e312-f02e-4885-8f76-bfd14d501a2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.80400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":358575,"end_time":358623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45501","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5133b6d-771a-44d1-8c65-2f6a0aad5c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.32700000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Xander_Schauffele","method":"get","status_code":200,"start_time":355856,"end_time":356146,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"733","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-ll4ns","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Xander_Schauffele\",\"to\":\"Xander Schauffele\"}],\"pages\":[{\"pageid\":51911552,\"ns\":0,\"title\":\"Xander Schauffele\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:01:12Z\",\"lastrevid\":1224744235,\"length\":43330,\"displaytitle\":\"Xander Schauffele\",\"varianttitles\":{\"en\":\"Xander Schauffele\"},\"description\":\"American professional golfer (born 1993)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"pageimage\":\"Xander_Schauffele_-_2021.jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db46c757-dad6-48ff-b59f-d8cc6227d409","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":351977,"utime":442,"cutime":0,"cstime":0,"stime":432,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dda6e026-7511-4cd7-8a94-92122a859502","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.66700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":540.9558,"y":1671.9141,"touch_down_time":347717,"touch_up_time":348484},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0b97e8-5aa4-44bf-ac21-fea86f1f5b1e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.51800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":113.97217,"y":1742.9297,"touch_down_time":340264,"touch_up_time":340335},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f246fa06-e01f-4f71-81a9-1f6648e59c00","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.17400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"snackbar_action","width":254,"height":126,"x":966.9507,"y":1487.9297,"touch_down_time":357910,"touch_up_time":357990},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f3b83929-8cfe-49f8-8337-1ab07365af4e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:56.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":348976,"utime":428,"cutime":0,"cstime":0,"stime":380,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5c44324-498e-4713-9384-12672b3d1a8c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343681,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9558","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/321","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7b1f31d-e00d-40df-9578-144aa9cb719a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.18600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"084be746-258a-4cc3-901d-65fcdc3704f8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.62800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"view_announcement_action_negative","width":186,"height":126,"x":483.96973,"y":1269.9609,"touch_down_time":342372,"touch_up_time":342443},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"11c91321-dd60-47cb-9e63-5f28d8933493","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.68300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343451,"end_time":343502,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32500","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/837","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"14b1adc3-21ca-4cc8-bc0f-cbe0d0d44c22","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3478,"total_pss":143117,"rss":220400,"native_total_heap":72704,"native_free_heap":7157,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"23d10fbd-021d-4004-b177-249f2fbfd752","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":339977,"utime":367,"cutime":0,"cstime":0,"stime":297,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"263c8a09-8359-4b79-80c3-2c9635397815","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.84400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343662,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"18515","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a152c5d-7e55-461d-aa30-492519829cd9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"312f0bbb-147b-41bd-9473-b57d7956a075","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.68100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":200,"start_time":358238,"end_time":358500,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4694","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-length":"24379","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3dbdb963-9029-46b2-ba43-9defeb21f4ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.41500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":200,"start_time":358183,"end_time":358234,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9356","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"734","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e0a60f5-5d2c-4152-889a-d4f1e4395413","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:54.43600000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":289.97314,"y":1752.8906,"touch_down_time":346326,"touch_up_time":347251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ea82988-201e-40df-8ba6-6c11edb0ab50","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.44700000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":338969,"end_time":339266,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"729","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4794147a-d4f2-4be4-b282-1c8b0abda56f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4814,"total_pss":140875,"rss":216788,"native_total_heap":72704,"native_free_heap":8888,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"47b4c8a8-8259-4272-9946-92f5888b6fb3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.65000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":421.97388,"y":1303.9453,"end_x":421.97388,"end_y":1137.9492,"direction":"up","touch_down_time":343340,"touch_up_time":343469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"58a339d9-0c44-49ba-8ec8-5fc11106628a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.67600000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":200,"start_time":358237,"end_time":358494,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"2","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-length":"426","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5a0ead45-ef62-41d8-990b-1693a568fa16","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d19b739-3b38-49c8-93fe-56466b128a4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.90000000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":358673,"end_time":358719,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39505","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21523","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7218053b-194e-4724-95c5-782ed4939d19","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.17100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":341538,"end_time":341990,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"14142","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-length":"773","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Research_vessel","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 05:06:07 GMT","etag":"W/\"1189178093/cbf09930-14ba-11ef-81f5-220829a64a4e\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Research vessel\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q391022\",\"titles\":{\"canonical\":\"Research_vessel\",\"normalized\":\"Research vessel\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eResearch vessel\u003c/span\u003e\"},\"pageid\":1540172,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Deployment_of_oceanographic_research_vessels.png/320px-Deployment_of_oceanographic_research_vessels.png\",\"width\":320,\"height\":187},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4b/Deployment_of_oceanographic_research_vessels.png\",\"width\":899,\"height\":525},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1189178093\",\"tid\":\"6dfcef8b-9723-11ee-812a-a685357c50a7\",\"timestamp\":\"2023-12-10T06:14:52Z\",\"description\":\"Ship or boat designed, modified, or equipped to carry out research at sea\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.wikipedia.org/wiki/Research_vessel?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Research_vessel\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Research_vessel\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Research_vessel\",\"edit\":\"https://en.m.wikipedia.org/wiki/Research_vessel?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Research_vessel\"}},\"extract\":\"A research vessel is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eresearch vessel\u003c/b\u003e is a ship or boat designed, modified, or equipped to carry out research at sea. Research vessels carry out a number of roles. Some of these roles can be combined into a single vessel but others require a dedicated vessel. Due to the demanding nature of the work, research vessels may be constructed around an icebreaker hull, allowing them to operate in polar waters.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"757d1543-8f81-49e2-a4bd-0d31829bf8a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:01.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":4402,"total_pss":141242,"rss":217936,"native_total_heap":72704,"native_free_heap":8220,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7c68f321-7f0a-43bb-be1b-e19f19c5419e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37026","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/721","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7f9fea1c-a612-481b-960b-b75d9861c3e5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5679,"total_pss":138877,"rss":214816,"native_total_heap":70656,"native_free_heap":8114,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"83ed430d-f1df-408a-8fbd-10ab59cd9de3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":3978,"total_pss":142277,"rss":219320,"native_total_heap":72704,"native_free_heap":7566,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"892555ec-1b37-4178-a1fa-235fcb0a1109","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:52.16500000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":980.95825,"y":834.96094,"touch_down_time":344902,"touch_up_time":344982},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8abfd012-e748-4309-8a6a-e4a84a3e2225","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":354977,"utime":455,"cutime":0,"cstime":0,"stime":473,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d36a73e-c4ad-42ac-9618-d27d8d83cfc0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:53.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":345976,"utime":418,"cutime":0,"cstime":0,"stime":358,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9376c72b-ae9a-4b48-bd17-c1b761368d9f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.56800000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":null,"start_time":340383,"end_time":340387,"failure_reason":null,"failure_description":null,"request_headers":{},"response_headers":{},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"98c3d0ae-573e-43f9-bca3-58b5900c6d96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5201,"total_pss":140018,"rss":216100,"native_total_heap":72704,"native_free_heap":9082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c17d448-2a94-42e2-981b-0ee0c25c7d08","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:57.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":682.9761,"y":1501.9336,"end_x":644.97437,"end_y":990.9375,"direction":"up","touch_down_time":349206,"touch_up_time":350657},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9e81a07d-556f-4a9b-8291-bde9d4194d2a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:49.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":5430,"total_pss":138667,"rss":215216,"native_total_heap":68608,"native_free_heap":9205,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a0167e03-6f1d-4855-8a1e-73b0e3199944","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a30bd7ed-3904-4d1b-a433-480982db7f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.20300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a6408cf4-abde-4cbd-bb20-064546663e4b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.25700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":344063,"end_time":344076,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"66225","content-type":"multipart/form-data; boundary=aad05064-f24f-4701-b88a-a51585f43545","host":"10.0.2.2:8080","msr-req-id":"bc40a0ca-34a1-461f-b59f-21b3b3c30297","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:01:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a90f0799-4055-4221-8136-0940e6503d71","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":1656,"total_pss":128635,"rss":219932,"native_total_heap":64512,"native_free_heap":7040,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ae2fddd1-a103-4a83-8514-f862cc0c003b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.15900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":357978,"utime":462,"cutime":0,"cstime":0,"stime":493,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3635ae1-46be-4293-ba59-bb8f7cc889e7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:02.21500000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":340,"x":383.97217,"y":1463.9062,"touch_down_time":354290,"touch_up_time":355032},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b721223b-93d7-43dd-b635-dffb1468c0da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:51.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":24980,"java_free_heap":1654,"total_pss":147521,"rss":223432,"native_total_heap":70656,"native_free_heap":6427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8deda50-ca4f-4799-ac31-679003f8d2b7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.85200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":358625,"end_time":358671,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38597","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11205","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b8fcd61c-46b2-42f5-b021-571cfb2faa91","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:00.52600000Z","type":"gesture_long_click","gesture_long_click":{"target":"org.wikipedia.feed.view.ListCardItemView","target_id":null,"width":996,"height":294,"x":535.979,"y":1123.9453,"touch_down_time":352543,"touch_up_time":353342},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b9fab93e-23be-40c3-a99f-42540fce42e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.55800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f45354-cdc0-43aa-81c2-a71a3a11b8e6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20210,"java_free_heap":5563,"total_pss":139519,"rss":215708,"native_total_heap":70656,"native_free_heap":8111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c83ebb94-2d85-444f-bb9a-ca339b929fce","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.93200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":304,"start_time":340692,"end_time":340751,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"173","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 08:58:55 GMT","etag":"W/82f46c20-1686-11ef-8cfb-07b0cd20442a","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/93","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea604a-1679-11ef-876c-5177ebd9bb98\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759283\",\"tid\":\"c09ff0c5-1683-11ef-b468-3c0c9e6794fa\",\"timestamp\":\"2024-05-20T08:34:20Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760980\",\"tid\":\"49b80501-1686-11ef-a04f-b8496abd3802\",\"timestamp\":\"2024-05-20T08:52:29Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760842\",\"tid\":\"15dce76e-1686-11ef-b8b1-060614990279\",\"timestamp\":\"2024-05-20T08:51:02Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761042\",\"tid\":\"5dfc2355-1686-11ef-b034-556e8dc5cb06\",\"timestamp\":\"2024-05-20T08:53:03Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed, according to the Iranian Red Crescent Society.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761099\",\"tid\":\"6f451936-1686-11ef-bd6d-863787016151\",\"timestamp\":\"2024-05-20T08:53:32Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755090\",\"tid\":\"29d02978-167d-11ef-9dd4-37ee51cba0de\",\"timestamp\":\"2024-05-20T07:47:10Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c9623240-bc40-42fa-a416-11e5f98306a5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343680,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"14942","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/638","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ccf13c1e-c2df-4148-a5bc-70b5048e4def","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":342977,"utime":396,"cutime":0,"cstime":0,"stime":324,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cd67e312-f02e-4885-8f76-bfd14d501a2f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.80400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":358575,"end_time":358623,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45501","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21411","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5133b6d-771a-44d1-8c65-2f6a0aad5c86","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:03.32700000Z","type":"http","http":{"url":"https://en.wikipedia.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=query\u0026prop=info|description|pageimages\u0026inprop=varianttitles|displaytitle\u0026redirects=1\u0026pithumbsize=320\u0026titles=Xander_Schauffele","method":"get","status_code":200,"start_time":355856,"end_time":356146,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"private, must-revalidate, max-age=0","content-disposition":"inline; filename=api-result.json","content-length":"733","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:03 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-api-ext.codfw.main-cf6cd5945-ll4ns","server-timing":"cache;desc=\"pass\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"batchcomplete\":true,\"query\":{\"normalized\":[{\"fromencoded\":false,\"from\":\"Xander_Schauffele\",\"to\":\"Xander Schauffele\"}],\"pages\":[{\"pageid\":51911552,\"ns\":0,\"title\":\"Xander Schauffele\",\"contentmodel\":\"wikitext\",\"pagelanguage\":\"en\",\"pagelanguagehtmlcode\":\"en\",\"pagelanguagedir\":\"ltr\",\"touched\":\"2024-05-20T06:01:12Z\",\"lastrevid\":1224744235,\"length\":43330,\"displaytitle\":\"Xander Schauffele\",\"varianttitles\":{\"en\":\"Xander Schauffele\"},\"description\":\"American professional golfer (born 1993)\",\"descriptionsource\":\"local\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"pageimage\":\"Xander_Schauffele_-_2021.jpg\"}]}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"db46c757-dad6-48ff-b59f-d8cc6227d409","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:59.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":351977,"utime":442,"cutime":0,"cstime":0,"stime":432,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dda6e026-7511-4cd7-8a94-92122a859502","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:55.66700000Z","type":"gesture_long_click","gesture_long_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":540.9558,"y":1671.9141,"touch_down_time":347717,"touch_up_time":348484},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ee0b97e8-5aa4-44bf-ac21-fea86f1f5b1e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:47.51800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_explore","width":216,"height":189,"x":113.97217,"y":1742.9297,"touch_down_time":340264,"touch_up_time":340335},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f246fa06-e01f-4f71-81a9-1f6648e59c00","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.17400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"snackbar_action","width":254,"height":126,"x":966.9507,"y":1487.9297,"touch_down_time":357910,"touch_up_time":357990},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f3b83929-8cfe-49f8-8337-1ab07365af4e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:56.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":348976,"utime":428,"cutime":0,"cstime":0,"stime":380,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f5c44324-498e-4713-9384-12672b3d1a8c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:50.86200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":343613,"end_time":343681,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9558","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/321","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7b1f31d-e00d-40df-9578-144aa9cb719a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.18600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json index 8016fe777..9f633f70d 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/bc40a0ca-34a1-461f-b59f-21b3b3c30297.json @@ -1 +1 @@ -[{"id":"01f3d0a1-3733-40c3-9702-e7728d2ec108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"022b39f7-4ca8-494b-a3d2-a74c5033e162","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"08b5d288-6a60-4aa6-922e-03b1082b4d23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:26.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":318976,"utime":113,"cutime":0,"cstime":0,"stime":85,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a07040a-ccee-49e6-a4c1-6874e1356ee7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318390,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1156eacb-771d-4488-9ba2-131706953094","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"126b8893-0ce3-4f31-8328-b169d9772d2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12d11188-838b-4ab5-96df-3f71eea908bc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320163,"end_time":320512,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"130ee14c-154a-405b-a653-8561fd1a2899","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"175104fe-df31-4a8f-ac22-a3752f317acc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19473260-748d-4ed6-8e9b-60fa056a59ba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.59900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2457f30e-a681-456e-9f33-bcbec3c6b19f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.18300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":791.97144,"y":1723.9453,"touch_down_time":315923,"touch_up_time":316000},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b6ba475-25f6-42ac-92a2-87fa1af8f212","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c24d396-c76f-4bdd-8e51-0696be14c3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3445b811-c434-4d51-903c-656aee8a1f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3659bf1f-2366-4029-89be-aeae0e33eade","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e6f903a-162d-44ee-93fa-90100a99edfc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.57000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441b8927-2869-43f9-9c00-417c5c19dc7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"450baa03-631d-4014-9d38-1d973cc35a0f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320164,"end_time":320513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"332","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"495261c8-74f7-46ce-801e-fdc9ee2487ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":1388,"total_pss":98316,"rss":188496,"native_total_heap":53248,"native_free_heap":5868,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cb9e4ee-bb9a-4a8a-b108-3285923b4a84","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"566c15a4-e778-48ab-b44e-6cd9a81c4bf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bf8a3e5-1b2c-4d20-91c0-7bdce18bf772","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":497.9773,"y":1662.9492,"touch_down_time":321434,"touch_up_time":321499},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62c03670-7588-41dc-9bfa-348a51994f64","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":315977,"utime":90,"cutime":0,"cstime":0,"stime":70,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"644a20fa-cbc0-4834-b702-277342136570","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.56900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":980.95825,"y":1723.9453,"touch_down_time":316308,"touch_up_time":316386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a386c6b-b2fe-409d-9b30-0784d1e2ab4d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3646","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71169241-fb55-49d4-8aef-1670b99e218b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7cc60b12-56e4-4350-befe-551bc346d986","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e33bfc7-4477-46d8-9adf-5adf97725f6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":555,"total_pss":99269,"rss":189900,"native_total_heap":53248,"native_free_heap":5766,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"831ef2ce-8578-4eff-a374-eec61f92d209","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"93efb02c-29a1-441d-96e9-96aade5660e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.16100000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":4669,"total_pss":87852,"rss":177924,"native_total_heap":47104,"native_free_heap":6323,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97ebe940-d5cd-4ae3-a044-4ce2163c0b39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99b00166-6f24-4abe-9180-a840ab6bdbcf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c3aa326-16ed-462e-a95a-22a80c2df53a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9fd63897-80b4-44e5-ba01-82778cbf290c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.19700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_account_container","width":1080,"height":126,"x":298.97095,"y":1355.918,"touch_down_time":317949,"touch_up_time":318015},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a5619256-4308-45ed-9def-273566e66fdd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.22100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aa1a3218-ee99-40b2-ab95-9b47752788a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdb395a-c03d-40bc-accf-cfa790fd87d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.24700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7b7dd59-81f2-422a-883d-d11308b8145b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b91fe6fb-c1ce-40ba-b62f-48d45d1e26c5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.22600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3ceb86-bcbf-4e0f-abd3-bbe6537209bf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c03a9b5b-039e-4ce0-9fc7-bb1d99602bc1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.57100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_card","width":996,"height":126,"x":369.9646,"y":267.94922,"touch_down_time":322309,"touch_up_time":322386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d074cb9f-70c7-4983-87e6-378a18da58ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":321977,"utime":123,"cutime":0,"cstime":0,"stime":102,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d08dd13a-ff5e-4ba5-b3fc-f8ee8583b560","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":5939,"total_pss":85407,"rss":175252,"native_total_heap":45056,"native_free_heap":7029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d944df88-6507-4ec3-918e-b3ce9bb98ef7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dfb7f017-b611-4d75-bc57-d9ef595acb6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.27900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0dbf40e-5bc1-4faa-9523-2f540bc62205","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11f2c1d-abd8-4600-b549-65c48d637ce1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318070,"end_time":318404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"338","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1fa6cd3-a3ea-492e-b53e-1f53b345647c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":158.96484,"touch_down_time":319990,"touch_up_time":320158},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f54f62c2-a3e6-4e9a-8a26-09fcbed73bbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7aa1703-434c-4011-aa46-721e86cefa72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"01f3d0a1-3733-40c3-9702-e7728d2ec108","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"022b39f7-4ca8-494b-a3d2-a74c5033e162","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"08b5d288-6a60-4aa6-922e-03b1082b4d23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:26.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":318976,"utime":113,"cutime":0,"cstime":0,"stime":85,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a07040a-ccee-49e6-a4c1-6874e1356ee7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318390,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1156eacb-771d-4488-9ba2-131706953094","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"126b8893-0ce3-4f31-8328-b169d9772d2b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"12d11188-838b-4ab5-96df-3f71eea908bc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320163,"end_time":320512,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1045","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"130ee14c-154a-405b-a653-8561fd1a2899","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"175104fe-df31-4a8f-ac22-a3752f317acc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.58100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"19473260-748d-4ed6-8e9b-60fa056a59ba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.59900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2457f30e-a681-456e-9f33-bcbec3c6b19f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.18300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":791.97144,"y":1723.9453,"touch_down_time":315923,"touch_up_time":316000},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b6ba475-25f6-42ac-92a2-87fa1af8f212","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2c24d396-c76f-4bdd-8e51-0696be14c3a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.20400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3445b811-c434-4d51-903c-656aee8a1f98","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3659bf1f-2366-4029-89be-aeae0e33eade","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3e6f903a-162d-44ee-93fa-90100a99edfc","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.57000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"441b8927-2869-43f9-9c00-417c5c19dc7f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"450baa03-631d-4014-9d38-1d973cc35a0f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.69400000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":320164,"end_time":320513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"332","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"495261c8-74f7-46ce-801e-fdc9ee2487ac","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":1388,"total_pss":98316,"rss":188496,"native_total_heap":53248,"native_free_heap":5868,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cb9e4ee-bb9a-4a8a-b108-3285923b4a84","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"566c15a4-e778-48ab-b44e-6cd9a81c4bf6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bf8a3e5-1b2c-4d20-91c0-7bdce18bf772","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":497.9773,"y":1662.9492,"touch_down_time":321434,"touch_up_time":321499},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62c03670-7588-41dc-9bfa-348a51994f64","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":315977,"utime":90,"cutime":0,"cstime":0,"stime":70,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"644a20fa-cbc0-4834-b702-277342136570","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.56900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":980.95825,"y":1723.9453,"touch_down_time":316308,"touch_up_time":316386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6a386c6b-b2fe-409d-9b30-0784d1e2ab4d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.57000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318037,"end_time":318389,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3646","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"71169241-fb55-49d4-8aef-1670b99e218b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7cc60b12-56e4-4350-befe-551bc346d986","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7e33bfc7-4477-46d8-9adf-5adf97725f6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":555,"total_pss":99269,"rss":189900,"native_total_heap":53248,"native_free_heap":5766,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"831ef2ce-8578-4eff-a374-eec61f92d209","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.60100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"93efb02c-29a1-441d-96e9-96aade5660e1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.16100000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":4669,"total_pss":87852,"rss":177924,"native_total_heap":47104,"native_free_heap":6323,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"97ebe940-d5cd-4ae3-a044-4ce2163c0b39","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.64600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"99b00166-6f24-4abe-9180-a840ab6bdbcf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.86900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9c3aa326-16ed-462e-a95a-22a80c2df53a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.25000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9fd63897-80b4-44e5-ba01-82778cbf290c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.19700000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_account_container","width":1080,"height":126,"x":298.97095,"y":1355.918,"touch_down_time":317949,"touch_up_time":318015},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a5619256-4308-45ed-9def-273566e66fdd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.22100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"aa1a3218-ee99-40b2-ab95-9b47752788a1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acdb395a-c03d-40bc-accf-cfa790fd87d6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.24700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b7b7dd59-81f2-422a-883d-d11308b8145b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b91fe6fb-c1ce-40ba-b62f-48d45d1e26c5","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.22600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.login.LoginActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bb3ceb86-bcbf-4e0f-abd3-bbe6537209bf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:28.68900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c03a9b5b-039e-4ce0-9fc7-bb1d99602bc1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.57100000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.views.WikiCardView","target_id":"search_card","width":996,"height":126,"x":369.9646,"y":267.94922,"touch_down_time":322309,"touch_up_time":322386},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d074cb9f-70c7-4983-87e6-378a18da58ed","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":321977,"utime":123,"cutime":0,"cstime":0,"stime":102,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d08dd13a-ff5e-4ba5-b3fc-f8ee8583b560","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.15800000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":15108,"java_free_heap":5939,"total_pss":85407,"rss":175252,"native_total_heap":45056,"native_free_heap":7029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d944df88-6507-4ec3-918e-b3ce9bb98ef7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:29.63400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"dfb7f017-b611-4d75-bc57-d9ef595acb6e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.27900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.createaccount.CreateAccountActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e0dbf40e-5bc1-4faa-9523-2f540bc62205","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.21500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e11f2c1d-abd8-4600-b549-65c48d637ce1","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:25.58500000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":318070,"end_time":318404,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"338","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1fa6cd3-a3ea-492e-b53e-1f53b345647c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.34100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":158.96484,"touch_down_time":319990,"touch_up_time":320158},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f54f62c2-a3e6-4e9a-8a26-09fcbed73bbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:23.21900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f7aa1703-434c-4011-aa46-721e86cefa72","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:27.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json index 1c9819647..05f62b806 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c3929414-e862-4eeb-a108-6048f47a53ed.json @@ -1 +1 @@ -[{"id":"08089591-26d3-460d-9b43-dc6cc16a837b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30792,"java_free_heap":934,"total_pss":106776,"rss":170832,"native_total_heap":50179,"native_free_heap":16380,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0ea7077f-db31-4286-bf7c-eaa483105bc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.26100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":144730,"end_time":144746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"23767","content-type":"multipart/form-data; boundary=79cc944f-9b6c-4752-b6ee-5ba96026539b","host":"10.0.2.2:8080","msr-req-id":"fcc3dc9c-d2a8-466e-bb07-977fcc5149d7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18c51063-26c5-492c-abcb-6aad0e56e24d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.48400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"208d9064-1182-46ef-a421-e3dabb712028","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2561541b-8988-4caf-a5a8-7a6efd9a5e73","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.96700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":146723,"end_time":147452,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lyle_Mays_(album)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:26 GMT","etag":"W/\"1208383055/4e9d9e30-0d97-11ef-a217-1363fc1489c7\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lyle Mays (album)\",\"displaytitle\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19864431\",\"titles\":{\"canonical\":\"Lyle_Mays_(album)\",\"normalized\":\"Lyle Mays (album)\",\"display\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\"},\"pageid\":44437419,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1208383055\",\"tid\":\"418dbdf9-cd6d-11ee-a7ec-97fc0569d1ed\",\"timestamp\":\"2024-02-17T08:19:23Z\",\"description\":\"1986 studio album by Lyle Mays\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lyle_Mays_(album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"}},\"extract\":\"Lyle Mays is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eLyle Mays\u003c/b\u003e\u003c/i\u003e is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"27798f58-31f1-408e-ab31-73b86888b8c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3304","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30cf2504-a3ba-46e0-840e-c021fad6e5c5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":3361,"total_pss":108948,"rss":172572,"native_total_heap":49062,"native_free_heap":17497,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"33ce23c7-de1f-478b-ae83-1b7ec9979e22","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"344d6e55-34e9-42b7-9fdc-9638b3bd9813","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"35b1ab2f-2f6d-43c8-a5b5-79b2605dc076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":146605,"utime":111,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36e67e51-0c88-49d3-8d8a-6539606183d6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.94100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.recyclerview.widget.RecyclerView","target_id":"recycler_view","x":396.958,"y":1197.9492,"end_x":416.9641,"end_y":326.9165,"direction":"up","touch_down_time":151290,"touch_up_time":151425},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3a8b0101-32e0-4046-b3da-e811a7540e1d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.32300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg","method":"get","status_code":200,"start_time":145755,"end_time":145807,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19310","content-disposition":"inline;filename*=UTF-8''Sonnets1609titlepage.jpg","content-length":"44367","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:49:35 GMT","etag":"976d014077e958ac26f62083a88f499f","last-modified":"Sun, 03 Apr 2022 16:47:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4037b2ec-6647-472e-865e-08739384566f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45084830-f27d-422b-b5ce-b6390c437ae0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45e983e2-a6a9-42c3-a63a-604207c0d792","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.12500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":651.9617,"y":2184.8877,"touch_down_time":147516,"touch_up_time":147609},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"48e0d0e6-7f1e-4fdd-8c85-ad0806ae811e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.47800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":411.9873,"y":1954.9072,"end_x":666.958,"end_y":927.9053,"direction":"up","touch_down_time":145815,"touch_up_time":145961},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c702995-5065-444d-8db1-227202d40d6f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"57cef3ac-173b-4436-86ae-3fa6dd264ae2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.79200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":145224,"end_time":145277,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37599","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/739","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"76f343b1-1190-48e9-a20c-028722efe05e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.82400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":145225,"end_time":145308,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15515","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/670","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a66cc1d-688e-4da6-9ab1-de5304209cdd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"86d34600-9ce1-4d01-911a-3481677d4ae7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.66700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145098,"end_time":145151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33074","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/851","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89035565-fd14-4c4f-849f-099911a11032","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":2262,"total_pss":109600,"rss":173272,"native_total_heap":49446,"native_free_heap":18137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89eb4c72-cdea-4909-b6f0-23d3cd68899d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.78800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145223,"end_time":145272,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19088","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/423","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8ad5d654-4e8d-4f98-8e02-ed2d571e3c1a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e41e629-06eb-4e43-b85b-0db97492baa9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8fcb6f54-314b-4d51-8a47-e3c689e20c4b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29634,"java_free_heap":3831,"total_pss":100645,"rss":164756,"native_total_heap":48800,"native_free_heap":16735,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"976bf151-8f67-454f-aa69-acf056792efb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.73200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":576.98,"y":2184.8877,"touch_down_time":147156,"touch_up_time":147216},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9afcd26c-937a-4d99-8b92-b920ca8fcacd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.55000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_settings_container","width":1080,"height":126,"x":255.95947,"y":2089.8926,"touch_down_time":148944,"touch_up_time":149031},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9e0f517b-0d6a-4255-9c31-b8ac3881c633","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a27cffff-e98d-40ca-9acb-d48714b8dce2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a6bca552-0e1e-4f63-9dbd-4719fa41fdaf","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a86096ea-4928-4dd4-b103-cd2b3a87ac68","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145110,"end_time":145160,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10131","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/338","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b382b009-437b-4431-af2b-793e88c61722","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4b9e3a3-0e26-4906-89ab-904ab0a0e231","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9260114-51c5-4c4a-835f-b62390779c35","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.10000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145536,"end_time":145584,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10159","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bae9eff0-95ac-4751-b53a-8c5a49ecff88","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.46900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":917.9407,"y":2184.8877,"touch_down_time":147818,"touch_up_time":147953},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb788b59-466a-4d6d-8071-915ae626d593","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.36400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c4010762-0d16-48d3-822c-8da25c68e4ae","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.47000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6a14eff-eb60-4f5c-8826-c7c7eef2de6e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cfd48352-67b1-417a-b908-1eccf33ae235","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149077,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e0786b5c-f430-4b3b-8344-c8558eebb671","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":152605,"utime":153,"cutime":0,"cstime":0,"stime":71,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1904600-31cf-4d05-bee3-85b0c0a8a071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e41c197d-4570-4500-a0bc-385a507802fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ecc7c6c4-705c-4735-a31b-488acb54d1f6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.16300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg","method":"get","status_code":200,"start_time":145987,"end_time":146647,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"62513","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:11:25 GMT","etag":"cd200b92cead13e3b8eff4687092b93d","last-modified":"Mon, 15 Feb 2016 04:10:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"2ux6imbes33e8twkh1v8mfaysuopgec"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f052a880-650f-470e-b02b-17bc16ce652a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.76000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f26d8986-c7a1-4ecb-b7c3-56ef978fb076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.61700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/19","method":"get","status_code":200,"start_time":146002,"end_time":146101,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"212","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"42307","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:07:56 GMT","etag":"W/7282e900-1688-11ef-897c-b7d5bc29e1be","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"Gento_(song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q120489529\",\"titles\":{\"canonical\":\"Gento_(song)\",\"normalized\":\"Gento (song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\"},\"pageid\":74134806,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224732915\",\"tid\":\"815eac62-165d-11ef-a75d-29f8ae19ee89\",\"timestamp\":\"2024-05-20T04:00:33Z\",\"description\":\"2023 single by SB19\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gento_(song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gento_(song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gento_(song)\"}},\"extract\":\"\\\"Gento\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), Pagtatag! (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eGento\u003c/b\u003e\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), \u003ci\u003ePagtatag!\u003c/i\u003e (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\u003c/p\u003e\",\"normalizedtitle\":\"Gento (song)\"},\"mostread\":{\"date\":\"2024-05-18Z\",\"articles\":[{\"views\":313188,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":30689},{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":309787,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":28032},{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":258188,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2084},{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":206582,\"rank\":7,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1072},{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":206318,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12766},{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":180281,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11410},{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":175097,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29959},{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":173476,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":121423},{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":140047,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":7721},{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":124786,\"rank\":14,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":132251},{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":102885,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":16404},{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":101987,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29319},{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":97373,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":124089},{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":97212,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2414},{\"date\":\"2024-05-15Z\",\"views\":2088},{\"date\":\"2024-05-16Z\",\"views\":1868},{\"date\":\"2024-05-17Z\",\"views\":46339},{\"date\":\"2024-05-18Z\",\"views\":97212}],\"type\":\"standard\",\"title\":\"Kim_Porter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q58772926\",\"titles\":{\"canonical\":\"Kim_Porter\",\"normalized\":\"Kim Porter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\"},\"pageid\":7599520,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224717534\",\"tid\":\"50c028ea-1648-11ef-9b2a-38fddda86f7b\",\"timestamp\":\"2024-05-20T01:28:52Z\",\"description\":\"American actress and model (1970–2018)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kim_Porter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kim_Porter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kim_Porter\"}},\"extract\":\"Kimberly Antwinette Porter was an American model, singer, actress, and entrepreneur.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKimberly Antwinette Porter\u003c/b\u003e was an American model, singer, actress, and entrepreneur.\u003c/p\u003e\",\"normalizedtitle\":\"Kim Porter\"},{\"views\":95942,\"rank\":21,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":156592},{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":95170,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2683},{\"date\":\"2024-05-15Z\",\"views\":2351},{\"date\":\"2024-05-16Z\",\"views\":3917},{\"date\":\"2024-05-17Z\",\"views\":6145},{\"date\":\"2024-05-18Z\",\"views\":95170}],\"type\":\"standard\",\"title\":\"Jai_Opetaia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2029085\",\"titles\":{\"canonical\":\"Jai_Opetaia\",\"normalized\":\"Jai Opetaia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\"},\"pageid\":35230292,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544449\",\"tid\":\"3880db33-1578-11ef-b2ce-78e240a7bbda\",\"timestamp\":\"2024-05-19T00:39:16Z\",\"description\":\"Australian boxer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jai_Opetaia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jai_Opetaia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jai_Opetaia\"}},\"extract\":\"Jai Opetaia is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the Ring magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by The Ring magazine, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJai Opetaia\u003c/b\u003e is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the \u003ci\u003eRing\u003c/i\u003e magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\u003c/p\u003e\",\"normalizedtitle\":\"Jai Opetaia\"},{\"views\":93552,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":74287},{\"date\":\"2024-05-15Z\",\"views\":26797},{\"date\":\"2024-05-16Z\",\"views\":21715},{\"date\":\"2024-05-17Z\",\"views\":24982},{\"date\":\"2024-05-18Z\",\"views\":93552}],\"type\":\"standard\",\"title\":\"King_and_Queen_of_the_Ring_(2024)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125387335\",\"titles\":{\"canonical\":\"King_and_Queen_of_the_Ring_(2024)\",\"normalized\":\"King and Queen of the Ring (2024)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\"},\"pageid\":76555552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598234\",\"tid\":\"92a5abe6-15c0-11ef-8ca3-c14dd86f7ea7\",\"timestamp\":\"2024-05-19T09:17:11Z\",\"description\":\"WWE pay-per-view and livestreaming event\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/King_and_Queen_of_the_Ring_(2024)\",\"edit\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"}},\"extract\":\"The 2024 King and Queen of the Ring is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\",\"extract_html\":\"\u003cp\u003eThe 2024 \u003cb\u003eKing and Queen of the Ring\u003c/b\u003e is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\u003c/p\u003e\",\"normalizedtitle\":\"King and Queen of the Ring (2024)\"},{\"views\":91009,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":8277},{\"date\":\"2024-05-15Z\",\"views\":7345},{\"date\":\"2024-05-16Z\",\"views\":17391},{\"date\":\"2024-05-17Z\",\"views\":166840},{\"date\":\"2024-05-18Z\",\"views\":91009}],\"type\":\"standard\",\"title\":\"Scottie_Scheffler\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30161386\",\"titles\":{\"canonical\":\"Scottie_Scheffler\",\"normalized\":\"Scottie Scheffler\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\"},\"pageid\":54256563,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Scottie_Scheffler_2023_01.jpg\",\"width\":2160,\"height\":2810},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708630\",\"tid\":\"bc04f967-163e-11ef-8873-eb723fdd694e\",\"timestamp\":\"2024-05-20T00:20:17Z\",\"description\":\"American professional golfer (born 1996)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Scottie_Scheffler\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Scottie_Scheffler\",\"edit\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Scottie_Scheffler\"}},\"extract\":\"Scott Alexander Scheffler is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eScott Alexander Scheffler\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Scottie Scheffler\"},{\"views\":90587,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":115179},{\"date\":\"2024-05-15Z\",\"views\":69342},{\"date\":\"2024-05-16Z\",\"views\":69593},{\"date\":\"2024-05-17Z\",\"views\":147233},{\"date\":\"2024-05-18Z\",\"views\":90587}],\"type\":\"standard\",\"title\":\"Megalopolis_(film)\",\"displaytitle\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115175910\",\"titles\":{\"canonical\":\"Megalopolis_(film)\",\"normalized\":\"Megalopolis (film)\",\"display\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\"},\"pageid\":68613611,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740437\",\"tid\":\"2b432f30-1668-11ef-a77e-261586f5d22c\",\"timestamp\":\"2024-05-20T05:16:53Z\",\"description\":\"2024 American film by Francis Ford Coppola\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Megalopolis_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Megalopolis_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Megalopolis_(film)\"}},\"extract\":\"Megalopolis is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMegalopolis\u003c/b\u003e\u003c/i\u003e is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\u003c/p\u003e\",\"normalizedtitle\":\"Megalopolis (film)\"},{\"views\":90539,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35952},{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":88106,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13},{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":83151,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":44092},{\"date\":\"2024-05-15Z\",\"views\":157285},{\"date\":\"2024-05-16Z\",\"views\":211035},{\"date\":\"2024-05-17Z\",\"views\":156773},{\"date\":\"2024-05-18Z\",\"views\":83151}],\"type\":\"standard\",\"title\":\"Harrison_Butker\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29618209\",\"titles\":{\"canonical\":\"Harrison_Butker\",\"normalized\":\"Harrison Butker\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\"},\"pageid\":53917703,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg/320px-Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":900,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224679064\",\"tid\":\"a717789b-161c-11ef-8882-898100b30e1e\",\"timestamp\":\"2024-05-19T20:16:19Z\",\"description\":\"American football player (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Harrison_Butker\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Harrison_Butker\",\"edit\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Harrison_Butker\"}},\"extract\":\"Harrison Butker Jr. is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHarrison Butker Jr.\u003c/b\u003e is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\u003c/p\u003e\",\"normalizedtitle\":\"Harrison Butker\"},{\"views\":80753,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":471},{\"date\":\"2024-05-15Z\",\"views\":780},{\"date\":\"2024-05-16Z\",\"views\":3830},{\"date\":\"2024-05-17Z\",\"views\":15501},{\"date\":\"2024-05-18Z\",\"views\":80753}],\"type\":\"standard\",\"title\":\"Sahith_Theegala\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q96198068\",\"titles\":{\"canonical\":\"Sahith_Theegala\",\"normalized\":\"Sahith Theegala\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\"},\"pageid\":64237652,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Sahith-25th.jpg/320px-Sahith-25th.jpg\",\"width\":320,\"height\":347},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Sahith-25th.jpg\",\"width\":2616,\"height\":2840},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224719451\",\"tid\":\"e2c93c81-164a-11ef-a910-3958271375b5\",\"timestamp\":\"2024-05-20T01:47:16Z\",\"description\":\"American professional golfer (born 1997)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sahith_Theegala\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sahith_Theegala\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sahith_Theegala\"}},\"extract\":\"Sahith Reddy Theegala is an American professional golfer who plays on the PGA Tour.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSahith Reddy Theegala\u003c/b\u003e is an American professional golfer who plays on the PGA Tour.\u003c/p\u003e\",\"normalizedtitle\":\"Sahith Theegala\"},{\"views\":80204,\"rank\":30,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":10365},{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":76764,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":73293},{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":75258,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":66948},{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":74546,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":94182},{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":72976,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":82266},{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":72570,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":178},{\"date\":\"2024-05-15Z\",\"views\":651},{\"date\":\"2024-05-16Z\",\"views\":209},{\"date\":\"2024-05-17Z\",\"views\":194},{\"date\":\"2024-05-18Z\",\"views\":72570}],\"type\":\"standard\",\"title\":\"Josh_Murphy\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15063227\",\"titles\":{\"canonical\":\"Josh_Murphy\",\"normalized\":\"Josh Murphy\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\"},\"pageid\":40621885,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Josh_Murphy_%28cropped%29.jpg/320px-Josh_Murphy_%28cropped%29.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1b/Josh_Murphy_%28cropped%29.jpg\",\"width\":1052,\"height\":870},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224621995\",\"tid\":\"803b473e-15e0-11ef-930b-e2333d6c009d\",\"timestamp\":\"2024-05-19T13:05:44Z\",\"description\":\"English footballer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Josh_Murphy\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Josh_Murphy\",\"edit\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Josh_Murphy\"}},\"extract\":\"Joshua Murphy is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJoshua Murphy\u003c/b\u003e is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\u003c/p\u003e\",\"normalizedtitle\":\"Josh Murphy\"},{\"views\":71013,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11624},{\"date\":\"2024-05-15Z\",\"views\":10961},{\"date\":\"2024-05-16Z\",\"views\":46576},{\"date\":\"2024-05-17Z\",\"views\":76033},{\"date\":\"2024-05-18Z\",\"views\":71013}],\"type\":\"standard\",\"title\":\"List_of_Bridgerton_characters\",\"displaytitle\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114397633\",\"titles\":{\"canonical\":\"List_of_Bridgerton_characters\",\"normalized\":\"List of Bridgerton characters\",\"display\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\"},\"pageid\":70283542,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224201881\",\"tid\":\"5230eb7a-13cb-11ef-a944-139eed651948\",\"timestamp\":\"2024-05-16T21:29:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Bridgerton_characters\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"}},\"extract\":\"\\n\\nBridgerton is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's ton during the season, when debutantes are presented at court.\",\"extract_html\":\"\u003cp\u003e\\n\\n\u003ci\u003eBridgerton\u003c/i\u003e is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's \u003ci\u003eton\u003c/i\u003e during the season, when debutantes are presented at court.\u003c/p\u003e\",\"normalizedtitle\":\"List of Bridgerton characters\"},{\"views\":70938,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":27402},{\"date\":\"2024-05-15Z\",\"views\":30905},{\"date\":\"2024-05-16Z\",\"views\":41972},{\"date\":\"2024-05-17Z\",\"views\":104626},{\"date\":\"2024-05-18Z\",\"views\":70938}],\"type\":\"standard\",\"title\":\"Swati_Maliwal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57163890\",\"titles\":{\"canonical\":\"Swati_Maliwal\",\"normalized\":\"Swati Maliwal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\"},\"pageid\":57188078,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Maliwal.png/320px-Maliwal.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/Maliwal.png\",\"width\":513,\"height\":511},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224599172\",\"tid\":\"f7adc488-15c1-11ef-93f2-7e66d49246dd\",\"timestamp\":\"2024-05-19T09:27:10Z\",\"description\":\"Indian social activist and politician (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Swati_Maliwal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Swati_Maliwal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Swati_Maliwal\"}},\"extract\":\"Swati Maliwal is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSwati Maliwal\u003c/b\u003e is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Swati Maliwal\"},{\"views\":69610,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":750},{\"date\":\"2024-05-15Z\",\"views\":981},{\"date\":\"2024-05-16Z\",\"views\":2261},{\"date\":\"2024-05-17Z\",\"views\":84090},{\"date\":\"2024-05-18Z\",\"views\":69610}],\"type\":\"standard\",\"title\":\"Jasmine_Crockett\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q101428652\",\"titles\":{\"canonical\":\"Jasmine_Crockett\",\"normalized\":\"Jasmine Crockett\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\"},\"pageid\":65802177,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg/320px-Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":2348,\"height\":3116},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725353\",\"tid\":\"0abca4dd-1653-11ef-ad67-d2e1cd85f371\",\"timestamp\":\"2024-05-20T02:45:39Z\",\"description\":\"American attorney and politician (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jasmine_Crockett\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jasmine_Crockett\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jasmine_Crockett\"}},\"extract\":\"Jasmine Felicia Crockett is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJasmine Felicia Crockett\u003c/b\u003e is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\u003c/p\u003e\",\"normalizedtitle\":\"Jasmine Crockett\"},{\"views\":69177,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35045},{\"date\":\"2024-05-15Z\",\"views\":30855},{\"date\":\"2024-05-16Z\",\"views\":27516},{\"date\":\"2024-05-17Z\",\"views\":46573},{\"date\":\"2024-05-18Z\",\"views\":69177}],\"type\":\"standard\",\"title\":\"Jake_Paul_vs._Mike_Tyson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125101707\",\"titles\":{\"canonical\":\"Jake_Paul_vs._Mike_Tyson\",\"normalized\":\"Jake Paul vs. Mike Tyson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\"},\"pageid\":76285553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224498961\",\"tid\":\"f6dc3af7-154f-11ef-a055-84eba5f1aaf7\",\"timestamp\":\"2024-05-18T19:51:06Z\",\"description\":\"Upcoming professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jake_Paul_vs._Mike_Tyson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"}},\"extract\":\"Jake Paul vs. Mike Tyson is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJake Paul vs. Mike Tyson\u003c/b\u003e is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026amp;T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\u003c/p\u003e\",\"normalizedtitle\":\"Jake Paul vs. Mike Tyson\"},{\"views\":68671,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12810},{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":66992,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":619},{\"date\":\"2024-05-15Z\",\"views\":665},{\"date\":\"2024-05-16Z\",\"views\":949},{\"date\":\"2024-05-17Z\",\"views\":2300},{\"date\":\"2024-05-18Z\",\"views\":66992}],\"type\":\"standard\",\"title\":\"Anthony_Cacace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83947153\",\"titles\":{\"canonical\":\"Anthony_Cacace\",\"normalized\":\"Anthony Cacace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\"},\"pageid\":62929955,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224701322\",\"tid\":\"1a2ddd29-1637-11ef-b994-c3e82e574101\",\"timestamp\":\"2024-05-19T23:25:39Z\",\"description\":\"British boxer (born 1989)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anthony_Cacace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anthony_Cacace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anthony_Cacace\"}},\"extract\":\"Anthony Cacace is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAnthony Cacace\u003c/b\u003e is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\u003c/p\u003e\",\"normalizedtitle\":\"Anthony Cacace\"},{\"views\":64602,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":49394},{\"date\":\"2024-05-15Z\",\"views\":42503},{\"date\":\"2024-05-16Z\",\"views\":58547},{\"date\":\"2024-05-17Z\",\"views\":113941},{\"date\":\"2024-05-18Z\",\"views\":64602}],\"type\":\"standard\",\"title\":\"Young_Sheldon\",\"displaytitle\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30014613\",\"titles\":{\"canonical\":\"Young_Sheldon\",\"normalized\":\"Young Sheldon\",\"display\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\"},\"pageid\":53475669,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618691\",\"tid\":\"4cf6d779-15dc-11ef-be3a-58d7a57d8366\",\"timestamp\":\"2024-05-19T12:35:40Z\",\"description\":\"American television sitcom (2017–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Young_Sheldon\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Young_Sheldon\",\"edit\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Young_Sheldon\"}},\"extract\":\"Young Sheldon is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to The Big Bang Theory that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on The Big Bang Theory, narrates the series and is also an executive producer.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eYoung Sheldon\u003c/b\u003e\u003c/i\u003e is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to \u003ci\u003eThe Big Bang Theory\u003c/i\u003e that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on \u003ci\u003eThe Big Bang Theory\u003c/i\u003e, narrates the series and is also an executive producer.\u003c/p\u003e\",\"normalizedtitle\":\"Young Sheldon\"},{\"views\":64141,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11567},{\"date\":\"2024-05-15Z\",\"views\":14244},{\"date\":\"2024-05-16Z\",\"views\":23714},{\"date\":\"2024-05-17Z\",\"views\":86421},{\"date\":\"2024-05-18Z\",\"views\":64141}],\"type\":\"standard\",\"title\":\"Billie_Eilish\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29564107\",\"titles\":{\"canonical\":\"Billie_Eilish\",\"normalized\":\"Billie Eilish\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\"},\"pageid\":53785363,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Billie_Eilish_Vogue_2023.jpg/320px-Billie_Eilish_Vogue_2023.jpg\",\"width\":320,\"height\":470},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/42/Billie_Eilish_Vogue_2023.jpg\",\"width\":461,\"height\":677},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598409\",\"tid\":\"cf718210-15c0-11ef-8cc1-d49e286fa600\",\"timestamp\":\"2024-05-19T09:18:53Z\",\"description\":\"American singer-songwriter (born 2001)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Billie_Eilish\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Billie_Eilish\",\"edit\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Billie_Eilish\"}},\"extract\":\"Billie Eilish Pirate Baird O'Connell is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), Don't Smile at Me. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBillie Eilish Pirate Baird O'Connell\u003c/b\u003e is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), \u003ci\u003eDon't Smile at Me\u003c/i\u003e. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\u003c/p\u003e\",\"normalizedtitle\":\"Billie Eilish\"},{\"views\":62463,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":787},{\"date\":\"2024-05-15Z\",\"views\":668},{\"date\":\"2024-05-16Z\",\"views\":15035},{\"date\":\"2024-05-17Z\",\"views\":51039},{\"date\":\"2024-05-18Z\",\"views\":62463}],\"type\":\"standard\",\"title\":\"Ty_Olsson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q552972\",\"titles\":{\"canonical\":\"Ty_Olsson\",\"normalized\":\"Ty Olsson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\"},\"pageid\":5512162,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Ty_Olsson.jpg/320px-Ty_Olsson.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Ty_Olsson.jpg\",\"width\":2135,\"height\":3203},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760969\",\"tid\":\"44f355b5-1686-11ef-8358-870a76034846\",\"timestamp\":\"2024-05-20T08:52:21Z\",\"description\":\"Canadian actor (born 1974)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ty_Olsson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ty_Olsson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ty_Olsson\"}},\"extract\":\"Ty Victor Olsson is a Canadian actor. He is known for playing Benny Lafitte in Supernatural, real-life 9/11 victim Mark Bingham in the A\u0026E television film Flight 93, and Ord in the PBS Kids animated children's series Dragon Tales.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTy Victor Olsson\u003c/b\u003e is a Canadian actor. He is known for playing Benny Lafitte in \u003ci\u003eSupernatural\u003c/i\u003e, real-life 9/11 victim Mark Bingham in the A\u0026amp;E television film \u003ci\u003eFlight 93\u003c/i\u003e, and Ord in the PBS Kids animated children's series \u003ci\u003eDragon Tales\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Ty Olsson\"},{\"views\":61352,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":99711},{\"date\":\"2024-05-15Z\",\"views\":81344},{\"date\":\"2024-05-16Z\",\"views\":69417},{\"date\":\"2024-05-17Z\",\"views\":59465},{\"date\":\"2024-05-18Z\",\"views\":61352}],\"type\":\"standard\",\"title\":\"Richard_Gadd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q28136502\",\"titles\":{\"canonical\":\"Richard_Gadd\",\"normalized\":\"Richard Gadd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\"},\"pageid\":52517837,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696950\",\"tid\":\"6d04a182-1631-11ef-801f-cfcaf3aa595e\",\"timestamp\":\"2024-05-19T22:45:01Z\",\"description\":\"Scottish writer, actor and comedian (born 1989/1990)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Richard_Gadd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Richard_Gadd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Richard_Gadd\"}},\"extract\":\"Richard Craig Steven Gadd is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series Baby Reindeer, based on his one-man show and his real-life experience.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRichard Craig Steven Gadd\u003c/b\u003e is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series \u003ci\u003eBaby Reindeer\u003c/i\u003e, based on his one-man show and his real-life experience.\u003c/p\u003e\",\"normalizedtitle\":\"Richard Gadd\"},{\"views\":61211,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1659},{\"date\":\"2024-05-15Z\",\"views\":1781},{\"date\":\"2024-05-16Z\",\"views\":2622},{\"date\":\"2024-05-17Z\",\"views\":4405},{\"date\":\"2024-05-18Z\",\"views\":61211}],\"type\":\"standard\",\"title\":\"Mairis_Briedis\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1101673\",\"titles\":{\"canonical\":\"Mairis_Briedis\",\"normalized\":\"Mairis Briedis\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\"},\"pageid\":41168292,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Mairis_Briedis_2018.jpg/320px-Mairis_Briedis_2018.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/da/Mairis_Briedis_2018.jpg\",\"width\":5616,\"height\":3744},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224707864\",\"tid\":\"ed310361-163d-11ef-bd6a-5c31927d892d\",\"timestamp\":\"2024-05-20T00:14:30Z\",\"description\":\"Latvian boxer (born 1985)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mairis_Briedis\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mairis_Briedis\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mairis_Briedis\"}},\"extract\":\"Mairis Briedis is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and Ring titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by The Ring magazine, BoxRec, and second by the Transnational Boxing Rankings Board.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMairis Briedis \u003c/b\u003e is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and \u003cspan\u003e\u003ci\u003eRing\u003c/i\u003e\u003c/span\u003e titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, BoxRec, and second by the Transnational Boxing Rankings Board.\u003c/p\u003e\",\"normalizedtitle\":\"Mairis Briedis\"},{\"views\":61183,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13055},{\"date\":\"2024-05-15Z\",\"views\":16220},{\"date\":\"2024-05-16Z\",\"views\":26544},{\"date\":\"2024-05-17Z\",\"views\":54308},{\"date\":\"2024-05-18Z\",\"views\":61183}],\"type\":\"standard\",\"title\":\"The_Strangers:_Chapter_1\",\"displaytitle\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114073140\",\"titles\":{\"canonical\":\"The_Strangers:_Chapter_1\",\"normalized\":\"The Strangers: Chapter 1\",\"display\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\"},\"pageid\":71757646,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761371\",\"tid\":\"e084dfc2-1686-11ef-8a79-5b1f5e041bac\",\"timestamp\":\"2024-05-20T08:56:42Z\",\"description\":\"2024 film by Renny Harlin\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Strangers%3A_Chapter_1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"}},\"extract\":\"The Strangers: Chapter 1 is a 2024 American horror film that is the third film in The Strangers film series and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eThe Strangers: Chapter 1\u003c/b\u003e\u003c/i\u003e is a 2024 American horror film that is the third film in \u003cspan\u003e\u003ci\u003eThe Strangers\u003c/i\u003e film series\u003c/span\u003e and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\u003c/p\u003e\",\"normalizedtitle\":\"The Strangers: Chapter 1\"},{\"views\":60145,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":72},{\"date\":\"2024-05-15Z\",\"views\":85},{\"date\":\"2024-05-16Z\",\"views\":78},{\"date\":\"2024-05-17Z\",\"views\":517},{\"date\":\"2024-05-18Z\",\"views\":60145}],\"type\":\"standard\",\"title\":\"George_Rose_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1480761\",\"titles\":{\"canonical\":\"George_Rose_(actor)\",\"normalized\":\"George Rose (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\"},\"pageid\":5517058,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224589537\",\"tid\":\"1c029181-15b4-11ef-860f-60a111009a67\",\"timestamp\":\"2024-05-19T07:47:58Z\",\"description\":\"English actor and singer (1920–1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:George_Rose_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/George_Rose_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:George_Rose_(actor)\"}},\"extract\":\"George Walter Rose was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in My Fair Lady and The Mystery of Edwin Drood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGeorge Walter Rose\u003c/b\u003e was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in \u003ci\u003eMy Fair Lady\u003c/i\u003e and \u003ci\u003eThe Mystery of Edwin Drood\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"George Rose (actor)\"}]},\"image\":{\"title\":\"File:Palacio Belvedere, Viena, Austria, 2020-02-01, DD 93-95 HDR.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg/640px-Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":640,\"height\":282},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":7785,\"height\":3428},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Palacio_Belvedere,_Viena,_Austria,_2020-02-01,_DD_93-95_HDR.jpg\",\"artist\":{\"html\":\"\u003cbdi\u003e\u003ca href=\\\"https://www.wikidata.org/wiki/Q28147777\\\" class=\\\"extiw\\\" title=\\\"d:Q28147777\\\"\u003e\u003cspan title=\\\"Spanish photographer (1974-)\\\"\u003eDiego Delso\u003c/span\u003e\u003c/a\u003e\\n\u003c/bdi\u003e\",\"text\":\"Diego Delso\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"View of the Upper \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Belvedere,%20Vienna\\\" title=\\\"en:Belvedere, Vienna\\\" class=\\\"extiw\\\"\u003eBelvedere Palace\u003c/a\u003e during the blue hour, \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Vienna\\\" title=\\\"en:Vienna\\\" class=\\\"extiw\\\"\u003eVienna\u003c/a\u003e, Austria.\",\"text\":\"View of the Upper Belvedere Palace during the blue hour, Vienna, Austria.\",\"lang\":\"en\"},\"wb_entity_id\":\"M93730887\",\"structured\":{\"captions\":{\"en\":\"Belvedere Palace, Vienna, Austria\"}}},\"onthisday\":[{\"text\":\"The wedding of Prince Harry and Meghan Markle (both pictured) took place at St George's Chapel in Windsor Castle, England.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q43890449\",\"titles\":{\"canonical\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"normalized\":\"Wedding of Prince Harry and Meghan Markle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\"},\"pageid\":55772605,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg/320px-Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":829,\"height\":830},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543782\",\"tid\":\"b1cbf944-1577-11ef-9c44-c050daffd9b5\",\"timestamp\":\"2024-05-19T00:35:30Z\",\"description\":\"2018 British royal wedding\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"}},\"extract\":\"The wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\",\"extract_html\":\"\u003cp\u003eThe wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\u003c/p\u003e\",\"normalizedtitle\":\"Wedding of Prince Harry and Meghan Markle\"},{\"type\":\"standard\",\"title\":\"Prince_Harry,_Duke_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q152316\",\"titles\":{\"canonical\":\"Prince_Harry,_Duke_of_Sussex\",\"normalized\":\"Prince Harry, Duke of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\"},\"pageid\":14457,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg/320px-Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":320,\"height\":476},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":766,\"height\":1139},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700127\",\"tid\":\"b0f9baa6-1635-11ef-a588-ac19c543074d\",\"timestamp\":\"2024-05-19T23:15:33Z\",\"description\":\"Member of the British royal family (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prince_Harry%2C_Duke_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"}},\"extract\":\"Prince Harry, Duke of Sussex, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrince Harry, Duke of Sussex\u003c/b\u003e, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\u003c/p\u003e\",\"normalizedtitle\":\"Prince Harry, Duke of Sussex\"},{\"type\":\"standard\",\"title\":\"Meghan,_Duchess_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3304418\",\"titles\":{\"canonical\":\"Meghan,_Duchess_of_Sussex\",\"normalized\":\"Meghan, Duchess of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\"},\"pageid\":11214029,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg/320px-SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":320,\"height\":414},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":1125,\"height\":1455},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700330\",\"tid\":\"f74f0064-1635-11ef-888b-c34b778b4454\",\"timestamp\":\"2024-05-19T23:17:31Z\",\"description\":\"Member of the British royal family and former actress (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Meghan%2C_Duchess_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"}},\"extract\":\"Meghan, Duchess of Sussex is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMeghan, Duchess of Sussex\u003c/b\u003e is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\u003c/p\u003e\",\"normalizedtitle\":\"Meghan, Duchess of Sussex\"},{\"type\":\"standard\",\"title\":\"St_George's_Chapel,_Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2449634\",\"titles\":{\"canonical\":\"St_George's_Chapel,_Windsor_Castle\",\"normalized\":\"St George's Chapel, Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\"},\"pageid\":23910568,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg/320px-St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":320,\"height\":207},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":5473,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544013\",\"tid\":\"df18a7f7-1577-11ef-8b2d-d8013abaa55a\",\"timestamp\":\"2024-05-19T00:36:46Z\",\"description\":\"Royal chapel in Windsor Castle, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48361111,\"lon\":-0.60694444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/St_George's_Chapel%2C_Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"}},\"extract\":\"St George's Chapel at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSt George's Chapel\u003c/b\u003e at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\u003c/p\u003e\",\"normalizedtitle\":\"St George's Chapel, Windsor Castle\"},{\"type\":\"standard\",\"title\":\"Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q42646\",\"titles\":{\"canonical\":\"Windsor_Castle\",\"normalized\":\"Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\"},\"pageid\":4689517,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg/320px-Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":3990,\"height\":2659},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222667833\",\"tid\":\"e8814e48-0c40-11ef-b6d5-e858c3d22445\",\"timestamp\":\"2024-05-07T07:10:39Z\",\"description\":\"Official country residence of British monarch\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48333333,\"lon\":-0.60416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Windsor_Castle\"}},\"extract\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWindsor Castle\u003c/b\u003e is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\u003c/p\u003e\",\"normalizedtitle\":\"Windsor Castle\"}],\"year\":2018},{\"text\":\"A corroded pipeline near Refugio State Beach, California, spilled 142,800 gallons (3,400 barrels) of crude oil onto the Gaviota Coast.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Refugio_State_Beach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7307687\",\"titles\":{\"canonical\":\"Refugio_State_Beach\",\"normalized\":\"Refugio State Beach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\"},\"pageid\":8943321,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Refugio_state_beach_2.jpg/320px-Refugio_state_beach_2.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Refugio_state_beach_2.jpg\",\"width\":4928,\"height\":3264},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155652963\",\"tid\":\"8080cffd-f5f7-11ed-b634-76bd314dbd84\",\"timestamp\":\"2023-05-19T03:44:48Z\",\"description\":\"State beach in Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.46222222,\"lon\":-120.0725},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_State_Beach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_State_Beach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_State_Beach\"}},\"extract\":\"\\n\\nRefugio State Beach is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\n\u003cb\u003eRefugio State Beach\u003c/b\u003e is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio State Beach\"},{\"type\":\"standard\",\"title\":\"Refugio_oil_spill\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19949553\",\"titles\":{\"canonical\":\"Refugio_oil_spill\",\"normalized\":\"Refugio oil spill\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\"},\"pageid\":46752557,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg/320px-Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":640,\"height\":427},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223808546\",\"tid\":\"ab4a239c-11fb-11ef-b78b-23bfbccf1884\",\"timestamp\":\"2024-05-14T14:10:08Z\",\"description\":\"2015 pipeline leak on the coast of California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.4625,\"lon\":-120.08638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_oil_spill\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_oil_spill\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_oil_spill\"}},\"extract\":\"The Refugio oil spill on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRefugio oil spill\u003c/b\u003e on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio oil spill\"},{\"type\":\"standard\",\"title\":\"Gaviota_Coast\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104856587\",\"titles\":{\"canonical\":\"Gaviota_Coast\",\"normalized\":\"Gaviota Coast\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\"},\"pageid\":65303237,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223891497\",\"tid\":\"2c3310c7-1250-11ef-8a7b-6949b0e83b8b\",\"timestamp\":\"2024-05-15T00:15:02Z\",\"description\":\"Rural area of Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.47083333,\"lon\":-120.22472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gaviota_Coast\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gaviota_Coast\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gaviota_Coast\"}},\"extract\":\"The Gaviota Coast in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eGaviota Coast\u003c/b\u003e in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\u003c/p\u003e\",\"normalizedtitle\":\"Gaviota Coast\"}],\"year\":2015},{\"text\":\"In Bangkok, the Thai military (pictured) concluded a week-long crackdown on widespread protests by forcing the surrender of opposition leaders.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Royal_Thai_Armed_Forces\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q947702\",\"titles\":{\"canonical\":\"Royal_Thai_Armed_Forces\",\"normalized\":\"Royal Thai Armed Forces\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\"},\"pageid\":30136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/320px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":320,\"height\":221},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/435px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":435,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222282804\",\"tid\":\"f50a8985-0a7f-11ef-af5b-b44a4e859d86\",\"timestamp\":\"2024-05-05T01:36:56Z\",\"description\":\"National military of Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Royal_Thai_Armed_Forces\",\"edit\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"}},\"extract\":\"The Royal Thai Armed Forces (RTARF) are the armed forces of the Kingdom of Thailand.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRoyal Thai Armed Forces\u003c/b\u003e (RTARF) are the armed forces of the Kingdom of Thailand.\u003c/p\u003e\",\"normalizedtitle\":\"Royal Thai Armed Forces\"},{\"type\":\"standard\",\"title\":\"2010_Thai_military_crackdown\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3428188\",\"titles\":{\"canonical\":\"2010_Thai_military_crackdown\",\"normalized\":\"2010 Thai military crackdown\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\"},\"pageid\":27408756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/2010_Bangkok_unrest_aftermath.jpg/320px-2010_Bangkok_unrest_aftermath.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a3/2010_Bangkok_unrest_aftermath.jpg\",\"width\":1069,\"height\":1600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222537505\",\"tid\":\"343ae1cf-0bb6-11ef-b1fa-515e9d08b245\",\"timestamp\":\"2024-05-06T14:37:46Z\",\"description\":\"Violent state suppression of pro-democracy protests in Bangkok, Thailand (April–May 2010)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_military_crackdown\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"}},\"extract\":\"On 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\",\"extract_html\":\"\u003cp\u003eOn 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai military crackdown\"},{\"type\":\"standard\",\"title\":\"2010_Thai_political_protests\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1059090\",\"titles\":{\"canonical\":\"2010_Thai_political_protests\",\"normalized\":\"2010 Thai political protests\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\"},\"pageid\":26906468,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg/320px-UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":500,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222389315\",\"tid\":\"25e6c6be-0b11-11ef-a047-52962ca39323\",\"timestamp\":\"2024-05-05T18:56:15Z\",\"description\":\"2010 pro-democracy protests in Thailand violently suppressed by the military\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_political_protests\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"}},\"extract\":\"The 2010 Thai political protests were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2010 Thai political protests\u003c/b\u003e were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai political protests\"},{\"type\":\"standard\",\"title\":\"United_Front_for_Democracy_Against_Dictatorship\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1322759\",\"titles\":{\"canonical\":\"United_Front_for_Democracy_Against_Dictatorship\",\"normalized\":\"United Front for Democracy Against Dictatorship\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\"},\"pageid\":19107241,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192004794\",\"tid\":\"01426aa8-a460-11ee-8e5d-22b37635c7ff\",\"timestamp\":\"2023-12-27T02:31:14Z\",\"description\":\"Pro-democracy political pressure group in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_Front_for_Democracy_Against_Dictatorship\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"}},\"extract\":\"The United Front for Democracy Against Dictatorship (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited Front for Democracy Against Dictatorship\u003c/b\u003e (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\u003c/p\u003e\",\"normalizedtitle\":\"United Front for Democracy Against Dictatorship\"}],\"year\":2010},{\"text\":\"The Sierra Gorda Biosphere, which encompasses the most ecologically diverse region in Mexico, was established as a result of grassroots efforts.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Sierra_Gorda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3292893\",\"titles\":{\"canonical\":\"Sierra_Gorda\",\"normalized\":\"Sierra Gorda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\"},\"pageid\":4336092,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/85/SierraGordaWaterfall.JPG/320px-SierraGordaWaterfall.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/85/SierraGordaWaterfall.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1188237276\",\"tid\":\"122fec7d-9257-11ee-a201-8adbf99575c9\",\"timestamp\":\"2023-12-04T03:41:56Z\",\"description\":\"Ecoregion in the Mexican states of Querétaro, Guanajuato, Hidalgo, and San Luis Potosí\",\"description_source\":\"local\",\"coordinates\":{\"lat\":21.31083333,\"lon\":-99.66805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sierra_Gorda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sierra_Gorda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sierra_Gorda\"}},\"extract\":\"The Sierra Gorda is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km2 of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSierra Gorda\u003c/b\u003e is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km\u003csup\u003e2\u003c/sup\u003e of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\u003c/p\u003e\",\"normalizedtitle\":\"Sierra Gorda\"},{\"type\":\"standard\",\"title\":\"Ecosystem_diversity\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q842388\",\"titles\":{\"canonical\":\"Ecosystem_diversity\",\"normalized\":\"Ecosystem diversity\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\"},\"pageid\":524396,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/BlueMarble-2001-2002.jpg/320px-BlueMarble-2001-2002.jpg\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/BlueMarble-2001-2002.jpg\",\"width\":4096,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215311327\",\"tid\":\"0f552812-e9c9-11ee-84bc-8f2eca1e47cb\",\"timestamp\":\"2024-03-24T10:27:05Z\",\"description\":\"Diversity and variations in ecosystems\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ecosystem_diversity\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ecosystem_diversity\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ecosystem_diversity\"}},\"extract\":\"Ecosystem diversity deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEcosystem diversity\u003c/b\u003e deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\u003c/p\u003e\",\"normalizedtitle\":\"Ecosystem diversity\"},{\"type\":\"standard\",\"title\":\"Grassroots\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929651\",\"titles\":{\"canonical\":\"Grassroots\",\"normalized\":\"Grassroots\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\"},\"pageid\":451914,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222480667\",\"tid\":\"029c3ce0-0b6a-11ef-b302-3e10943cc4cf\",\"timestamp\":\"2024-05-06T05:32:21Z\",\"description\":\"Movement based on local communities\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.wikipedia.org/wiki/Grassroots?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Grassroots\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Grassroots\",\"edit\":\"https://en.m.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Grassroots\"}},\"extract\":\"A grassroots movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egrassroots\u003c/b\u003e movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\u003c/p\u003e\",\"normalizedtitle\":\"Grassroots\"}],\"year\":1997},{\"text\":\"Breakup of Yugoslavia: With the local Serb population boycotting the referendum, Croatians voted in favour of independence from Yugoslavia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Breakup_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4390259\",\"titles\":{\"canonical\":\"Breakup_of_Yugoslavia\",\"normalized\":\"Breakup of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\"},\"pageid\":2060900,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Breakup_of_Yugoslavia.gif/320px-Breakup_of_Yugoslavia.gif\",\"width\":320,\"height\":257},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Breakup_of_Yugoslavia.gif\",\"width\":1545,\"height\":1242},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387764\",\"tid\":\"39a2fcc6-14c1-11ef-b1f8-1bcb892b5cfa\",\"timestamp\":\"2024-05-18T02:49:20Z\",\"description\":\"1991–92 Balkan political conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Breakup_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"}},\"extract\":\"After a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\",\"extract_html\":\"\u003cp\u003eAfter a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\u003c/p\u003e\",\"normalizedtitle\":\"Breakup of Yugoslavia\"},{\"type\":\"standard\",\"title\":\"Serbs_of_Croatia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1280677\",\"titles\":{\"canonical\":\"Serbs_of_Croatia\",\"normalized\":\"Serbs of Croatia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\"},\"pageid\":3690204,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/320px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/1200px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":1200,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388423\",\"tid\":\"d82f60ff-14c1-11ef-b39c-0dcebd917f73\",\"timestamp\":\"2024-05-18T02:53:46Z\",\"description\":\"National minority in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Serbs_of_Croatia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"}},\"extract\":\"The Serbs of Croatia or Croatian Serbs constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSerbs of Croatia\u003c/b\u003e or \u003cb\u003eCroatian Serbs\u003c/b\u003e constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\u003c/p\u003e\",\"normalizedtitle\":\"Serbs of Croatia\"},{\"type\":\"standard\",\"title\":\"1991_Croatian_independence_referendum\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3085493\",\"titles\":{\"canonical\":\"1991_Croatian_independence_referendum\",\"normalized\":\"1991 Croatian independence referendum\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\"},\"pageid\":11781428,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223346108\",\"tid\":\"befa4b5a-0fa1-11ef-a572-15b6c106e2e6\",\"timestamp\":\"2024-05-11T14:21:24Z\",\"description\":\"1991 vote in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/1991_Croatian_independence_referendum\",\"edit\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"}},\"extract\":\"Croatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\",\"extract_html\":\"\u003cp\u003eCroatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\u003c/p\u003e\",\"normalizedtitle\":\"1991 Croatian independence referendum\"},{\"type\":\"standard\",\"title\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83286\",\"titles\":{\"canonical\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"normalized\":\"Socialist Federal Republic of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\"},\"pageid\":297809,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/320px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/1000px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":1000,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224486458\",\"tid\":\"4c12579a-1544-11ef-ade1-e44966f423b1\",\"timestamp\":\"2024-05-18T18:27:35Z\",\"description\":\"European socialist state (1945–1992)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.82,\"lon\":20.4275},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Socialist_Federal_Republic_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"}},\"extract\":\"The Socialist Federal Republic of Yugoslavia (SFRY), commonly referred to as SFR Yugoslavia or Socialist Yugoslavia or simply as Yugoslavia, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSocialist Federal Republic of Yugoslavia\u003c/b\u003e (\u003cb\u003eSFRY\u003c/b\u003e), commonly referred to as \u003cb\u003eSFR Yugoslavia\u003c/b\u003e or \u003cb\u003eSocialist Yugoslavia\u003c/b\u003e or simply as \u003cb\u003eYugoslavia\u003c/b\u003e, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\u003c/p\u003e\",\"normalizedtitle\":\"Socialist Federal Republic of Yugoslavia\"}],\"year\":1991},{\"text\":\"First World War: Australian and New Zealand troops repelled the third attack on Anzac Cove, inflicting heavy casualties on the attacking Ottoman forces.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q361\",\"titles\":{\"canonical\":\"World_War_I\",\"normalized\":\"World War I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\"},\"pageid\":4764461,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Bataille_de_Verdun_1916.jpg/320px-Bataille_de_Verdun_1916.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Bataille_de_Verdun_1916.jpg\",\"width\":1875,\"height\":1402},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224566277\",\"tid\":\"f532626a-158f-11ef-9e62-50b2f0e3b3e6\",\"timestamp\":\"2024-05-19T03:29:11Z\",\"description\":\"1914–1918 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_I\"}},\"extract\":\"World War I or the First World War was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War I\u003c/b\u003e or the \u003cb\u003eFirst World War\u003c/b\u003e was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\u003c/p\u003e\",\"normalizedtitle\":\"World War I\"},{\"type\":\"standard\",\"title\":\"Third_attack_on_Anzac_Cove\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16901576\",\"titles\":{\"canonical\":\"Third_attack_on_Anzac_Cove\",\"normalized\":\"Third attack on Anzac Cove\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\"},\"pageid\":38768440,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Assault_of_Ottoman_soldiers.jpg/320px-Assault_of_Ottoman_soldiers.jpg\",\"width\":320,\"height\":215},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Assault_of_Ottoman_soldiers.jpg\",\"width\":902,\"height\":606},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661294\",\"tid\":\"f6a084d5-1609-11ef-81b3-d50e38e865bd\",\"timestamp\":\"2024-05-19T18:02:32Z\",\"description\":\"Battle in 1915 during the First World War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":40.24,\"lon\":26.2925},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Third_attack_on_Anzac_Cove\",\"edit\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"}},\"extract\":\"The third attack on Anzac Cove was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ethird attack on Anzac Cove\u003c/b\u003e was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\u003c/p\u003e\",\"normalizedtitle\":\"Third attack on Anzac Cove\"}],\"year\":1915},{\"text\":\"Parks Canada, the world's first national park service, was established as the Dominion Parks Branch under the Department of the Interior.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Parks_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q349487\",\"titles\":{\"canonical\":\"Parks_Canada\",\"normalized\":\"Parks Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\"},\"pageid\":507952,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/320px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/365px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":365,\"height\":274},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216238762\",\"tid\":\"8ac738e9-ee18-11ee-927b-73fd7cbd402d\",\"timestamp\":\"2024-03-29T22:06:07Z\",\"description\":\"Government agency\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Parks_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Parks_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Parks_Canada\"}},\"extract\":\"Parks Canada, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eParks Canada\u003c/b\u003e, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Parks Canada\"},{\"type\":\"standard\",\"title\":\"National_park\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q46169\",\"titles\":{\"canonical\":\"National_park\",\"normalized\":\"National park\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\"},\"pageid\":21818,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg/320px-Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":3088,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224275986\",\"tid\":\"a4a8f48d-1439-11ef-943e-24b47b125f5c\",\"timestamp\":\"2024-05-17T10:38:48Z\",\"description\":\"Park for conservation of nature and usually also for visitors\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.wikipedia.org/wiki/National_park?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_park\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_park\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_park\"}},\"extract\":\"A national park is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003enational park\u003c/b\u003e is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\u003c/p\u003e\",\"normalizedtitle\":\"National park\"},{\"type\":\"standard\",\"title\":\"Environment_and_Climate_Change_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348789\",\"titles\":{\"canonical\":\"Environment_and_Climate_Change_Canada\",\"normalized\":\"Environment and Climate Change Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\"},\"pageid\":272329,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1213022671\",\"tid\":\"c274572d-df0e-11ee-a19d-dad574c6fe55\",\"timestamp\":\"2024-03-10T18:48:18Z\",\"description\":\"Canadian federal government department\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Environment_and_Climate_Change_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"}},\"extract\":\"Environment and Climate Change Canada is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, Environment Canada.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEnvironment and Climate Change Canada\u003c/b\u003e is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, \u003cb\u003eEnvironment Canada\u003c/b\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Environment and Climate Change Canada\"}],\"year\":1911},{\"text\":\"Captain John Franklin (pictured) departed Greenhithe, England, on an expedition to the Canadian Arctic in search of the Northwest Passage; all 129 men were later lost when their ships became icebound in Victoria Strait.\",\"pages\":[{\"type\":\"standard\",\"title\":\"John_Franklin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2655\",\"titles\":{\"canonical\":\"John_Franklin\",\"normalized\":\"John Franklin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\"},\"pageid\":330305,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg/320px-Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":320,\"height\":382},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":2400,\"height\":2863},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221759362\",\"tid\":\"4b1ac3b9-07fb-11ef-936f-56ddbcd74120\",\"timestamp\":\"2024-05-01T20:42:15Z\",\"description\":\"British naval officer and explorer (1786–1847)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.wikipedia.org/wiki/John_Franklin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:John_Franklin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/John_Franklin\",\"edit\":\"https://en.m.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:John_Franklin\"}},\"extract\":\"Sir John Franklin was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSir John Franklin\u003c/b\u003e \u003csmall\u003e\u003c/small\u003e was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\u003c/p\u003e\",\"normalizedtitle\":\"John Franklin\"},{\"type\":\"standard\",\"title\":\"Greenhithe,_Kent\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3028239\",\"titles\":{\"canonical\":\"Greenhithe,_Kent\",\"normalized\":\"Greenhithe, Kent\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\"},\"pageid\":1057585,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/GreenhitheIngressPark5342.JPG/320px-GreenhitheIngressPark5342.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/GreenhitheIngressPark5342.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1190989678\",\"tid\":\"e0758296-9f8f-11ee-b240-395c3531fe37\",\"timestamp\":\"2023-12-20T23:31:19Z\",\"description\":\"Village in the Borough of Dartford, Kent, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.4504,\"lon\":0.2823},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greenhithe%2C_Kent\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"}},\"extract\":\"Greenhithe is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGreenhithe\u003c/b\u003e is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\u003c/p\u003e\",\"normalizedtitle\":\"Greenhithe, Kent\"},{\"type\":\"standard\",\"title\":\"Franklin's_lost_expedition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2305\",\"titles\":{\"canonical\":\"Franklin's_lost_expedition\",\"normalized\":\"Franklin's lost expedition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\"},\"pageid\":15746136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Franklin%27s-Lost-Expedition.png/320px-Franklin%27s-Lost-Expedition.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Franklin%27s-Lost-Expedition.png\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387825\",\"tid\":\"46bfef98-14c1-11ef-b36c-b14d135d5e7d\",\"timestamp\":\"2024-05-18T02:49:42Z\",\"description\":\"British expedition of Arctic exploration\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Franklin's_lost_expedition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"}},\"extract\":\"Franklin's lost expedition was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, HMS Erebus and HMS Terror, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year Erebus and Terror were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and Erebus's captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFranklin's lost expedition\u003c/b\u003e was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, \u003cspan\u003eHMS \u003ci\u003eErebus\u003c/i\u003e\u003c/span\u003e and \u003cspan\u003eHMS \u003ci\u003eTerror\u003c/i\u003e\u003c/span\u003e, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year \u003ci\u003eErebus\u003c/i\u003e and \u003ci\u003eTerror\u003c/i\u003e were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and \u003ci\u003eErebus\u003c/i\u003e\u003cspan class=\\\"nowrap\\\"\u003e'\u003c/span\u003es captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\u003c/p\u003e\",\"normalizedtitle\":\"Franklin's lost expedition\"},{\"type\":\"standard\",\"title\":\"Northern_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q764146\",\"titles\":{\"canonical\":\"Northern_Canada\",\"normalized\":\"Northern Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\"},\"pageid\":79987,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Whitehorse_Yukon.JPG/320px-Whitehorse_Yukon.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5e/Whitehorse_Yukon.JPG\",\"width\":640,\"height\":480},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221583793\",\"tid\":\"9fee06a3-0729-11ef-b35c-25ac1f2c2135\",\"timestamp\":\"2024-04-30T19:41:23Z\",\"description\":\"Region of Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":65.82,\"lon\":-107.08},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northern_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northern_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northern_Canada\"}},\"extract\":\"Northern Canada, colloquially the North or the Territories, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthern Canada\u003c/b\u003e, colloquially \u003cb\u003ethe North\u003c/b\u003e or \u003cb\u003ethe Territories\u003c/b\u003e, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\u003c/p\u003e\",\"normalizedtitle\":\"Northern Canada\"},{\"type\":\"standard\",\"title\":\"Northwest_Passage\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q81136\",\"titles\":{\"canonical\":\"Northwest_Passage\",\"normalized\":\"Northwest Passage\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\"},\"pageid\":21215,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg/320px-2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":2700,\"height\":2700},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224392011\",\"tid\":\"5130bb64-14c6-11ef-b2de-9a464bc509a6\",\"timestamp\":\"2024-05-18T03:25:47Z\",\"description\":\"Sea route north of North America\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northwest_Passage\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northwest_Passage\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northwest_Passage\"}},\"extract\":\"The Northwest Passage (NWP) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the Northwest Passages, Northwestern Passages or the Canadian Internal Waters.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNorthwest Passage\u003c/b\u003e (\u003cb\u003eNWP\u003c/b\u003e) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the \u003cb\u003eNorthwest Passages\u003c/b\u003e, \u003cb\u003eNorthwestern Passages\u003c/b\u003e or the Canadian Internal Waters.\u003c/p\u003e\",\"normalizedtitle\":\"Northwest Passage\"},{\"type\":\"standard\",\"title\":\"Victoria_Strait\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q601548\",\"titles\":{\"canonical\":\"Victoria_Strait\",\"normalized\":\"Victoria Strait\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\"},\"pageid\":7746699,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Wfm_victoria_island.jpg/320px-Wfm_victoria_island.jpg\",\"width\":320,\"height\":237},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Wfm_victoria_island.jpg\",\"width\":1280,\"height\":948},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155669815\",\"tid\":\"43bdcc9b-f609-11ed-b5a1-2cc997448104\",\"timestamp\":\"2023-05-19T05:51:57Z\",\"description\":\"Strait in Nunavut, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":69.5,\"lon\":-100.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Victoria_Strait\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Victoria_Strait\",\"edit\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Victoria_Strait\"}},\"extract\":\"Victoria Strait is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVictoria Strait\u003c/b\u003e is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\u003c/p\u003e\",\"normalizedtitle\":\"Victoria Strait\"}],\"year\":1845},{\"text\":\"The United States Congress passed the largest tariff in the nation's history, which resulted in severe economic hardship in the American South.\",\"pages\":[{\"type\":\"standard\",\"title\":\"United_States_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11268\",\"titles\":{\"canonical\":\"United_States_Congress\",\"normalized\":\"United States Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\"},\"pageid\":31756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/320px-Seal_of_the_United_States_Congress.svg.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/1055px-Seal_of_the_United_States_Congress.svg.png\",\"width\":1055,\"height\":1052},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543713\",\"tid\":\"9e20913a-1577-11ef-bd9f-d8c767cc668f\",\"timestamp\":\"2024-05-19T00:34:57Z\",\"description\":\"Legislative branch of U.S. government\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.88972222,\"lon\":-77.00888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_States_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_States_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_States_Congress\"}},\"extract\":\"The United States Congress is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited States Congress\u003c/b\u003e is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\u003c/p\u003e\",\"normalizedtitle\":\"United States Congress\"},{\"type\":\"standard\",\"title\":\"Tariff_of_Abominations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7686034\",\"titles\":{\"canonical\":\"Tariff_of_Abominations\",\"normalized\":\"Tariff of Abominations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\"},\"pageid\":55572,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224675540\",\"tid\":\"d4fab5e8-1618-11ef-80c1-09f2e774fd42\",\"timestamp\":\"2024-05-19T19:48:58Z\",\"description\":\"1828 United States tariff\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tariff_of_Abominations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"}},\"extract\":\"The Tariff of 1828 was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \\\"Tariff of Abominations\\\" by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eTariff of 1828\u003c/b\u003e was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \u003cb\u003e\\\"Tariff of Abominations\\\"\u003c/b\u003e by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\u003c/p\u003e\",\"normalizedtitle\":\"Tariff of Abominations\"}],\"year\":1828},{\"text\":\"A combination of thick smoke, fog, and heavy cloud cover caused darkness to fall on parts of Canada and the New England area of the United States by noon.\",\"pages\":[{\"type\":\"standard\",\"title\":\"New_England's_Dark_Day\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q588300\",\"titles\":{\"canonical\":\"New_England's_Dark_Day\",\"normalized\":\"New England's Dark Day\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\"},\"pageid\":666041,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg/320px-1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":320,\"height\":227},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":2500,\"height\":1772},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698529\",\"tid\":\"7db62050-1633-11ef-9a45-a19eb4bbc11f\",\"timestamp\":\"2024-05-19T22:59:48Z\",\"description\":\"1780 darkness in New England and Canada\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England's_Dark_Day\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"}},\"extract\":\"New England's Dark Day occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England's Dark Day\u003c/b\u003e occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\u003c/p\u003e\",\"normalizedtitle\":\"New England's Dark Day\"},{\"type\":\"standard\",\"title\":\"New_England\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q18389\",\"titles\":{\"canonical\":\"New_England\",\"normalized\":\"New England\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\"},\"pageid\":21531764,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Portland_HeadLight_%28cropped%29.jpg/320px-Portland_HeadLight_%28cropped%29.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Portland_HeadLight_%28cropped%29.jpg\",\"width\":3703,\"height\":2779},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219182468\",\"tid\":\"2b5c7a30-fbbb-11ee-95fd-523e3ef2e8e0\",\"timestamp\":\"2024-04-16T06:33:00Z\",\"description\":\"Region in the Northeastern United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44,\"lon\":-71},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England\"}},\"extract\":\"New England is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England\u003c/b\u003e is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\u003c/p\u003e\",\"normalizedtitle\":\"New England\"}],\"year\":1780},{\"text\":\"American Revolutionary War: A Continental Army garrison west of Montreal surrendered to British troops at the Battle of the Cedars.\",\"pages\":[{\"type\":\"standard\",\"title\":\"American_Revolutionary_War\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q40949\",\"titles\":{\"canonical\":\"American_Revolutionary_War\",\"normalized\":\"American Revolutionary War\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\"},\"pageid\":771,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/AmericanRevolutionaryWarMon.jpg/320px-AmericanRevolutionaryWarMon.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2b/AmericanRevolutionaryWarMon.jpg\",\"width\":406,\"height\":601},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224395755\",\"tid\":\"ad4a1b93-14cb-11ef-91e2-dcff43c01b8c\",\"timestamp\":\"2024-05-18T04:04:09Z\",\"description\":\"1775–1783 American war of independence\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:American_Revolutionary_War\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/American_Revolutionary_War\",\"edit\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:American_Revolutionary_War\"}},\"extract\":\"The American Revolutionary War, also known as the Revolutionary War or American War of Independence, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAmerican Revolutionary War\u003c/b\u003e, also known as the \u003cb\u003eRevolutionary War\u003c/b\u003e or \u003cb\u003eAmerican War of Independence\u003c/b\u003e, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\u003c/p\u003e\",\"normalizedtitle\":\"American Revolutionary War\"},{\"type\":\"standard\",\"title\":\"Continental_Army\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q54122\",\"titles\":{\"canonical\":\"Continental_Army\",\"normalized\":\"Continental Army\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\"},\"pageid\":168210,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/320px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/719px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":719,\"height\":719},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218341994\",\"tid\":\"0d0d1f71-f7ba-11ee-92e0-84d6ec6ea0b7\",\"timestamp\":\"2024-04-11T04:14:55Z\",\"description\":\"Colonial army during the American Revolutionary War\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.wikipedia.org/wiki/Continental_Army?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Continental_Army\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Continental_Army\",\"edit\":\"https://en.m.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Continental_Army\"}},\"extract\":\"The Continental Army was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eContinental Army\u003c/b\u003e was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\u003c/p\u003e\",\"normalizedtitle\":\"Continental Army\"},{\"type\":\"standard\",\"title\":\"Montreal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q340\",\"titles\":{\"canonical\":\"Montreal\",\"normalized\":\"Montreal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\"},\"pageid\":7954681,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/320px-Flag_of_Montreal.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/435px-Flag_of_Montreal.svg.png\",\"width\":435,\"height\":217},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388393\",\"tid\":\"ccdc30a9-14c1-11ef-a502-1d98a1856bc8\",\"timestamp\":\"2024-05-18T02:53:27Z\",\"description\":\"Largest city in Quebec, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.50888889,\"lon\":-73.55416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.wikipedia.org/wiki/Montreal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Montreal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Montreal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Montreal\"}},\"extract\":\"Montreal is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as Ville-Marie, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMontreal\u003c/b\u003e is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as \u003ci\u003eVille-Marie\u003c/i\u003e, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\u003c/p\u003e\",\"normalizedtitle\":\"Montreal\"},{\"type\":\"standard\",\"title\":\"Battle_of_the_Cedars\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1779439\",\"titles\":{\"canonical\":\"Battle_of_the_Cedars\",\"normalized\":\"Battle of the Cedars\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\"},\"pageid\":1255562,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Montreal1764CedarsDetail.png/320px-Montreal1764CedarsDetail.png\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Montreal1764CedarsDetail.png\",\"width\":1067,\"height\":697},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1185353813\",\"tid\":\"b2a39b1f-843d-11ee-be8c-93f4c27e711b\",\"timestamp\":\"2023-11-16T05:05:02Z\",\"description\":\"1776 skirmishes of the American Revolutionary War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.3099,\"lon\":-74.0353},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_the_Cedars\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"}},\"extract\":\"The Battle of the Cedars was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of the Cedars\u003c/b\u003e was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of the Cedars\"}],\"year\":1776},{\"text\":\"French physicist Jean-Pierre Christin published the design of a mercury thermometer using the centigrade scale, with 0 representing the melting point of water and 100 its boiling point.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Jean-Pierre_Christin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3169136\",\"titles\":{\"canonical\":\"Jean-Pierre_Christin\",\"normalized\":\"Jean-Pierre Christin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\"},\"pageid\":36320014,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg/320px-Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":320,\"height\":203},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":1536,\"height\":972},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224640125\",\"tid\":\"4f1942be-15f5-11ef-8b89-17cafdec9809\",\"timestamp\":\"2024-05-19T15:34:41Z\",\"description\":\"French scientist (1683–1755)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jean-Pierre_Christin\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"}},\"extract\":\"Jean-Pierre Christin was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJean-Pierre Christin\u003c/b\u003e was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\u003c/p\u003e\",\"normalizedtitle\":\"Jean-Pierre Christin\"},{\"type\":\"standard\",\"title\":\"Mercury-in-glass_thermometer\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1428655\",\"titles\":{\"canonical\":\"Mercury-in-glass_thermometer\",\"normalized\":\"Mercury-in-glass thermometer\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\"},\"pageid\":150245,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Mercury_Thermometer.jpg/320px-Mercury_Thermometer.jpg\",\"width\":320,\"height\":691},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Mercury_Thermometer.jpg\",\"width\":922,\"height\":1990},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224519270\",\"tid\":\"50e509a8-1560-11ef-b870-8d644d1d526c\",\"timestamp\":\"2024-05-18T21:48:09Z\",\"description\":\"Type of thermometer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mercury-in-glass_thermometer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"}},\"extract\":\"The mercury-in-glass or mercury thermometer is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emercury-in-glass\u003c/b\u003e or \u003cb\u003emercury thermometer\u003c/b\u003e is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\u003c/p\u003e\",\"normalizedtitle\":\"Mercury-in-glass thermometer\"},{\"type\":\"standard\",\"title\":\"Celsius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25267\",\"titles\":{\"canonical\":\"Celsius\",\"normalized\":\"Celsius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\"},\"pageid\":19593040,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/320px-Countries_that_use_Celsius.svg.png\",\"width\":320,\"height\":164},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/2560px-Countries_that_use_Celsius.svg.png\",\"width\":2560,\"height\":1314},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223598016\",\"tid\":\"64b7de3b-10e8-11ef-ba9a-9e8a2c8f3ef4\",\"timestamp\":\"2024-05-13T05:19:38Z\",\"description\":\"Scale and unit of measurement for temperature\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.wikipedia.org/wiki/Celsius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Celsius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Celsius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Celsius\"}},\"extract\":\"The degree Celsius is the unit of temperature on the Celsius temperature scale, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called centigrade in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003edegree Celsius\u003c/b\u003e is the unit of temperature on the \u003cb\u003eCelsius temperature scale\u003c/b\u003e, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called \u003ci\u003ecentigrade\u003c/i\u003e in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\u003c/p\u003e\",\"normalizedtitle\":\"Celsius\"},{\"type\":\"standard\",\"title\":\"Melting_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15318\",\"titles\":{\"canonical\":\"Melting_point\",\"normalized\":\"Melting point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\"},\"pageid\":40283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Melting_ice_thermometer.jpg/320px-Melting_ice_thermometer.jpg\",\"width\":320,\"height\":278},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/64/Melting_ice_thermometer.jpg\",\"width\":2536,\"height\":2204},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224699892\",\"tid\":\"6a0bbc8d-1635-11ef-b512-0e0f8f18e985\",\"timestamp\":\"2024-05-19T23:13:34Z\",\"description\":\"Temperature at which a solid turns liquid\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Melting_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Melting_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Melting_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Melting_point\"}},\"extract\":\"The melting point of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emelting point\u003c/b\u003e of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\u003c/p\u003e\",\"normalizedtitle\":\"Melting point\"},{\"type\":\"standard\",\"title\":\"Boiling_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1003183\",\"titles\":{\"canonical\":\"Boiling_point\",\"normalized\":\"Boiling point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\"},\"pageid\":4115,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Boilingkettle.jpg/320px-Boilingkettle.jpg\",\"width\":320,\"height\":411},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/92/Boilingkettle.jpg\",\"width\":2837,\"height\":3645},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214870211\",\"tid\":\"7eefc9c5-e7af-11ee-b16e-8b4e7de40642\",\"timestamp\":\"2024-03-21T18:19:03Z\",\"description\":\"Temperature at which a substance changes from liquid into vapor\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Boiling_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Boiling_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Boiling_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Boiling_point\"}},\"extract\":\" The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\",\"extract_html\":\"\u003cp\u003e The \u003cb\u003eboiling point\u003c/b\u003e of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\u003c/p\u003e\",\"normalizedtitle\":\"Boiling point\"}],\"year\":1743},{\"text\":\"Anglo-Spanish War: England invaded Spanish Jamaica, capturing it a week later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Spanish_War_(1654–1660)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q369291\",\"titles\":{\"canonical\":\"Anglo-Spanish_War_(1654–1660)\",\"normalized\":\"Anglo-Spanish War (1654–1660)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\"},\"pageid\":853356,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg/320px-Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":320,\"height\":242},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":4085,\"height\":3087},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224685406\",\"tid\":\"8ef728cd-1623-11ef-94c8-16a4f6553eaf\",\"timestamp\":\"2024-05-19T21:05:45Z\",\"description\":\"War between the English Protectorate, under Oliver Cromwell, and Spain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Spanish_War_(1654%E2%80%931660)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"}},\"extract\":\"The Anglo-Spanish War was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAnglo-Spanish War\u003c/b\u003e was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Spanish War (1654–1660)\"},{\"type\":\"standard\",\"title\":\"Invasion_of_Jamaica\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6059673\",\"titles\":{\"canonical\":\"Invasion_of_Jamaica\",\"normalized\":\"Invasion of Jamaica\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\"},\"pageid\":28424211,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Jamaica1671ogilby.jpg/320px-Jamaica1671ogilby.jpg\",\"width\":320,\"height\":256},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d9/Jamaica1671ogilby.jpg\",\"width\":4329,\"height\":3461},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224697636\",\"tid\":\"44c9676f-1632-11ef-bcf6-06b5a0690573\",\"timestamp\":\"2024-05-19T22:51:03Z\",\"description\":\"1655 English victory over Spain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":17.955,\"lon\":-76.8675},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Invasion_of_Jamaica\",\"edit\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"}},\"extract\":\"The Invasion of Jamaica took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eInvasion of Jamaica\u003c/b\u003e took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\u003c/p\u003e\",\"normalizedtitle\":\"Invasion of Jamaica\"},{\"type\":\"standard\",\"title\":\"Colony_of_Santiago\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5148521\",\"titles\":{\"canonical\":\"Colony_of_Santiago\",\"normalized\":\"Colony of Santiago\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\"},\"pageid\":34399476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/320px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/900px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224660847\",\"tid\":\"9316514f-1609-11ef-9ac4-fdfc9fced638\",\"timestamp\":\"2024-05-19T17:59:45Z\",\"description\":\"Former Spanish colony in the Caribbean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":18.18,\"lon\":-77.4},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colony_of_Santiago\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colony_of_Santiago\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colony_of_Santiago\"}},\"extract\":\"Santiago was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSantiago\u003c/b\u003e was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\u003c/p\u003e\",\"normalizedtitle\":\"Colony of Santiago\"}],\"year\":1655},{\"text\":\"Gregory II began his pontificate; his conflict with Byzantine emperor Leo III eventually led to the establishment of the temporal power of the pope.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Pope_Gregory_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q103321\",\"titles\":{\"canonical\":\"Pope_Gregory_II\",\"normalized\":\"Pope Gregory II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\"},\"pageid\":24193,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224650505\",\"tid\":\"c0f68a2c-15ff-11ef-97b2-0090790fddce\",\"timestamp\":\"2024-05-19T16:49:27Z\",\"description\":\"Head of the Catholic Church from 715 to 731\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope_Gregory_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope_Gregory_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope_Gregory_II\"}},\"extract\":\"Pope Gregory II was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePope Gregory II\u003c/b\u003e was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\u003c/p\u003e\",\"normalizedtitle\":\"Pope Gregory II\"},{\"type\":\"standard\",\"title\":\"Pope\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19546\",\"titles\":{\"canonical\":\"Pope\",\"normalized\":\"Pope\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\"},\"pageid\":23056,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg/320px-Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":991,\"height\":1316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224204527\",\"tid\":\"87d6db6d-13cd-11ef-a64a-2505ff3ede61\",\"timestamp\":\"2024-05-16T21:44:54Z\",\"description\":\"Visible head of the Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope\"}},\"extract\":\"The pope is the bishop of Rome, Patriarch of the West, and visible head of the Catholic Church. He is also known as the supreme pontiff, Roman pontiff or sovereign pontiff. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epope\u003c/b\u003e is the \u003cb\u003ebishop of Rome\u003c/b\u003e, Patriarch of the West, and visible head of the Catholic Church. He is also known as the \u003cb\u003esupreme pontiff\u003c/b\u003e, \u003cb\u003eRoman pontiff\u003c/b\u003e or \u003cb\u003esovereign pontiff\u003c/b\u003e. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\u003c/p\u003e\",\"normalizedtitle\":\"Pope\"},{\"type\":\"standard\",\"title\":\"Leo_III_the_Isaurian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q31755\",\"titles\":{\"canonical\":\"Leo_III_the_Isaurian\",\"normalized\":\"Leo III the Isaurian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\"},\"pageid\":18010,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Solidus_of_Leo_III_sb1504.png/320px-Solidus_of_Leo_III_sb1504.png\",\"width\":320,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Solidus_of_Leo_III_sb1504.png\",\"width\":737,\"height\":727},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220135113\",\"tid\":\"917753ff-0046-11ef-9551-c42353025594\",\"timestamp\":\"2024-04-22T01:20:56Z\",\"description\":\"Byzantine emperor from 717 to 741\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leo_III_the_Isaurian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"}},\"extract\":\"Leo III the Isaurian, also known as the Syrian, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLeo III the Isaurian\u003c/b\u003e, also known as \u003cb\u003ethe Syrian\u003c/b\u003e, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\u003c/p\u003e\",\"normalizedtitle\":\"Leo III the Isaurian\"},{\"type\":\"standard\",\"title\":\"Temporal_power_of_the_Holy_See\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929806\",\"titles\":{\"canonical\":\"Temporal_power_of_the_Holy_See\",\"normalized\":\"Temporal power of the Holy See\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\"},\"pageid\":92913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg/320px-Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":2000,\"height\":2996},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659303\",\"tid\":\"5138cefb-1608-11ef-a9c5-e3f810772758\",\"timestamp\":\"2024-05-19T17:50:45Z\",\"description\":\"Political and secular governmental activity of the popes of the Roman Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Temporal_power_of_the_Holy_See\",\"edit\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"}},\"extract\":\"The Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\",\"extract_html\":\"\u003cp\u003eThe Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\u003c/p\u003e\",\"normalizedtitle\":\"Temporal power of the Holy See\"}],\"year\":715}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4ea4bf1-68ae-4fea-9a09-2d98488f4055","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.30000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":391.9812,"y":2164.8926,"touch_down_time":146692,"touch_up_time":146783},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f59cbbf6-6d04-49bd-8a37-3407e690ac3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:28.12400000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":149608,"utime":140,"cutime":0,"cstime":0,"stime":66,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f910a0d0-e3c7-4a4f-a3e7-b9dbca382d3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.61400000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":561.9507,"y":1693.9453,"end_x":571.9702,"end_y":862.93945,"direction":"up","touch_down_time":144920,"touch_up_time":145077},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc4f60a5-efdb-42d0-8a15-e80956b23bcc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.60100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"08089591-26d3-460d-9b43-dc6cc16a837b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30792,"java_free_heap":934,"total_pss":106776,"rss":170832,"native_total_heap":50179,"native_free_heap":16380,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0ea7077f-db31-4286-bf7c-eaa483105bc6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.26100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":144730,"end_time":144746,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"23767","content-type":"multipart/form-data; boundary=79cc944f-9b6c-4752-b6ee-5ba96026539b","host":"10.0.2.2:8080","msr-req-id":"fcc3dc9c-d2a8-466e-bb07-977fcc5149d7","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:24 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18c51063-26c5-492c-abcb-6aad0e56e24d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.48400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"208d9064-1182-46ef-a421-e3dabb712028","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2561541b-8988-4caf-a5a8-7a6efd9a5e73","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.96700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":146723,"end_time":147452,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Lyle_Mays_(album)","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:11:26 GMT","etag":"W/\"1208383055/4e9d9e30-0d97-11ef-a217-1363fc1489c7\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Lyle Mays (album)\",\"displaytitle\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19864431\",\"titles\":{\"canonical\":\"Lyle_Mays_(album)\",\"normalized\":\"Lyle Mays (album)\",\"display\":\"\u003ci\u003eLyle Mays\u003c/i\u003e (album)\"},\"pageid\":44437419,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/5/58/Lyle_Mays_-_Lyle_Mays_%281986%29.jpg\",\"width\":300,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1208383055\",\"tid\":\"418dbdf9-cd6d-11ee-a7ec-97fc0569d1ed\",\"timestamp\":\"2024-02-17T08:19:23Z\",\"description\":\"1986 studio album by Lyle Mays\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lyle_Mays_(album)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lyle_Mays_(album)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lyle_Mays_(album)\"}},\"extract\":\"Lyle Mays is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eLyle Mays\u003c/b\u003e\u003c/i\u003e is the first solo album by Pat Metheny Group keyboardist Lyle Mays, self-titled, and released in 1986. The album was recorded at The Power Station in New York in 1985. The album has had re-releases in 1993, 1998, and in digital format in 2010.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"27798f58-31f1-408e-ab31-73b86888b8c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"3304","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"30cf2504-a3ba-46e0-840e-c021fad6e5c5","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":3361,"total_pss":108948,"rss":172572,"native_total_heap":49062,"native_free_heap":17497,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"33ce23c7-de1f-478b-ae83-1b7ec9979e22","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"344d6e55-34e9-42b7-9fdc-9638b3bd9813","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"35b1ab2f-2f6d-43c8-a5b5-79b2605dc076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":146605,"utime":111,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36e67e51-0c88-49d3-8d8a-6539606183d6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:29.94100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.recyclerview.widget.RecyclerView","target_id":"recycler_view","x":396.958,"y":1197.9492,"end_x":416.9641,"end_y":326.9165,"direction":"up","touch_down_time":151290,"touch_up_time":151425},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3a8b0101-32e0-4046-b3da-e811a7540e1d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.32300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg","method":"get","status_code":200,"start_time":145755,"end_time":145807,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19310","content-disposition":"inline;filename*=UTF-8''Sonnets1609titlepage.jpg","content-length":"44367","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:49:35 GMT","etag":"976d014077e958ac26f62083a88f499f","last-modified":"Sun, 03 Apr 2022 16:47:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4037b2ec-6647-472e-865e-08739384566f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45084830-f27d-422b-b5ce-b6390c437ae0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"45e983e2-a6a9-42c3-a63a-604207c0d792","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.12500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_edits","width":216,"height":189,"x":651.9617,"y":2184.8877,"touch_down_time":147516,"touch_up_time":147609},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"48e0d0e6-7f1e-4fdd-8c85-ad0806ae811e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.47800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":411.9873,"y":1954.9072,"end_x":666.958,"end_y":927.9053,"direction":"up","touch_down_time":145815,"touch_up_time":145961},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4c702995-5065-444d-8db1-227202d40d6f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"57cef3ac-173b-4436-86ae-3fa6dd264ae2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.79200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":145224,"end_time":145277,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"37599","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"25094","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:44:44 GMT","etag":"7c5eb8040a600372199b3c917f791b4c","last-modified":"Sat, 22 Jul 2023 21:52:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/739","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"76f343b1-1190-48e9-a20c-028722efe05e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.82400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg","method":"get","status_code":200,"start_time":145225,"end_time":145308,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15515","content-length":"165505","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:52:49 GMT","etag":"0d421a014b2f9cb12b3d3112902d14cf","last-modified":"Tue, 14 May 2024 15:58:12 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/670","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"fleyffrw0thtugy03rr6oagt5zf92r0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7a66cc1d-688e-4da6-9ab1-de5304209cdd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.35300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"86d34600-9ce1-4d01-911a-3481677d4ae7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.66700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145098,"end_time":145151,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"33074","content-disposition":"inline;filename*=UTF-8''2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg","content-length":"34715","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:00:10 GMT","etag":"72689eccf77b9a4635430ac23435d6ce","last-modified":"Sat, 18 May 2024 23:59:10 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/851","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89035565-fd14-4c4f-849f-099911a11032","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":33399,"java_free_heap":2262,"total_pss":109600,"rss":173272,"native_total_heap":49446,"native_free_heap":18137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89eb4c72-cdea-4909-b6f0-23d3cd68899d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.78800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145223,"end_time":145272,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"19088","content-length":"40793","content-type":"image/jpeg","date":"Mon, 20 May 2024 03:53:15 GMT","etag":"08d561a158eaa45e9470407d2bd98017","last-modified":"Tue, 03 Mar 2020 19:04:43 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/423","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8ad5d654-4e8d-4f98-8e02-ed2d571e3c1a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8e41e629-06eb-4e43-b85b-0db97492baa9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8fcb6f54-314b-4d51-8a47-e3c689e20c4b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29634,"java_free_heap":3831,"total_pss":100645,"rss":164756,"native_total_heap":48800,"native_free_heap":16735,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"976bf151-8f67-454f-aa69-acf056792efb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.73200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_search","width":216,"height":189,"x":576.98,"y":2184.8877,"touch_down_time":147156,"touch_up_time":147216},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9afcd26c-937a-4d99-8b92-b920ca8fcacd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.55000000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"main_drawer_settings_container","width":1080,"height":126,"x":255.95947,"y":2089.8926,"touch_down_time":148944,"touch_up_time":149031},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9e0f517b-0d6a-4255-9c31-b8ac3881c633","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.58800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a27cffff-e98d-40ca-9acb-d48714b8dce2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a6bca552-0e1e-4f63-9dbd-4719fa41fdaf","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.15100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a86096ea-4928-4dd4-b103-cd2b3a87ac68","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.67500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145110,"end_time":145160,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10131","content-disposition":"inline;filename*=UTF-8''Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg","content-length":"31671","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:35 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/338","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Ebrahim_Raisi_(19.05.2024)_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b382b009-437b-4431-af2b-793e88c61722","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.75000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4b9e3a3-0e26-4906-89ab-904ab0a0e231","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9260114-51c5-4c4a-835f-b62390779c35","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.10000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":145536,"end_time":145584,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"10159","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/29","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bae9eff0-95ac-4751-b53a-8c5a49ecff88","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.46900000Z","type":"gesture_click","gesture_click":{"target":"android.widget.FrameLayout","target_id":"nav_more_container","width":216,"height":189,"x":917.9407,"y":2184.8877,"touch_down_time":147818,"touch_up_time":147953},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb788b59-466a-4d6d-8071-915ae626d593","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.36400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.readinglist.ReadingListsFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f1"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c4010762-0d16-48d3-822c-8da25c68e4ae","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.47000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.navtab.MenuNavTabDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6a14eff-eb60-4f5c-8826-c7c7eef2de6e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:26.16500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cfd48352-67b1-417a-b908-1eccf33ae235","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149077,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"396","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e0786b5c-f430-4b3b-8344-c8558eebb671","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:31.12000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":152605,"utime":153,"cutime":0,"cstime":0,"stime":71,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1904600-31cf-4d05-bee3-85b0c0a8a071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.61100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.settings.SettingsFragment","parent_activity":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e41c197d-4570-4500-a0bc-385a507802fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.96200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":149076,"end_time":149447,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"391","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","date":"Mon, 20 May 2024 09:11:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ecc7c6c4-705c-4735-a31b-488acb54d1f6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.16300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg","method":"get","status_code":200,"start_time":145987,"end_time":146647,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-length":"62513","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:11:25 GMT","etag":"cd200b92cead13e3b8eff4687092b93d","last-modified":"Mon, 15 Feb 2016 04:10:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"2ux6imbes33e8twkh1v8mfaysuopgec"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f052a880-650f-470e-b02b-17bc16ce652a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.76000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f26d8986-c7a1-4ecb-b7c3-56ef978fb076","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:24.61700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/19","method":"get","status_code":200,"start_time":146002,"end_time":146101,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"212","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"42307","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:07:56 GMT","etag":"W/7282e900-1688-11ef-897c-b7d5bc29e1be","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/5","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"Gento_(song)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q120489529\",\"titles\":{\"canonical\":\"Gento_(song)\",\"normalized\":\"Gento (song)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGento (song)\u003c/span\u003e\"},\"pageid\":74134806,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/f/f0/Gento_by_SB19_cover_art.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224732915\",\"tid\":\"815eac62-165d-11ef-a75d-29f8ae19ee89\",\"timestamp\":\"2024-05-20T04:00:33Z\",\"description\":\"2023 single by SB19\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gento_(song)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gento_(song)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gento_(song)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gento_(song)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gento_(song)\"}},\"extract\":\"\\\"Gento\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), Pagtatag! (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\",\"extract_html\":\"\u003cp\u003e\\\"\u003cb\u003eGento\u003c/b\u003e\\\" is a song recorded by the Filipino boy band SB19 for their second extended play (EP), \u003ci\u003ePagtatag!\u003c/i\u003e (2023). The band's leader, Pablo, wrote the song and co-produced it with Joshua Daniel Nase and Simon Servida. A pop and hip hop track, it is about empowerment and uses gold mining as a metaphor for achieving success, alluding to the band's career. The song was released via Sony Music Philippines on May 19, 2023, as the EP's lead single.\u003c/p\u003e\",\"normalizedtitle\":\"Gento (song)\"},\"mostread\":{\"date\":\"2024-05-18Z\",\"articles\":[{\"views\":313188,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":30689},{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":309787,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":28032},{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":258188,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2084},{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":206582,\"rank\":7,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1072},{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":206318,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12766},{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":180281,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11410},{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":175097,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29959},{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":173476,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":121423},{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":140047,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":7721},{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":124786,\"rank\":14,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":132251},{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":102885,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":16404},{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":101987,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":29319},{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":97373,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":124089},{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":97212,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2414},{\"date\":\"2024-05-15Z\",\"views\":2088},{\"date\":\"2024-05-16Z\",\"views\":1868},{\"date\":\"2024-05-17Z\",\"views\":46339},{\"date\":\"2024-05-18Z\",\"views\":97212}],\"type\":\"standard\",\"title\":\"Kim_Porter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q58772926\",\"titles\":{\"canonical\":\"Kim_Porter\",\"normalized\":\"Kim Porter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKim Porter\u003c/span\u003e\"},\"pageid\":7599520,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224717534\",\"tid\":\"50c028ea-1648-11ef-9b2a-38fddda86f7b\",\"timestamp\":\"2024-05-20T01:28:52Z\",\"description\":\"American actress and model (1970–2018)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kim_Porter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kim_Porter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kim_Porter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kim_Porter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kim_Porter\"}},\"extract\":\"Kimberly Antwinette Porter was an American model, singer, actress, and entrepreneur.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKimberly Antwinette Porter\u003c/b\u003e was an American model, singer, actress, and entrepreneur.\u003c/p\u003e\",\"normalizedtitle\":\"Kim Porter\"},{\"views\":95942,\"rank\":21,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":156592},{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":95170,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":2683},{\"date\":\"2024-05-15Z\",\"views\":2351},{\"date\":\"2024-05-16Z\",\"views\":3917},{\"date\":\"2024-05-17Z\",\"views\":6145},{\"date\":\"2024-05-18Z\",\"views\":95170}],\"type\":\"standard\",\"title\":\"Jai_Opetaia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2029085\",\"titles\":{\"canonical\":\"Jai_Opetaia\",\"normalized\":\"Jai Opetaia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJai Opetaia\u003c/span\u003e\"},\"pageid\":35230292,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544449\",\"tid\":\"3880db33-1578-11ef-b2ce-78e240a7bbda\",\"timestamp\":\"2024-05-19T00:39:16Z\",\"description\":\"Australian boxer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jai_Opetaia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jai_Opetaia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jai_Opetaia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jai_Opetaia\"}},\"extract\":\"Jai Opetaia is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the Ring magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by The Ring magazine, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJai Opetaia\u003c/b\u003e is an Australian professional boxer. He held the International Boxing Federation (IBF) from 2022 until 2023. He currently holds the \u003ci\u003eRing\u003c/i\u003e magazine and lineal cruiserweight titles. As an amateur, he won a bronze medal at the 2012 Youth World Championships and represented Australia at the 2012 Olympics and 2014 Commonwealth Games. As of February 2023, Opetaia is ranked the world's best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, and the Transnational Boxing Rankings Board, second by BoxRec, and third best by ESPN.\u003c/p\u003e\",\"normalizedtitle\":\"Jai Opetaia\"},{\"views\":93552,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":74287},{\"date\":\"2024-05-15Z\",\"views\":26797},{\"date\":\"2024-05-16Z\",\"views\":21715},{\"date\":\"2024-05-17Z\",\"views\":24982},{\"date\":\"2024-05-18Z\",\"views\":93552}],\"type\":\"standard\",\"title\":\"King_and_Queen_of_the_Ring_(2024)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125387335\",\"titles\":{\"canonical\":\"King_and_Queen_of_the_Ring_(2024)\",\"normalized\":\"King and Queen of the Ring (2024)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKing and Queen of the Ring (2024)\u003c/span\u003e\"},\"pageid\":76555552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/e7/King_and_Queen_of_the_Ring_2024_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598234\",\"tid\":\"92a5abe6-15c0-11ef-8ca3-c14dd86f7ea7\",\"timestamp\":\"2024-05-19T09:17:11Z\",\"description\":\"WWE pay-per-view and livestreaming event\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/King_and_Queen_of_the_Ring_(2024)\",\"edit\":\"https://en.m.wikipedia.org/wiki/King_and_Queen_of_the_Ring_(2024)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:King_and_Queen_of_the_Ring_(2024)\"}},\"extract\":\"The 2024 King and Queen of the Ring is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\",\"extract_html\":\"\u003cp\u003eThe 2024 \u003cb\u003eKing and Queen of the Ring\u003c/b\u003e is an upcoming professional wrestling event produced by the American company WWE. It will be the 12th King of the Ring event, but under a new name, and will take place on Saturday, May 25, 2024, at the Jeddah Super Dome in Jeddah, Saudi Arabia. It will air via pay-per-view (PPV) and livestreaming and feature wrestlers from the promotion's Raw and SmackDown brand divisions. The event will host the finals of both the 23rd King of the Ring tournament and the second Queen of the Ring tournament, with the last tournaments for each held in 2021.\u003c/p\u003e\",\"normalizedtitle\":\"King and Queen of the Ring (2024)\"},{\"views\":91009,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":8277},{\"date\":\"2024-05-15Z\",\"views\":7345},{\"date\":\"2024-05-16Z\",\"views\":17391},{\"date\":\"2024-05-17Z\",\"views\":166840},{\"date\":\"2024-05-18Z\",\"views\":91009}],\"type\":\"standard\",\"title\":\"Scottie_Scheffler\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30161386\",\"titles\":{\"canonical\":\"Scottie_Scheffler\",\"normalized\":\"Scottie Scheffler\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eScottie Scheffler\u003c/span\u003e\"},\"pageid\":54256563,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Scottie_Scheffler_2023_01.jpg/320px-Scottie_Scheffler_2023_01.jpg\",\"width\":320,\"height\":416},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/Scottie_Scheffler_2023_01.jpg\",\"width\":2160,\"height\":2810},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708630\",\"tid\":\"bc04f967-163e-11ef-8873-eb723fdd694e\",\"timestamp\":\"2024-05-20T00:20:17Z\",\"description\":\"American professional golfer (born 1996)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Scottie_Scheffler\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Scottie_Scheffler\",\"edit\":\"https://en.m.wikipedia.org/wiki/Scottie_Scheffler?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Scottie_Scheffler\"}},\"extract\":\"Scott Alexander Scheffler is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eScott Alexander Scheffler\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He is currently ranked world number one, first reaching the position in the Official World Golf Ranking in March 2022, and has held that ranking for over 80 weeks. He has won two major championships, both the 2022 and 2024 Masters Tournament. He became the first player to win The Players Championship in back-to-back years in 2023 and 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Scottie Scheffler\"},{\"views\":90587,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":115179},{\"date\":\"2024-05-15Z\",\"views\":69342},{\"date\":\"2024-05-16Z\",\"views\":69593},{\"date\":\"2024-05-17Z\",\"views\":147233},{\"date\":\"2024-05-18Z\",\"views\":90587}],\"type\":\"standard\",\"title\":\"Megalopolis_(film)\",\"displaytitle\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115175910\",\"titles\":{\"canonical\":\"Megalopolis_(film)\",\"normalized\":\"Megalopolis (film)\",\"display\":\"\u003ci\u003eMegalopolis\u003c/i\u003e (film)\"},\"pageid\":68613611,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c2/Megalopolis_film_logo.jpg\",\"width\":300,\"height\":189},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224740437\",\"tid\":\"2b432f30-1668-11ef-a77e-261586f5d22c\",\"timestamp\":\"2024-05-20T05:16:53Z\",\"description\":\"2024 American film by Francis Ford Coppola\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Megalopolis_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Megalopolis_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Megalopolis_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Megalopolis_(film)\"}},\"extract\":\"Megalopolis is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eMegalopolis\u003c/b\u003e\u003c/i\u003e is a 2024 American epic science fiction drama film written, directed, and produced by Francis Ford Coppola. Set in an imagined modern-day New York City following a devastating disaster, the film features an ensemble cast, including Adam Driver, Giancarlo Esposito, Nathalie Emmanuel, Aubrey Plaza, Shia LaBeouf, Jon Voight, Laurence Fishburne, Talia Shire, Jason Schwartzman, Kathryn Hunter, Grace VanderWaal, and Dustin Hoffman.\u003c/p\u003e\",\"normalizedtitle\":\"Megalopolis (film)\"},{\"views\":90539,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35952},{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":88106,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13},{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":83151,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":44092},{\"date\":\"2024-05-15Z\",\"views\":157285},{\"date\":\"2024-05-16Z\",\"views\":211035},{\"date\":\"2024-05-17Z\",\"views\":156773},{\"date\":\"2024-05-18Z\",\"views\":83151}],\"type\":\"standard\",\"title\":\"Harrison_Butker\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29618209\",\"titles\":{\"canonical\":\"Harrison_Butker\",\"normalized\":\"Harrison Butker\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHarrison Butker\u003c/span\u003e\"},\"pageid\":53917703,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg/320px-Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Harrison_Butker_Chiefs_Military_Appreciation_%28cropped%29.jpg\",\"width\":900,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224679064\",\"tid\":\"a717789b-161c-11ef-8882-898100b30e1e\",\"timestamp\":\"2024-05-19T20:16:19Z\",\"description\":\"American football player (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Harrison_Butker\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Harrison_Butker\",\"edit\":\"https://en.m.wikipedia.org/wiki/Harrison_Butker?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Harrison_Butker\"}},\"extract\":\"Harrison Butker Jr. is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHarrison Butker Jr.\u003c/b\u003e is an American football kicker for the Kansas City Chiefs of the National Football League (NFL). He played college football for the Georgia Tech Yellow Jackets, and was selected by the Carolina Panthers in the seventh round of the 2017 NFL draft. He is second in NFL history in career field goal percentage with 89.1. Butker led the NFL in scoring in 2019, and is a three-time Super Bowl champion, having won LIV, LVII and LVIII with the Chiefs.\u003c/p\u003e\",\"normalizedtitle\":\"Harrison Butker\"},{\"views\":80753,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":471},{\"date\":\"2024-05-15Z\",\"views\":780},{\"date\":\"2024-05-16Z\",\"views\":3830},{\"date\":\"2024-05-17Z\",\"views\":15501},{\"date\":\"2024-05-18Z\",\"views\":80753}],\"type\":\"standard\",\"title\":\"Sahith_Theegala\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q96198068\",\"titles\":{\"canonical\":\"Sahith_Theegala\",\"normalized\":\"Sahith Theegala\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSahith Theegala\u003c/span\u003e\"},\"pageid\":64237652,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Sahith-25th.jpg/320px-Sahith-25th.jpg\",\"width\":320,\"height\":347},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9a/Sahith-25th.jpg\",\"width\":2616,\"height\":2840},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224719451\",\"tid\":\"e2c93c81-164a-11ef-a910-3958271375b5\",\"timestamp\":\"2024-05-20T01:47:16Z\",\"description\":\"American professional golfer (born 1997)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sahith_Theegala\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sahith_Theegala\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sahith_Theegala?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sahith_Theegala\"}},\"extract\":\"Sahith Reddy Theegala is an American professional golfer who plays on the PGA Tour.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSahith Reddy Theegala\u003c/b\u003e is an American professional golfer who plays on the PGA Tour.\u003c/p\u003e\",\"normalizedtitle\":\"Sahith Theegala\"},{\"views\":80204,\"rank\":30,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":10365},{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":76764,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":73293},{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":75258,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":66948},{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":74546,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":94182},{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":72976,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":82266},{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":72570,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":178},{\"date\":\"2024-05-15Z\",\"views\":651},{\"date\":\"2024-05-16Z\",\"views\":209},{\"date\":\"2024-05-17Z\",\"views\":194},{\"date\":\"2024-05-18Z\",\"views\":72570}],\"type\":\"standard\",\"title\":\"Josh_Murphy\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15063227\",\"titles\":{\"canonical\":\"Josh_Murphy\",\"normalized\":\"Josh Murphy\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJosh Murphy\u003c/span\u003e\"},\"pageid\":40621885,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Josh_Murphy_%28cropped%29.jpg/320px-Josh_Murphy_%28cropped%29.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1b/Josh_Murphy_%28cropped%29.jpg\",\"width\":1052,\"height\":870},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224621995\",\"tid\":\"803b473e-15e0-11ef-930b-e2333d6c009d\",\"timestamp\":\"2024-05-19T13:05:44Z\",\"description\":\"English footballer (born 1995)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Josh_Murphy\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Josh_Murphy\",\"edit\":\"https://en.m.wikipedia.org/wiki/Josh_Murphy?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Josh_Murphy\"}},\"extract\":\"Joshua Murphy is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJoshua Murphy\u003c/b\u003e is an English professional footballer who plays as a winger for EFL League One club Oxford United. He began his career at Norwich City, for whom he scored on his professional debut for in a League Cup match against Watford, and later played for Cardiff City.\u003c/p\u003e\",\"normalizedtitle\":\"Josh Murphy\"},{\"views\":71013,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11624},{\"date\":\"2024-05-15Z\",\"views\":10961},{\"date\":\"2024-05-16Z\",\"views\":46576},{\"date\":\"2024-05-17Z\",\"views\":76033},{\"date\":\"2024-05-18Z\",\"views\":71013}],\"type\":\"standard\",\"title\":\"List_of_Bridgerton_characters\",\"displaytitle\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114397633\",\"titles\":{\"canonical\":\"List_of_Bridgerton_characters\",\"normalized\":\"List of Bridgerton characters\",\"display\":\"List of \u003ci\u003eBridgerton\u003c/i\u003e characters\"},\"pageid\":70283542,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224201881\",\"tid\":\"5230eb7a-13cb-11ef-a944-139eed651948\",\"timestamp\":\"2024-05-16T21:29:05Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_Bridgerton_characters\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_Bridgerton_characters?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_Bridgerton_characters\"}},\"extract\":\"\\n\\nBridgerton is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's ton during the season, when debutantes are presented at court.\",\"extract_html\":\"\u003cp\u003e\\n\\n\u003ci\u003eBridgerton\u003c/i\u003e is a period drama television series created by Chris Van Dusen and produced by Shondaland for Netflix. It is based on the Regency romance literary series by Julia Quinn set in London's \u003ci\u003eton\u003c/i\u003e during the season, when debutantes are presented at court.\u003c/p\u003e\",\"normalizedtitle\":\"List of Bridgerton characters\"},{\"views\":70938,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":27402},{\"date\":\"2024-05-15Z\",\"views\":30905},{\"date\":\"2024-05-16Z\",\"views\":41972},{\"date\":\"2024-05-17Z\",\"views\":104626},{\"date\":\"2024-05-18Z\",\"views\":70938}],\"type\":\"standard\",\"title\":\"Swati_Maliwal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57163890\",\"titles\":{\"canonical\":\"Swati_Maliwal\",\"normalized\":\"Swati Maliwal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSwati Maliwal\u003c/span\u003e\"},\"pageid\":57188078,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Maliwal.png/320px-Maliwal.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/Maliwal.png\",\"width\":513,\"height\":511},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224599172\",\"tid\":\"f7adc488-15c1-11ef-93f2-7e66d49246dd\",\"timestamp\":\"2024-05-19T09:27:10Z\",\"description\":\"Indian social activist and politician (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Swati_Maliwal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Swati_Maliwal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Swati_Maliwal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Swati_Maliwal\"}},\"extract\":\"Swati Maliwal is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSwati Maliwal\u003c/b\u003e is a social activist and politician. She currently serves as a Member of Parliament in the Rajya Sabha representing Delhi. She participated in the 2011 Indian anti-corruption movement led by social activist Anna Hazare and later, served as the chairperson of the Delhi Commission for Women (DCW) from 2015 to 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Swati Maliwal\"},{\"views\":69610,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":750},{\"date\":\"2024-05-15Z\",\"views\":981},{\"date\":\"2024-05-16Z\",\"views\":2261},{\"date\":\"2024-05-17Z\",\"views\":84090},{\"date\":\"2024-05-18Z\",\"views\":69610}],\"type\":\"standard\",\"title\":\"Jasmine_Crockett\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q101428652\",\"titles\":{\"canonical\":\"Jasmine_Crockett\",\"normalized\":\"Jasmine Crockett\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJasmine Crockett\u003c/span\u003e\"},\"pageid\":65802177,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg/320px-Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/60/Rep._Jasmine_Crockett_-_118th_Congress_%281%29.jpg\",\"width\":2348,\"height\":3116},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725353\",\"tid\":\"0abca4dd-1653-11ef-ad67-d2e1cd85f371\",\"timestamp\":\"2024-05-20T02:45:39Z\",\"description\":\"American attorney and politician (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jasmine_Crockett\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jasmine_Crockett\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jasmine_Crockett?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jasmine_Crockett\"}},\"extract\":\"Jasmine Felicia Crockett is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJasmine Felicia Crockett\u003c/b\u003e is an American lawyer and politician who is the U.S. representative from Texas's 30th congressional district since 2023. Her district covers most of South Dallas County, central Dallas, Dallas Love Field Airport and parts of Tarrant County. A member of the Democratic Party, she previously represented the 100th district in the Texas House of Representatives.\u003c/p\u003e\",\"normalizedtitle\":\"Jasmine Crockett\"},{\"views\":69177,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":35045},{\"date\":\"2024-05-15Z\",\"views\":30855},{\"date\":\"2024-05-16Z\",\"views\":27516},{\"date\":\"2024-05-17Z\",\"views\":46573},{\"date\":\"2024-05-18Z\",\"views\":69177}],\"type\":\"standard\",\"title\":\"Jake_Paul_vs._Mike_Tyson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125101707\",\"titles\":{\"canonical\":\"Jake_Paul_vs._Mike_Tyson\",\"normalized\":\"Jake Paul vs. Mike Tyson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJake Paul vs. Mike Tyson\u003c/span\u003e\"},\"pageid\":76285553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/36/Jake_Paul_vs._Mike_Tyson_fight_poster.jpg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224498961\",\"tid\":\"f6dc3af7-154f-11ef-a055-84eba5f1aaf7\",\"timestamp\":\"2024-05-18T19:51:06Z\",\"description\":\"Upcoming professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jake_Paul_vs._Mike_Tyson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jake_Paul_vs._Mike_Tyson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jake_Paul_vs._Mike_Tyson\"}},\"extract\":\"Jake Paul vs. Mike Tyson is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJake Paul vs. Mike Tyson\u003c/b\u003e is an upcoming professional boxing match between professional boxer Jake Paul and former undisputed heavyweight world champion Mike Tyson. The bout is scheduled to take place on July 20, 2024, at the AT\u0026amp;T Stadium in Arlington, Texas. The event will be streamed globally on Netflix.\u003c/p\u003e\",\"normalizedtitle\":\"Jake Paul vs. Mike Tyson\"},{\"views\":68671,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":12810},{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":66992,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":619},{\"date\":\"2024-05-15Z\",\"views\":665},{\"date\":\"2024-05-16Z\",\"views\":949},{\"date\":\"2024-05-17Z\",\"views\":2300},{\"date\":\"2024-05-18Z\",\"views\":66992}],\"type\":\"standard\",\"title\":\"Anthony_Cacace\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83947153\",\"titles\":{\"canonical\":\"Anthony_Cacace\",\"normalized\":\"Anthony Cacace\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnthony Cacace\u003c/span\u003e\"},\"pageid\":62929955,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224701322\",\"tid\":\"1a2ddd29-1637-11ef-b994-c3e82e574101\",\"timestamp\":\"2024-05-19T23:25:39Z\",\"description\":\"British boxer (born 1989)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anthony_Cacace\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anthony_Cacace\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anthony_Cacace?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anthony_Cacace\"}},\"extract\":\"Anthony Cacace is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAnthony Cacace\u003c/b\u003e is a Northern Irish professional boxer who has held the IBF super-featherweight title since May 2024 and the IBO super-featherweight title since 2022. He held the British super featherweight title from 2019 to 2022.\u003c/p\u003e\",\"normalizedtitle\":\"Anthony Cacace\"},{\"views\":64602,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":49394},{\"date\":\"2024-05-15Z\",\"views\":42503},{\"date\":\"2024-05-16Z\",\"views\":58547},{\"date\":\"2024-05-17Z\",\"views\":113941},{\"date\":\"2024-05-18Z\",\"views\":64602}],\"type\":\"standard\",\"title\":\"Young_Sheldon\",\"displaytitle\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30014613\",\"titles\":{\"canonical\":\"Young_Sheldon\",\"normalized\":\"Young Sheldon\",\"display\":\"\u003ci\u003eYoung Sheldon\u003c/i\u003e\"},\"pageid\":53475669,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/6/68/Young_Sheldon_title_card.png\",\"width\":300,\"height\":168},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618691\",\"tid\":\"4cf6d779-15dc-11ef-be3a-58d7a57d8366\",\"timestamp\":\"2024-05-19T12:35:40Z\",\"description\":\"American television sitcom (2017–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Young_Sheldon\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Young_Sheldon\",\"edit\":\"https://en.m.wikipedia.org/wiki/Young_Sheldon?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Young_Sheldon\"}},\"extract\":\"Young Sheldon is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to The Big Bang Theory that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on The Big Bang Theory, narrates the series and is also an executive producer.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eYoung Sheldon\u003c/b\u003e\u003c/i\u003e is an American coming-of-age sitcom television series created by Chuck Lorre and Steven Molaro that aired on CBS from September 25, 2017, to May 16, 2024. The series is a spin-off prequel to \u003ci\u003eThe Big Bang Theory\u003c/i\u003e that takes place during the late 80s and early 90s and follows child prodigy Sheldon Cooper as he grows up with his family in East Texas. Iain Armitage stars as Sheldon, alongside Zoe Perry, Lance Barber, Montana Jordan, Raegan Revord, and Annie Potts. Jim Parsons, who portrays the adult Sheldon Cooper on \u003ci\u003eThe Big Bang Theory\u003c/i\u003e, narrates the series and is also an executive producer.\u003c/p\u003e\",\"normalizedtitle\":\"Young Sheldon\"},{\"views\":64141,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":11567},{\"date\":\"2024-05-15Z\",\"views\":14244},{\"date\":\"2024-05-16Z\",\"views\":23714},{\"date\":\"2024-05-17Z\",\"views\":86421},{\"date\":\"2024-05-18Z\",\"views\":64141}],\"type\":\"standard\",\"title\":\"Billie_Eilish\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q29564107\",\"titles\":{\"canonical\":\"Billie_Eilish\",\"normalized\":\"Billie Eilish\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBillie Eilish\u003c/span\u003e\"},\"pageid\":53785363,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Billie_Eilish_Vogue_2023.jpg/320px-Billie_Eilish_Vogue_2023.jpg\",\"width\":320,\"height\":470},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/42/Billie_Eilish_Vogue_2023.jpg\",\"width\":461,\"height\":677},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224598409\",\"tid\":\"cf718210-15c0-11ef-8cc1-d49e286fa600\",\"timestamp\":\"2024-05-19T09:18:53Z\",\"description\":\"American singer-songwriter (born 2001)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Billie_Eilish\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Billie_Eilish\",\"edit\":\"https://en.m.wikipedia.org/wiki/Billie_Eilish?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Billie_Eilish\"}},\"extract\":\"Billie Eilish Pirate Baird O'Connell is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), Don't Smile at Me. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBillie Eilish Pirate Baird O'Connell\u003c/b\u003e is an American singer and songwriter. She first gained public attention in 2015 with her debut single \\\"Ocean Eyes\\\", written and produced by her brother Finneas O'Connell, with whom she collaborates on music and live shows. In 2017, she released her debut extended play (EP), \u003ci\u003eDon't Smile at Me\u003c/i\u003e. Commercially successful, it reached the top 15 of record charts in numerous countries, including the US, UK, Canada, and Australia.\u003c/p\u003e\",\"normalizedtitle\":\"Billie Eilish\"},{\"views\":62463,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":787},{\"date\":\"2024-05-15Z\",\"views\":668},{\"date\":\"2024-05-16Z\",\"views\":15035},{\"date\":\"2024-05-17Z\",\"views\":51039},{\"date\":\"2024-05-18Z\",\"views\":62463}],\"type\":\"standard\",\"title\":\"Ty_Olsson\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q552972\",\"titles\":{\"canonical\":\"Ty_Olsson\",\"normalized\":\"Ty Olsson\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTy Olsson\u003c/span\u003e\"},\"pageid\":5512162,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Ty_Olsson.jpg/320px-Ty_Olsson.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Ty_Olsson.jpg\",\"width\":2135,\"height\":3203},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760969\",\"tid\":\"44f355b5-1686-11ef-8358-870a76034846\",\"timestamp\":\"2024-05-20T08:52:21Z\",\"description\":\"Canadian actor (born 1974)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ty_Olsson\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ty_Olsson\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ty_Olsson?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ty_Olsson\"}},\"extract\":\"Ty Victor Olsson is a Canadian actor. He is known for playing Benny Lafitte in Supernatural, real-life 9/11 victim Mark Bingham in the A\u0026E television film Flight 93, and Ord in the PBS Kids animated children's series Dragon Tales.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTy Victor Olsson\u003c/b\u003e is a Canadian actor. He is known for playing Benny Lafitte in \u003ci\u003eSupernatural\u003c/i\u003e, real-life 9/11 victim Mark Bingham in the A\u0026amp;E television film \u003ci\u003eFlight 93\u003c/i\u003e, and Ord in the PBS Kids animated children's series \u003ci\u003eDragon Tales\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Ty Olsson\"},{\"views\":61352,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":99711},{\"date\":\"2024-05-15Z\",\"views\":81344},{\"date\":\"2024-05-16Z\",\"views\":69417},{\"date\":\"2024-05-17Z\",\"views\":59465},{\"date\":\"2024-05-18Z\",\"views\":61352}],\"type\":\"standard\",\"title\":\"Richard_Gadd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q28136502\",\"titles\":{\"canonical\":\"Richard_Gadd\",\"normalized\":\"Richard Gadd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRichard Gadd\u003c/span\u003e\"},\"pageid\":52517837,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696950\",\"tid\":\"6d04a182-1631-11ef-801f-cfcaf3aa595e\",\"timestamp\":\"2024-05-19T22:45:01Z\",\"description\":\"Scottish writer, actor and comedian (born 1989/1990)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Richard_Gadd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Richard_Gadd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Richard_Gadd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Richard_Gadd\"}},\"extract\":\"Richard Craig Steven Gadd is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series Baby Reindeer, based on his one-man show and his real-life experience.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRichard Craig Steven Gadd\u003c/b\u003e is a Scottish writer, actor and comedian. He created and starred in the 2024 Netflix drama series \u003ci\u003eBaby Reindeer\u003c/i\u003e, based on his one-man show and his real-life experience.\u003c/p\u003e\",\"normalizedtitle\":\"Richard Gadd\"},{\"views\":61211,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":1659},{\"date\":\"2024-05-15Z\",\"views\":1781},{\"date\":\"2024-05-16Z\",\"views\":2622},{\"date\":\"2024-05-17Z\",\"views\":4405},{\"date\":\"2024-05-18Z\",\"views\":61211}],\"type\":\"standard\",\"title\":\"Mairis_Briedis\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1101673\",\"titles\":{\"canonical\":\"Mairis_Briedis\",\"normalized\":\"Mairis Briedis\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMairis Briedis\u003c/span\u003e\"},\"pageid\":41168292,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Mairis_Briedis_2018.jpg/320px-Mairis_Briedis_2018.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/da/Mairis_Briedis_2018.jpg\",\"width\":5616,\"height\":3744},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224707864\",\"tid\":\"ed310361-163d-11ef-bd6a-5c31927d892d\",\"timestamp\":\"2024-05-20T00:14:30Z\",\"description\":\"Latvian boxer (born 1985)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mairis_Briedis\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mairis_Briedis\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mairis_Briedis?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mairis_Briedis\"}},\"extract\":\"Mairis Briedis is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and Ring titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by The Ring magazine, BoxRec, and second by the Transnational Boxing Rankings Board.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMairis Briedis \u003c/b\u003e is a Latvian professional boxer. He is a three-time cruiserweight world champion, having held the IBF and \u003cspan\u003e\u003ci\u003eRing\u003c/i\u003e\u003c/span\u003e titles from 2020 to 2022; the WBC title from 2017 to 2018; and the WBO title in 2019. Upon winning the WBC title in 2017, he became the first Latvian to hold a world boxing title. He was awarded the Order of the Three Stars in 2017. As a professional, he has fought world champions Oleksandr Usyk, Marco Huck, Krzysztof Głowacki, Manuel Charr, and Yuniel Dorticos. As of November 2022, he is ranked as the world's third best active cruiserweight by \u003cspan\u003e\u003ci\u003eThe Ring\u003c/i\u003e magazine\u003c/span\u003e, BoxRec, and second by the Transnational Boxing Rankings Board.\u003c/p\u003e\",\"normalizedtitle\":\"Mairis Briedis\"},{\"views\":61183,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":13055},{\"date\":\"2024-05-15Z\",\"views\":16220},{\"date\":\"2024-05-16Z\",\"views\":26544},{\"date\":\"2024-05-17Z\",\"views\":54308},{\"date\":\"2024-05-18Z\",\"views\":61183}],\"type\":\"standard\",\"title\":\"The_Strangers:_Chapter_1\",\"displaytitle\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114073140\",\"titles\":{\"canonical\":\"The_Strangers:_Chapter_1\",\"normalized\":\"The Strangers: Chapter 1\",\"display\":\"\u003ci\u003eThe Strangers: Chapter 1\u003c/i\u003e\"},\"pageid\":71757646,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3f/The_Strangers_Chapter_1_poster.jpg\",\"width\":255,\"height\":378},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761371\",\"tid\":\"e084dfc2-1686-11ef-8a79-5b1f5e041bac\",\"timestamp\":\"2024-05-20T08:56:42Z\",\"description\":\"2024 film by Renny Harlin\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/The_Strangers%3A_Chapter_1\",\"edit\":\"https://en.m.wikipedia.org/wiki/The_Strangers%3A_Chapter_1?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:The_Strangers%3A_Chapter_1\"}},\"extract\":\"The Strangers: Chapter 1 is a 2024 American horror film that is the third film in The Strangers film series and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eThe Strangers: Chapter 1\u003c/b\u003e\u003c/i\u003e is a 2024 American horror film that is the third film in \u003cspan\u003e\u003ci\u003eThe Strangers\u003c/i\u003e film series\u003c/span\u003e and the first installment of an intended relaunch in the form of a standalone trilogy; all based on the original 2008 film. It is directed by Renny Harlin, with a screenplay by Alan R. Cohen and Alan Freedland, from a story by Bryan Bertino. Madelaine Petsch and Froy Gutierrez star as a couple who come into contact with the three psychopathic masked strangers while on a road trip. Gabriel Basso and Ema Horvath also star.\u003c/p\u003e\",\"normalizedtitle\":\"The Strangers: Chapter 1\"},{\"views\":60145,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-14Z\",\"views\":72},{\"date\":\"2024-05-15Z\",\"views\":85},{\"date\":\"2024-05-16Z\",\"views\":78},{\"date\":\"2024-05-17Z\",\"views\":517},{\"date\":\"2024-05-18Z\",\"views\":60145}],\"type\":\"standard\",\"title\":\"George_Rose_(actor)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1480761\",\"titles\":{\"canonical\":\"George_Rose_(actor)\",\"normalized\":\"George Rose (actor)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGeorge Rose (actor)\u003c/span\u003e\"},\"pageid\":5517058,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3e/GeorgeRose.jpg\",\"width\":225,\"height\":265},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224589537\",\"tid\":\"1c029181-15b4-11ef-860f-60a111009a67\",\"timestamp\":\"2024-05-19T07:47:58Z\",\"description\":\"English actor and singer (1920–1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:George_Rose_(actor)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/George_Rose_(actor)\",\"edit\":\"https://en.m.wikipedia.org/wiki/George_Rose_(actor)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:George_Rose_(actor)\"}},\"extract\":\"George Walter Rose was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in My Fair Lady and The Mystery of Edwin Drood.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGeorge Walter Rose\u003c/b\u003e was an English actor and singer in theatre and film. He won the Tony Award for Best Actor in a Musical for roles in \u003ci\u003eMy Fair Lady\u003c/i\u003e and \u003ci\u003eThe Mystery of Edwin Drood\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"George Rose (actor)\"}]},\"image\":{\"title\":\"File:Palacio Belvedere, Viena, Austria, 2020-02-01, DD 93-95 HDR.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg/640px-Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":640,\"height\":282},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/84/Palacio_Belvedere%2C_Viena%2C_Austria%2C_2020-02-01%2C_DD_93-95_HDR.jpg\",\"width\":7785,\"height\":3428},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Palacio_Belvedere,_Viena,_Austria,_2020-02-01,_DD_93-95_HDR.jpg\",\"artist\":{\"html\":\"\u003cbdi\u003e\u003ca href=\\\"https://www.wikidata.org/wiki/Q28147777\\\" class=\\\"extiw\\\" title=\\\"d:Q28147777\\\"\u003e\u003cspan title=\\\"Spanish photographer (1974-)\\\"\u003eDiego Delso\u003c/span\u003e\u003c/a\u003e\\n\u003c/bdi\u003e\",\"text\":\"Diego Delso\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"View of the Upper \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Belvedere,%20Vienna\\\" title=\\\"en:Belvedere, Vienna\\\" class=\\\"extiw\\\"\u003eBelvedere Palace\u003c/a\u003e during the blue hour, \u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Vienna\\\" title=\\\"en:Vienna\\\" class=\\\"extiw\\\"\u003eVienna\u003c/a\u003e, Austria.\",\"text\":\"View of the Upper Belvedere Palace during the blue hour, Vienna, Austria.\",\"lang\":\"en\"},\"wb_entity_id\":\"M93730887\",\"structured\":{\"captions\":{\"en\":\"Belvedere Palace, Vienna, Austria\"}}},\"onthisday\":[{\"text\":\"The wedding of Prince Harry and Meghan Markle (both pictured) took place at St George's Chapel in Windsor Castle, England.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q43890449\",\"titles\":{\"canonical\":\"Wedding_of_Prince_Harry_and_Meghan_Markle\",\"normalized\":\"Wedding of Prince Harry and Meghan Markle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWedding of Prince Harry and Meghan Markle\u003c/span\u003e\"},\"pageid\":55772605,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg/320px-Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Prince_Harry_and_Meghan%E2%80%99s_carriage_procession_through_streets_of_Windsor_04.jpg\",\"width\":829,\"height\":830},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543782\",\"tid\":\"b1cbf944-1577-11ef-9c44-c050daffd9b5\",\"timestamp\":\"2024-05-19T00:35:30Z\",\"description\":\"2018 British royal wedding\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Wedding_of_Prince_Harry_and_Meghan_Markle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Wedding_of_Prince_Harry_and_Meghan_Markle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Wedding_of_Prince_Harry_and_Meghan_Markle\"}},\"extract\":\"The wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\",\"extract_html\":\"\u003cp\u003eThe wedding of Prince Harry and Meghan Markle was held on Saturday 19 May 2018 in St George's Chapel at Windsor Castle in the United Kingdom. The groom is a member of the British royal family; the bride is American and previously worked as an actress, blogger, charity ambassador, and advocate.\u003c/p\u003e\",\"normalizedtitle\":\"Wedding of Prince Harry and Meghan Markle\"},{\"type\":\"standard\",\"title\":\"Prince_Harry,_Duke_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q152316\",\"titles\":{\"canonical\":\"Prince_Harry,_Duke_of_Sussex\",\"normalized\":\"Prince Harry, Duke of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrince Harry, Duke of Sussex\u003c/span\u003e\"},\"pageid\":14457,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg/320px-Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":320,\"height\":476},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0e/Prince_Harry%2C_Duke_of_Sussex_2020_cropped_02.jpg\",\"width\":766,\"height\":1139},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700127\",\"tid\":\"b0f9baa6-1635-11ef-a588-ac19c543074d\",\"timestamp\":\"2024-05-19T23:15:33Z\",\"description\":\"Member of the British royal family (born 1984)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prince_Harry%2C_Duke_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prince_Harry%2C_Duke_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prince_Harry%2C_Duke_of_Sussex\"}},\"extract\":\"Prince Harry, Duke of Sussex, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePrince Harry, Duke of Sussex\u003c/b\u003e, is a member of the British royal family. As the younger son of King Charles III and Diana, Princess of Wales, he is fifth in the line of succession to the British throne.\u003c/p\u003e\",\"normalizedtitle\":\"Prince Harry, Duke of Sussex\"},{\"type\":\"standard\",\"title\":\"Meghan,_Duchess_of_Sussex\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3304418\",\"titles\":{\"canonical\":\"Meghan,_Duchess_of_Sussex\",\"normalized\":\"Meghan, Duchess of Sussex\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMeghan, Duchess of Sussex\u003c/span\u003e\"},\"pageid\":11214029,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg/320px-SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":320,\"height\":414},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/ae/SXSW-2024-OB7A0018-alih-Meghan%2C_Duchess_of_Sussex-crop2-v2.jpg\",\"width\":1125,\"height\":1455},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700330\",\"tid\":\"f74f0064-1635-11ef-888b-c34b778b4454\",\"timestamp\":\"2024-05-19T23:17:31Z\",\"description\":\"Member of the British royal family and former actress (born 1981)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Meghan%2C_Duchess_of_Sussex\",\"edit\":\"https://en.m.wikipedia.org/wiki/Meghan%2C_Duchess_of_Sussex?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Meghan%2C_Duchess_of_Sussex\"}},\"extract\":\"Meghan, Duchess of Sussex is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMeghan, Duchess of Sussex\u003c/b\u003e is an American member of the British royal family and a former actress. She is married to Prince Harry, Duke of Sussex, the younger son of King Charles III.\u003c/p\u003e\",\"normalizedtitle\":\"Meghan, Duchess of Sussex\"},{\"type\":\"standard\",\"title\":\"St_George's_Chapel,_Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2449634\",\"titles\":{\"canonical\":\"St_George's_Chapel,_Windsor_Castle\",\"normalized\":\"St George's Chapel, Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSt George\u0026#039;s Chapel, Windsor Castle\u003c/span\u003e\"},\"pageid\":23910568,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg/320px-St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":320,\"height\":207},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7d/St._Georges_Chapel%2C_Windsor_Castle_%282%29.jpg\",\"width\":5473,\"height\":3537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224544013\",\"tid\":\"df18a7f7-1577-11ef-8b2d-d8013abaa55a\",\"timestamp\":\"2024-05-19T00:36:46Z\",\"description\":\"Royal chapel in Windsor Castle, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48361111,\"lon\":-0.60694444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/St_George's_Chapel%2C_Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/St_George's_Chapel%2C_Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:St_George's_Chapel%2C_Windsor_Castle\"}},\"extract\":\"St George's Chapel at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSt George's Chapel\u003c/b\u003e at Windsor Castle in England is a castle chapel built in the late-medieval Perpendicular Gothic style. It is a Royal Peculiar, and the Chapel of the Order of the Garter. St George's Chapel was founded in the 14th century by King Edward III and extensively enlarged in the late 15th century. It is located in the Lower Ward of the castle.\u003c/p\u003e\",\"normalizedtitle\":\"St George's Chapel, Windsor Castle\"},{\"type\":\"standard\",\"title\":\"Windsor_Castle\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q42646\",\"titles\":{\"canonical\":\"Windsor_Castle\",\"normalized\":\"Windsor Castle\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWindsor Castle\u003c/span\u003e\"},\"pageid\":4689517,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg/320px-Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8f/Windsor_Castle_at_Sunset_-_Nov_2006.jpg\",\"width\":3990,\"height\":2659},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222667833\",\"tid\":\"e8814e48-0c40-11ef-b6d5-e858c3d22445\",\"timestamp\":\"2024-05-07T07:10:39Z\",\"description\":\"Official country residence of British monarch\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.48333333,\"lon\":-0.60416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Windsor_Castle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Windsor_Castle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Windsor_Castle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Windsor_Castle\"}},\"extract\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWindsor Castle\u003c/b\u003e is a royal residence at Windsor in the English county of Berkshire. It is strongly associated with the English and succeeding British royal family, and embodies almost a millennium of architectural history.\u003c/p\u003e\",\"normalizedtitle\":\"Windsor Castle\"}],\"year\":2018},{\"text\":\"A corroded pipeline near Refugio State Beach, California, spilled 142,800 gallons (3,400 barrels) of crude oil onto the Gaviota Coast.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Refugio_State_Beach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7307687\",\"titles\":{\"canonical\":\"Refugio_State_Beach\",\"normalized\":\"Refugio State Beach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio State Beach\u003c/span\u003e\"},\"pageid\":8943321,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Refugio_state_beach_2.jpg/320px-Refugio_state_beach_2.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/31/Refugio_state_beach_2.jpg\",\"width\":4928,\"height\":3264},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155652963\",\"tid\":\"8080cffd-f5f7-11ed-b634-76bd314dbd84\",\"timestamp\":\"2023-05-19T03:44:48Z\",\"description\":\"State beach in Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.46222222,\"lon\":-120.0725},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_State_Beach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_State_Beach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_State_Beach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_State_Beach\"}},\"extract\":\"\\n\\nRefugio State Beach is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\",\"extract_html\":\"\u003cp\u003e\\n\u003cbr /\u003e\\n\u003cb\u003eRefugio State Beach\u003c/b\u003e is a protected state beach park in California, United States, approximately 20 miles (32 km) west of Santa Barbara. One of three state parks along the Gaviota Coast, it is 2.5 miles (4.0 km) west of El Capitán State Beach. During the summer months, the Junior Life Guard program resides at the beach during the day.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio State Beach\"},{\"type\":\"standard\",\"title\":\"Refugio_oil_spill\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19949553\",\"titles\":{\"canonical\":\"Refugio_oil_spill\",\"normalized\":\"Refugio oil spill\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRefugio oil spill\u003c/span\u003e\"},\"pageid\":46752557,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg/320px-Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d3/Refugio_Oil_Spill_in_Santa_Barbara.jpg\",\"width\":640,\"height\":427},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223808546\",\"tid\":\"ab4a239c-11fb-11ef-b78b-23bfbccf1884\",\"timestamp\":\"2024-05-14T14:10:08Z\",\"description\":\"2015 pipeline leak on the coast of California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.4625,\"lon\":-120.08638889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Refugio_oil_spill\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Refugio_oil_spill\",\"edit\":\"https://en.m.wikipedia.org/wiki/Refugio_oil_spill?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Refugio_oil_spill\"}},\"extract\":\"The Refugio oil spill on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRefugio oil spill\u003c/b\u003e on May 19, 2015, contaminated one of the most biologically diverse areas of the West Coast of the United States with 142,800 U.S. gallons of crude oil. The corroded pipeline that caused the spill closed indefinitely, resulting in financial impacts to the county estimated as high as $74 million as it and a related pipeline remained out of service for three years. The cost of the cleanup was estimated by the company to be $96 million with overall expenses including expected legal claims and potential settlements to be around $257 million.\u003c/p\u003e\",\"normalizedtitle\":\"Refugio oil spill\"},{\"type\":\"standard\",\"title\":\"Gaviota_Coast\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104856587\",\"titles\":{\"canonical\":\"Gaviota_Coast\",\"normalized\":\"Gaviota Coast\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGaviota Coast\u003c/span\u003e\"},\"pageid\":65303237,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223891497\",\"tid\":\"2c3310c7-1250-11ef-8a7b-6949b0e83b8b\",\"timestamp\":\"2024-05-15T00:15:02Z\",\"description\":\"Rural area of Santa Barbara County, California\",\"description_source\":\"local\",\"coordinates\":{\"lat\":34.47083333,\"lon\":-120.22472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Gaviota_Coast\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Gaviota_Coast\",\"edit\":\"https://en.m.wikipedia.org/wiki/Gaviota_Coast?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Gaviota_Coast\"}},\"extract\":\"The Gaviota Coast in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eGaviota Coast\u003c/b\u003e in Santa Barbara County, California is a rural coastline along the Santa Barbara Channel roughly bounded by Goleta Point on the south and the north boundary of the county on the north. This last undeveloped stretch of Southern California coastline consists of dramatic bluffs, isolated beaches and terraced grasslands.\u003c/p\u003e\",\"normalizedtitle\":\"Gaviota Coast\"}],\"year\":2015},{\"text\":\"In Bangkok, the Thai military (pictured) concluded a week-long crackdown on widespread protests by forcing the surrender of opposition leaders.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Royal_Thai_Armed_Forces\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q947702\",\"titles\":{\"canonical\":\"Royal_Thai_Armed_Forces\",\"normalized\":\"Royal Thai Armed Forces\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRoyal Thai Armed Forces\u003c/span\u003e\"},\"pageid\":30136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/320px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":320,\"height\":221},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg/435px-Emblem_of_the_Royal_Thai_Armed_Forces_HQ.svg.png\",\"width\":435,\"height\":300},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222282804\",\"tid\":\"f50a8985-0a7f-11ef-af5b-b44a4e859d86\",\"timestamp\":\"2024-05-05T01:36:56Z\",\"description\":\"National military of Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Royal_Thai_Armed_Forces\",\"edit\":\"https://en.m.wikipedia.org/wiki/Royal_Thai_Armed_Forces?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Royal_Thai_Armed_Forces\"}},\"extract\":\"The Royal Thai Armed Forces (RTARF) are the armed forces of the Kingdom of Thailand.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eRoyal Thai Armed Forces\u003c/b\u003e (RTARF) are the armed forces of the Kingdom of Thailand.\u003c/p\u003e\",\"normalizedtitle\":\"Royal Thai Armed Forces\"},{\"type\":\"standard\",\"title\":\"2010_Thai_military_crackdown\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3428188\",\"titles\":{\"canonical\":\"2010_Thai_military_crackdown\",\"normalized\":\"2010 Thai military crackdown\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai military crackdown\u003c/span\u003e\"},\"pageid\":27408756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/2010_Bangkok_unrest_aftermath.jpg/320px-2010_Bangkok_unrest_aftermath.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a3/2010_Bangkok_unrest_aftermath.jpg\",\"width\":1069,\"height\":1600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222537505\",\"tid\":\"343ae1cf-0bb6-11ef-b1fa-515e9d08b245\",\"timestamp\":\"2024-05-06T14:37:46Z\",\"description\":\"Violent state suppression of pro-democracy protests in Bangkok, Thailand (April–May 2010)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_military_crackdown\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_military_crackdown?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_military_crackdown\"}},\"extract\":\"On 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\",\"extract_html\":\"\u003cp\u003eOn 10 April and 13–19 May 2010, the Thai military cracked down on the United Front for Democracy Against Dictatorship (UDD) protests in central Bangkok, the capital of Thailand. The crackdown was the culmination of months of protests that called for the Democrat Party-led government of Abhisit Vejjajiva to dissolve parliament and hold elections. The crackdowns occurred in the vicinity of protest sites near Phan Fa Lilat Bridge and Ratchaprasong intersection. More than 85 were killed, including more than 80 civilians according to the Erawan EMS Center. Two foreigners and two paramedics were killed. More than 2,000 were injured, an undisclosed number of arrests occurred, and 51 protesters remained missing as of 8 June. The Thai media dubbed the crackdowns \\\"Cruel April\\\" and \\\"Savage May\\\". After the protest, its leaders surrendered at the conclusion of the 19 May crackdown, followed by dozens of arson attacks nationwide, including at CentralWorld. Two red shirts who were accused of arson were acquitted later in both courts.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai military crackdown\"},{\"type\":\"standard\",\"title\":\"2010_Thai_political_protests\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1059090\",\"titles\":{\"canonical\":\"2010_Thai_political_protests\",\"normalized\":\"2010 Thai political protests\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2010 Thai political protests\u003c/span\u003e\"},\"pageid\":26906468,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg/320px-UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/UDD_%28Red_Shirt%29_protesters_on_8th_April_2010_near_the_Ratchaprasong_intersection.jpg\",\"width\":500,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222389315\",\"tid\":\"25e6c6be-0b11-11ef-a047-52962ca39323\",\"timestamp\":\"2024-05-05T18:56:15Z\",\"description\":\"2010 pro-democracy protests in Thailand violently suppressed by the military\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2010_Thai_political_protests\",\"edit\":\"https://en.m.wikipedia.org/wiki/2010_Thai_political_protests?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2010_Thai_political_protests\"}},\"extract\":\"The 2010 Thai political protests were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2010 Thai political protests\u003c/b\u003e were a series of political protests that were organised by the United Front for Democracy Against Dictatorship (UDD) in Bangkok, Thailand from 12 March–19 May 2010 against the Democrat Party-led government. The UDD called for Prime Minister Abhisit Vejjajiva to dissolve parliament and hold elections earlier than the end of term elections scheduled in 2012. The UDD demanded that the government stand down, but negotiations to set an election date failed. The protests escalated into prolonged violent confrontations between the protesters and the military, and attempts to negotiate a ceasefire failed. More than 80 civilians and six soldiers were killed, and more than 2,100 injured by the time the military violently put down the protest on 19 May.\u003c/p\u003e\",\"normalizedtitle\":\"2010 Thai political protests\"},{\"type\":\"standard\",\"title\":\"United_Front_for_Democracy_Against_Dictatorship\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1322759\",\"titles\":{\"canonical\":\"United_Front_for_Democracy_Against_Dictatorship\",\"normalized\":\"United Front for Democracy Against Dictatorship\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited Front for Democracy Against Dictatorship\u003c/span\u003e\"},\"pageid\":19107241,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c3/UDD_Crest.png\",\"width\":191,\"height\":191},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192004794\",\"tid\":\"01426aa8-a460-11ee-8e5d-22b37635c7ff\",\"timestamp\":\"2023-12-27T02:31:14Z\",\"description\":\"Pro-democracy political pressure group in Thailand\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_Front_for_Democracy_Against_Dictatorship\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_Front_for_Democracy_Against_Dictatorship?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_Front_for_Democracy_Against_Dictatorship\"}},\"extract\":\"The United Front for Democracy Against Dictatorship (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited Front for Democracy Against Dictatorship\u003c/b\u003e (UDD), whose supporters are commonly called Red Shirts, is a political pressure group opposed to the People's Alliance for Democracy (PAD), the 2006 Thai coup d'état, and supporters of the coup. Notable UDD leaders include Jatuporn Prompan, Nattawut Saikua, Veera Musikapong, Jaran Ditapichai, and Weng Tojirakarn. The UDD allies itself with the Pheu Thai Party, which was deposed by the 2014 military coup. Before the July 2011 national elections, the UDD claimed that Abhisit Vejjajiva's government took power illegitimately, backed by the Thai Army and the judiciary. The UDD called for the Thai Parliament to be dissolved so that a general election could be held. UDD accused the country's extra-democratic elite—the military, judiciary, certain members of the privy council, and other unelected officials—of undermining democracy by interfering in politics. The UDD is composed of mostly rural citizens from northeast (Isan) and north Thailand, of urban lower classes from Bangkok, and of intellectuals. Although the movement seems to receive support from former prime minister-in-exile Thaksin Shinawatra, not all UDD members support the deposed prime minister.\u003c/p\u003e\",\"normalizedtitle\":\"United Front for Democracy Against Dictatorship\"}],\"year\":2010},{\"text\":\"The Sierra Gorda Biosphere, which encompasses the most ecologically diverse region in Mexico, was established as a result of grassroots efforts.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Sierra_Gorda\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3292893\",\"titles\":{\"canonical\":\"Sierra_Gorda\",\"normalized\":\"Sierra Gorda\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSierra Gorda\u003c/span\u003e\"},\"pageid\":4336092,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/8/85/SierraGordaWaterfall.JPG/320px-SierraGordaWaterfall.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/8/85/SierraGordaWaterfall.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1188237276\",\"tid\":\"122fec7d-9257-11ee-a201-8adbf99575c9\",\"timestamp\":\"2023-12-04T03:41:56Z\",\"description\":\"Ecoregion in the Mexican states of Querétaro, Guanajuato, Hidalgo, and San Luis Potosí\",\"description_source\":\"local\",\"coordinates\":{\"lat\":21.31083333,\"lon\":-99.66805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sierra_Gorda\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sierra_Gorda\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sierra_Gorda?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sierra_Gorda\"}},\"extract\":\"The Sierra Gorda is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km2 of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSierra Gorda\u003c/b\u003e is an ecological region centered on the northern third of the Mexican state of Querétaro and extending into the neighboring states of Guanajuato, Hidalgo and San Luis Potosí. Within Querétaro, the ecosystem extends from the center of the state starting in parts of San Joaquín and Cadereyta de Montes municipalities and covering all of the municipalities of Peñamiller, Pinal de Amoles, Jalpan de Serra, Landa de Matamoros and Arroyo Seco, for a total of 250 km\u003csup\u003e2\u003c/sup\u003e of territory. The area is extremely rugged with high steep mountains and deep canyons. As part of the Huasteca Karst, it also contains many formations due to erosion of limestone, especially pit caves known locally as sótanos. The area is valued for its very wide diversity of plant and animal life, which is due to the various microenvironments created by the ruggedness of the terrain and wide variation in rainfall. This is due to the mountains’ blocking of moisture coming in from the Gulf of Mexico, which generally makes the east side fairly moist and the west semiarid scrub brush. Most of the region is protected in two biosphere reserves, with the one centered in Querétaro established in 1997 and the one centered in Guanajuato established in 2007. The Sierra Gorda is considered to be the far west of the La Huasteca region culturally and it is home to the Franciscan Missions in the Sierra Gorda of Querétaro World Heritage Site. Sierra Gorda has become the first National Park in Mexico to join the EarthCheck Sustainable Destinations program.\u003c/p\u003e\",\"normalizedtitle\":\"Sierra Gorda\"},{\"type\":\"standard\",\"title\":\"Ecosystem_diversity\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q842388\",\"titles\":{\"canonical\":\"Ecosystem_diversity\",\"normalized\":\"Ecosystem diversity\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEcosystem diversity\u003c/span\u003e\"},\"pageid\":524396,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/BlueMarble-2001-2002.jpg/320px-BlueMarble-2001-2002.jpg\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/1c/BlueMarble-2001-2002.jpg\",\"width\":4096,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215311327\",\"tid\":\"0f552812-e9c9-11ee-84bc-8f2eca1e47cb\",\"timestamp\":\"2024-03-24T10:27:05Z\",\"description\":\"Diversity and variations in ecosystems\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ecosystem_diversity\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ecosystem_diversity\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ecosystem_diversity?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ecosystem_diversity\"}},\"extract\":\"Ecosystem diversity deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEcosystem diversity\u003c/b\u003e deals with the variations in ecosystems within a geographical location and its overall impact on human existence and the environment.\u003c/p\u003e\",\"normalizedtitle\":\"Ecosystem diversity\"},{\"type\":\"standard\",\"title\":\"Grassroots\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929651\",\"titles\":{\"canonical\":\"Grassroots\",\"normalized\":\"Grassroots\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGrassroots\u003c/span\u003e\"},\"pageid\":451914,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222480667\",\"tid\":\"029c3ce0-0b6a-11ef-b302-3e10943cc4cf\",\"timestamp\":\"2024-05-06T05:32:21Z\",\"description\":\"Movement based on local communities\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.wikipedia.org/wiki/Grassroots?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Grassroots\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Grassroots\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Grassroots\",\"edit\":\"https://en.m.wikipedia.org/wiki/Grassroots?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Grassroots\"}},\"extract\":\"A grassroots movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003egrassroots\u003c/b\u003e movement is one that uses the people in a given district, region or community as the basis for a political or economic movement. Grassroots movements and organizations use collective action from the local level to implement change at the local, regional, national, or international levels. Grassroots movements are associated with bottom-up, rather than top-down decision-making, and are sometimes considered more natural or spontaneous than more traditional power structures.\u003c/p\u003e\",\"normalizedtitle\":\"Grassroots\"}],\"year\":1997},{\"text\":\"Breakup of Yugoslavia: With the local Serb population boycotting the referendum, Croatians voted in favour of independence from Yugoslavia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Breakup_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4390259\",\"titles\":{\"canonical\":\"Breakup_of_Yugoslavia\",\"normalized\":\"Breakup of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBreakup of Yugoslavia\u003c/span\u003e\"},\"pageid\":2060900,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Breakup_of_Yugoslavia.gif/320px-Breakup_of_Yugoslavia.gif\",\"width\":320,\"height\":257},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Breakup_of_Yugoslavia.gif\",\"width\":1545,\"height\":1242},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387764\",\"tid\":\"39a2fcc6-14c1-11ef-b1f8-1bcb892b5cfa\",\"timestamp\":\"2024-05-18T02:49:20Z\",\"description\":\"1991–92 Balkan political conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Breakup_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Breakup_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Breakup_of_Yugoslavia\"}},\"extract\":\"After a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\",\"extract_html\":\"\u003cp\u003eAfter a period of political and economic crisis in the 1980s, the constituent republics of the Socialist Federal Republic of Yugoslavia split apart, but the unresolved issues caused a series of inter-ethnic Yugoslav Wars. The wars primarily affected Bosnia and Herzegovina, neighbouring parts of Croatia and, some years later, Kosovo.\u003c/p\u003e\",\"normalizedtitle\":\"Breakup of Yugoslavia\"},{\"type\":\"standard\",\"title\":\"Serbs_of_Croatia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1280677\",\"titles\":{\"canonical\":\"Serbs_of_Croatia\",\"normalized\":\"Serbs of Croatia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSerbs of Croatia\u003c/span\u003e\"},\"pageid\":3690204,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/320px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Serbian_national_minority_in_Croatia.svg/1200px-Flag_of_Serbian_national_minority_in_Croatia.svg.png\",\"width\":1200,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388423\",\"tid\":\"d82f60ff-14c1-11ef-b39c-0dcebd917f73\",\"timestamp\":\"2024-05-18T02:53:46Z\",\"description\":\"National minority in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Serbs_of_Croatia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Serbs_of_Croatia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Serbs_of_Croatia\"}},\"extract\":\"The Serbs of Croatia or Croatian Serbs constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSerbs of Croatia\u003c/b\u003e or \u003cb\u003eCroatian Serbs\u003c/b\u003e constitute the largest national minority in Croatia. The community is predominantly Eastern Orthodox Christian by religion, as opposed to the Croats who are Catholic.\u003c/p\u003e\",\"normalizedtitle\":\"Serbs of Croatia\"},{\"type\":\"standard\",\"title\":\"1991_Croatian_independence_referendum\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3085493\",\"titles\":{\"canonical\":\"1991_Croatian_independence_referendum\",\"normalized\":\"1991 Croatian independence referendum\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e1991 Croatian independence referendum\u003c/span\u003e\"},\"pageid\":11781428,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223346108\",\"tid\":\"befa4b5a-0fa1-11ef-a572-15b6c106e2e6\",\"timestamp\":\"2024-05-11T14:21:24Z\",\"description\":\"1991 vote in Croatia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/1991_Croatian_independence_referendum\",\"edit\":\"https://en.m.wikipedia.org/wiki/1991_Croatian_independence_referendum?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:1991_Croatian_independence_referendum\"}},\"extract\":\"Croatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\",\"extract_html\":\"\u003cp\u003eCroatia held an independence referendum on 19 May 1991, following the Croatian parliamentary elections of 1990 and the rise of ethnic tensions that led to the breakup of Yugoslavia. With 83 percent turnout, voters approved the referendum, with 93 percent in favor of independence. Subsequently, Croatia declared independence and the dissolution of its association with Yugoslavia on 25 June 1991, but it introduced a three-month moratorium on the decision when urged to do so by the European Community and the Conference on Security and Cooperation in Europe through the Brioni Agreement. The war in Croatia escalated during the moratorium, and on 8 October 1991, the Croatian Parliament severed all remaining ties with Yugoslavia. In 1992, the countries of the European Economic Community granted Croatia diplomatic recognition and Croatia was admitted to the United Nations.\u003c/p\u003e\",\"normalizedtitle\":\"1991 Croatian independence referendum\"},{\"type\":\"standard\",\"title\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83286\",\"titles\":{\"canonical\":\"Socialist_Federal_Republic_of_Yugoslavia\",\"normalized\":\"Socialist Federal Republic of Yugoslavia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSocialist Federal Republic of Yugoslavia\u003c/span\u003e\"},\"pageid\":297809,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/320px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Flag_of_Yugoslavia_%281946-1992%29.svg/1000px-Flag_of_Yugoslavia_%281946-1992%29.svg.png\",\"width\":1000,\"height\":500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224486458\",\"tid\":\"4c12579a-1544-11ef-ade1-e44966f423b1\",\"timestamp\":\"2024-05-18T18:27:35Z\",\"description\":\"European socialist state (1945–1992)\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.82,\"lon\":20.4275},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Socialist_Federal_Republic_of_Yugoslavia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Socialist_Federal_Republic_of_Yugoslavia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Socialist_Federal_Republic_of_Yugoslavia\"}},\"extract\":\"The Socialist Federal Republic of Yugoslavia (SFRY), commonly referred to as SFR Yugoslavia or Socialist Yugoslavia or simply as Yugoslavia, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSocialist Federal Republic of Yugoslavia\u003c/b\u003e (\u003cb\u003eSFRY\u003c/b\u003e), commonly referred to as \u003cb\u003eSFR Yugoslavia\u003c/b\u003e or \u003cb\u003eSocialist Yugoslavia\u003c/b\u003e or simply as \u003cb\u003eYugoslavia\u003c/b\u003e, was a country in Central and Southeast Europe. It emerged in 1945, following World War II, and lasted until 1992, breaking up as a consequence of the Yugoslav Wars. Spanning an area of 255,804 square kilometres (98,766 sq mi) in the Balkans, Yugoslavia was bordered by the Adriatic Sea and Italy to the west, Austria and Hungary to the north, Bulgaria and Romania to the east, and Albania and Greece to the south. It was a one-party socialist state and federation governed by the League of Communists of Yugoslavia, and had six constituent republics: Bosnia and Herzegovina, Croatia, Macedonia, Montenegro, Serbia, and Slovenia. Within Serbia was the Yugoslav capital city of Belgrade as well as two autonomous Yugoslav provinces: Kosovo and Vojvodina.\u003c/p\u003e\",\"normalizedtitle\":\"Socialist Federal Republic of Yugoslavia\"}],\"year\":1991},{\"text\":\"First World War: Australian and New Zealand troops repelled the third attack on Anzac Cove, inflicting heavy casualties on the attacking Ottoman forces.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_I\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q361\",\"titles\":{\"canonical\":\"World_War_I\",\"normalized\":\"World War I\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War I\u003c/span\u003e\"},\"pageid\":4764461,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Bataille_de_Verdun_1916.jpg/320px-Bataille_de_Verdun_1916.jpg\",\"width\":320,\"height\":239},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e6/Bataille_de_Verdun_1916.jpg\",\"width\":1875,\"height\":1402},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224566277\",\"tid\":\"f532626a-158f-11ef-9e62-50b2f0e3b3e6\",\"timestamp\":\"2024-05-19T03:29:11Z\",\"description\":\"1914–1918 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_I?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_I\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_I\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_I\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_I?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_I\"}},\"extract\":\"World War I or the First World War was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War I\u003c/b\u003e or the \u003cb\u003eFirst World War\u003c/b\u003e was a global conflict between two coalitions: the Allies and the Central Powers. Fighting took place throughout Europe, the Middle East, Africa, the Pacific, and parts of Asia. One of the deadliest wars in history, it resulted in an estimated 9 million soldiers dead and 23 million wounded, plus up to 8 million civilian deaths from numerous causes including genocide. The movement of large numbers of troops and civilians during the war was a major factor in spreading the 1918 Spanish flu pandemic.\u003c/p\u003e\",\"normalizedtitle\":\"World War I\"},{\"type\":\"standard\",\"title\":\"Third_attack_on_Anzac_Cove\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q16901576\",\"titles\":{\"canonical\":\"Third_attack_on_Anzac_Cove\",\"normalized\":\"Third attack on Anzac Cove\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThird attack on Anzac Cove\u003c/span\u003e\"},\"pageid\":38768440,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Assault_of_Ottoman_soldiers.jpg/320px-Assault_of_Ottoman_soldiers.jpg\",\"width\":320,\"height\":215},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Assault_of_Ottoman_soldiers.jpg\",\"width\":902,\"height\":606},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224661294\",\"tid\":\"f6a084d5-1609-11ef-81b3-d50e38e865bd\",\"timestamp\":\"2024-05-19T18:02:32Z\",\"description\":\"Battle in 1915 during the First World War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":40.24,\"lon\":26.2925},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Third_attack_on_Anzac_Cove\",\"edit\":\"https://en.m.wikipedia.org/wiki/Third_attack_on_Anzac_Cove?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Third_attack_on_Anzac_Cove\"}},\"extract\":\"The third attack on Anzac Cove was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ethird attack on Anzac Cove\u003c/b\u003e was an engagement during the Gallipoli Campaign of the First World War. The attack was conducted by the forces of the Ottoman Turkish Empire, against the forces of the British Empire defending the cove.\u003c/p\u003e\",\"normalizedtitle\":\"Third attack on Anzac Cove\"}],\"year\":1915},{\"text\":\"Parks Canada, the world's first national park service, was established as the Dominion Parks Branch under the Department of the Interior.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Parks_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q349487\",\"titles\":{\"canonical\":\"Parks_Canada\",\"normalized\":\"Parks Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParks Canada\u003c/span\u003e\"},\"pageid\":507952,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/320px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Parks_Canada_logo_%282023%29.svg/365px-Parks_Canada_logo_%282023%29.svg.png\",\"width\":365,\"height\":274},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1216238762\",\"tid\":\"8ac738e9-ee18-11ee-927b-73fd7cbd402d\",\"timestamp\":\"2024-03-29T22:06:07Z\",\"description\":\"Government agency\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Parks_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Parks_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Parks_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Parks_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Parks_Canada\"}},\"extract\":\"Parks Canada, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eParks Canada\u003c/b\u003e, is the agency of the Government of Canada which manages the country's 48 National Parks, three National Marine Conservation Areas, 172 National Historic Sites, one National Urban Park, and one National Landmark. Parks Canada is mandated to \\\"protect and present nationally significant examples of Canada's natural and cultural heritage, and foster public understanding, appreciation, and enjoyment in ways that ensure their ecological and commemorative integrity for present and future generations\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Parks Canada\"},{\"type\":\"standard\",\"title\":\"National_park\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q46169\",\"titles\":{\"canonical\":\"National_park\",\"normalized\":\"National park\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational park\u003c/span\u003e\"},\"pageid\":21818,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg/320px-Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/96/Bogdkhan_Uul_Strictly_Protected_Area%2C_Mongolia_%28149199747%29.jpg\",\"width\":3088,\"height\":2048},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224275986\",\"tid\":\"a4a8f48d-1439-11ef-943e-24b47b125f5c\",\"timestamp\":\"2024-05-17T10:38:48Z\",\"description\":\"Park for conservation of nature and usually also for visitors\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.wikipedia.org/wiki/National_park?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_park\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_park\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_park\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_park?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_park\"}},\"extract\":\"A national park is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003enational park\u003c/b\u003e is a natural park in use for conservation purposes, created and protected by national governments. Often it is a reserve of natural, semi-natural, or developed land that a government declares or owns. Although individual countries designate their own national parks differently, there is a common idea: the conservation of 'wild nature' for posterity and as a symbol of national pride. National parks are almost always open to visitors.\u003c/p\u003e\",\"normalizedtitle\":\"National park\"},{\"type\":\"standard\",\"title\":\"Environment_and_Climate_Change_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q348789\",\"titles\":{\"canonical\":\"Environment_and_Climate_Change_Canada\",\"normalized\":\"Environment and Climate Change Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEnvironment and Climate Change Canada\u003c/span\u003e\"},\"pageid\":272329,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1213022671\",\"tid\":\"c274572d-df0e-11ee-a19d-dad574c6fe55\",\"timestamp\":\"2024-03-10T18:48:18Z\",\"description\":\"Canadian federal government department\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Environment_and_Climate_Change_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Environment_and_Climate_Change_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Environment_and_Climate_Change_Canada\"}},\"extract\":\"Environment and Climate Change Canada is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, Environment Canada.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEnvironment and Climate Change Canada\u003c/b\u003e is the department of the Government of Canada responsible for coordinating environmental policies and programs, as well as preserving and enhancing the natural environment and renewable resources. It is also colloquially known by its former name, \u003cb\u003eEnvironment Canada\u003c/b\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Environment and Climate Change Canada\"}],\"year\":1911},{\"text\":\"Captain John Franklin (pictured) departed Greenhithe, England, on an expedition to the Canadian Arctic in search of the Northwest Passage; all 129 men were later lost when their ships became icebound in Victoria Strait.\",\"pages\":[{\"type\":\"standard\",\"title\":\"John_Franklin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2655\",\"titles\":{\"canonical\":\"John_Franklin\",\"normalized\":\"John Franklin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohn Franklin\u003c/span\u003e\"},\"pageid\":330305,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg/320px-Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":320,\"height\":382},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b1/Sir_John_Franklin_by_Thomas_Phillips.jpg\",\"width\":2400,\"height\":2863},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221759362\",\"tid\":\"4b1ac3b9-07fb-11ef-936f-56ddbcd74120\",\"timestamp\":\"2024-05-01T20:42:15Z\",\"description\":\"British naval officer and explorer (1786–1847)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.wikipedia.org/wiki/John_Franklin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:John_Franklin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/John_Franklin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/John_Franklin\",\"edit\":\"https://en.m.wikipedia.org/wiki/John_Franklin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:John_Franklin\"}},\"extract\":\"Sir John Franklin was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSir John Franklin\u003c/b\u003e \u003csmall\u003e\u003c/small\u003e was a British Royal Navy officer and Arctic explorer. After serving in wars against Napoleonic France and the United States, he led two expeditions into the Canadian Arctic and through the islands of the Arctic Archipelago, in 1819 and 1825, and served as Lieutenant-Governor of Van Diemen's Land from 1839 to 1843. During his third and final expedition, an attempt to traverse the Northwest Passage in 1845, Franklin's ships became icebound off King William Island in what is now Nunavut, where he died in June 1847. The icebound ships were abandoned ten months later and the entire crew died from causes such as starvation, hypothermia, and scurvy.\u003c/p\u003e\",\"normalizedtitle\":\"John Franklin\"},{\"type\":\"standard\",\"title\":\"Greenhithe,_Kent\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3028239\",\"titles\":{\"canonical\":\"Greenhithe,_Kent\",\"normalized\":\"Greenhithe, Kent\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eGreenhithe, Kent\u003c/span\u003e\"},\"pageid\":1057585,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/GreenhitheIngressPark5342.JPG/320px-GreenhitheIngressPark5342.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5d/GreenhitheIngressPark5342.JPG\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1190989678\",\"tid\":\"e0758296-9f8f-11ee-b240-395c3531fe37\",\"timestamp\":\"2023-12-20T23:31:19Z\",\"description\":\"Village in the Borough of Dartford, Kent, England\",\"description_source\":\"local\",\"coordinates\":{\"lat\":51.4504,\"lon\":0.2823},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Greenhithe%2C_Kent\",\"edit\":\"https://en.m.wikipedia.org/wiki/Greenhithe%2C_Kent?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Greenhithe%2C_Kent\"}},\"extract\":\"Greenhithe is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eGreenhithe\u003c/b\u003e is a village in the Borough of Dartford in Kent, England, and the civil parish of Swanscombe and Greenhithe. It is located 4 miles east of Dartford and 5 miles west of Gravesend.\u003c/p\u003e\",\"normalizedtitle\":\"Greenhithe, Kent\"},{\"type\":\"standard\",\"title\":\"Franklin's_lost_expedition\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2305\",\"titles\":{\"canonical\":\"Franklin's_lost_expedition\",\"normalized\":\"Franklin's lost expedition\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eFranklin\u0026#039;s lost expedition\u003c/span\u003e\"},\"pageid\":15746136,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Franklin%27s-Lost-Expedition.png/320px-Franklin%27s-Lost-Expedition.png\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/05/Franklin%27s-Lost-Expedition.png\",\"width\":1024,\"height\":768},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224387825\",\"tid\":\"46bfef98-14c1-11ef-b36c-b14d135d5e7d\",\"timestamp\":\"2024-05-18T02:49:42Z\",\"description\":\"British expedition of Arctic exploration\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Franklin's_lost_expedition\",\"edit\":\"https://en.m.wikipedia.org/wiki/Franklin's_lost_expedition?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Franklin's_lost_expedition\"}},\"extract\":\"Franklin's lost expedition was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, HMS Erebus and HMS Terror, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year Erebus and Terror were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and Erebus's captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eFranklin's lost expedition\u003c/b\u003e was a failed British voyage of Arctic exploration led by Captain Sir John Franklin that departed England in 1845 aboard two ships, \u003cspan\u003eHMS \u003ci\u003eErebus\u003c/i\u003e\u003c/span\u003e and \u003cspan\u003eHMS \u003ci\u003eTerror\u003c/i\u003e\u003c/span\u003e, and was assigned to traverse the last unnavigated sections of the Northwest Passage in the Canadian Arctic and to record magnetic data to help determine whether a better understanding could aid navigation. The expedition met with disaster after both ships and their crews, a total of 129 officers and men, became icebound in Victoria Strait near King William Island in what is today the Canadian territory of Nunavut. After being icebound for more than a year \u003ci\u003eErebus\u003c/i\u003e and \u003ci\u003eTerror\u003c/i\u003e were abandoned in April 1848, by which point two dozen men, including Franklin, had died. The survivors, now led by Franklin's second-in-command, Francis Crozier, and \u003ci\u003eErebus\u003c/i\u003e\u003cspan class=\\\"nowrap\\\"\u003e'\u003c/span\u003es captain, James Fitzjames, set out for the Canadian mainland and disappeared, presumably having perished.\u003c/p\u003e\",\"normalizedtitle\":\"Franklin's lost expedition\"},{\"type\":\"standard\",\"title\":\"Northern_Canada\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q764146\",\"titles\":{\"canonical\":\"Northern_Canada\",\"normalized\":\"Northern Canada\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthern Canada\u003c/span\u003e\"},\"pageid\":79987,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Whitehorse_Yukon.JPG/320px-Whitehorse_Yukon.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5e/Whitehorse_Yukon.JPG\",\"width\":640,\"height\":480},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221583793\",\"tid\":\"9fee06a3-0729-11ef-b35c-25ac1f2c2135\",\"timestamp\":\"2024-04-30T19:41:23Z\",\"description\":\"Region of Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":65.82,\"lon\":-107.08},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northern_Canada\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northern_Canada\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northern_Canada\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northern_Canada?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northern_Canada\"}},\"extract\":\"Northern Canada, colloquially the North or the Territories, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthern Canada\u003c/b\u003e, colloquially \u003cb\u003ethe North\u003c/b\u003e or \u003cb\u003ethe Territories\u003c/b\u003e, is the vast northernmost region of Canada, variously defined by geography and politics. Politically, the term refers to the three territories of Canada: Yukon, Northwest Territories and Nunavut. This area covers about 48 per cent of Canada's total land area, but has less than 0.5 per cent of Canada's population.\u003c/p\u003e\",\"normalizedtitle\":\"Northern Canada\"},{\"type\":\"standard\",\"title\":\"Northwest_Passage\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q81136\",\"titles\":{\"canonical\":\"Northwest_Passage\",\"normalized\":\"Northwest Passage\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthwest Passage\u003c/span\u003e\"},\"pageid\":21215,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg/320px-2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a9/2007_Envisat_mosaic_of_Arctic_Ocean_ESA210015.jpg\",\"width\":2700,\"height\":2700},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224392011\",\"tid\":\"5130bb64-14c6-11ef-b2de-9a464bc509a6\",\"timestamp\":\"2024-05-18T03:25:47Z\",\"description\":\"Sea route north of North America\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northwest_Passage\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northwest_Passage\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northwest_Passage?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northwest_Passage\"}},\"extract\":\"The Northwest Passage (NWP) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the Northwest Passages, Northwestern Passages or the Canadian Internal Waters.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNorthwest Passage\u003c/b\u003e (\u003cb\u003eNWP\u003c/b\u003e) is the sea lane between the Atlantic and Pacific oceans through the Arctic Ocean, along the northern coast of North America via waterways through the Arctic Archipelago of Canada. The eastern route along the Arctic coasts of Norway and Siberia is accordingly called the Northeast Passage (NEP). \\nThe various islands of the archipelago are separated from one another and from Mainland Canada by a series of Arctic waterways collectively known as the \u003cb\u003eNorthwest Passages\u003c/b\u003e, \u003cb\u003eNorthwestern Passages\u003c/b\u003e or the Canadian Internal Waters.\u003c/p\u003e\",\"normalizedtitle\":\"Northwest Passage\"},{\"type\":\"standard\",\"title\":\"Victoria_Strait\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q601548\",\"titles\":{\"canonical\":\"Victoria_Strait\",\"normalized\":\"Victoria Strait\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVictoria Strait\u003c/span\u003e\"},\"pageid\":7746699,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Wfm_victoria_island.jpg/320px-Wfm_victoria_island.jpg\",\"width\":320,\"height\":237},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Wfm_victoria_island.jpg\",\"width\":1280,\"height\":948},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1155669815\",\"tid\":\"43bdcc9b-f609-11ed-b5a1-2cc997448104\",\"timestamp\":\"2023-05-19T05:51:57Z\",\"description\":\"Strait in Nunavut, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":69.5,\"lon\":-100.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Victoria_Strait\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Victoria_Strait\",\"edit\":\"https://en.m.wikipedia.org/wiki/Victoria_Strait?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Victoria_Strait\"}},\"extract\":\"Victoria Strait is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVictoria Strait\u003c/b\u003e is a strait in northern Canada that lies in Nunavut off the mainland in the Arctic Ocean. It is between Victoria Island to the west and King William Island to the east. From the north, the strait links the M'Clintock Channel and the Larsen Sound with the Queen Maud Gulf to the south. The strait is about 160 km (100 mi) long and anywhere from 80 to 130 km wide.\u003c/p\u003e\",\"normalizedtitle\":\"Victoria Strait\"}],\"year\":1845},{\"text\":\"The United States Congress passed the largest tariff in the nation's history, which resulted in severe economic hardship in the American South.\",\"pages\":[{\"type\":\"standard\",\"title\":\"United_States_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11268\",\"titles\":{\"canonical\":\"United_States_Congress\",\"normalized\":\"United States Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUnited States Congress\u003c/span\u003e\"},\"pageid\":31756,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/320px-Seal_of_the_United_States_Congress.svg.png\",\"width\":320,\"height\":319},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Seal_of_the_United_States_Congress.svg/1055px-Seal_of_the_United_States_Congress.svg.png\",\"width\":1055,\"height\":1052},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224543713\",\"tid\":\"9e20913a-1577-11ef-bd9f-d8c767cc668f\",\"timestamp\":\"2024-05-19T00:34:57Z\",\"description\":\"Legislative branch of U.S. government\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.88972222,\"lon\":-77.00888889},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:United_States_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/United_States_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/United_States_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/United_States_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:United_States_Congress\"}},\"extract\":\"The United States Congress is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eUnited States Congress\u003c/b\u003e is the legislature of the federal government of the United States. It is bicameral, composed of a lower body, the House of Representatives, and an upper body, the Senate. It meets in the U.S. Capitol in Washington, D.C. Senators and representatives are chosen through direct election, though vacancies in the Senate may be filled by a governor's appointment. Congress has 535 voting members: 100 senators and 435 representatives. The U.S. vice president has a vote in the Senate only when senators are evenly divided. The House of Representatives has six non-voting members.\u003c/p\u003e\",\"normalizedtitle\":\"United States Congress\"},{\"type\":\"standard\",\"title\":\"Tariff_of_Abominations\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7686034\",\"titles\":{\"canonical\":\"Tariff_of_Abominations\",\"normalized\":\"Tariff of Abominations\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTariff of Abominations\u003c/span\u003e\"},\"pageid\":55572,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224675540\",\"tid\":\"d4fab5e8-1618-11ef-80c1-09f2e774fd42\",\"timestamp\":\"2024-05-19T19:48:58Z\",\"description\":\"1828 United States tariff\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tariff_of_Abominations\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tariff_of_Abominations?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tariff_of_Abominations\"}},\"extract\":\"The Tariff of 1828 was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \\\"Tariff of Abominations\\\" by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eTariff of 1828\u003c/b\u003e was a very high protective tariff that became law in the United States in May 1828. It was a bill designed to fail in Congress because it was seen by free trade supporters as hurting both industry and farming, but it passed anyway. The bill was vehemently denounced in the South and escalated to a threat of civil war in the Nullification Crisis of 1832–33. The tariff was replaced in 1833, and the crisis ended. It was called the \u003cb\u003e\\\"Tariff of Abominations\\\"\u003c/b\u003e by its Southern detractors because of the effects it had on the Southern economy. It set a 38% tax on some imported goods and a 45% tax on certain imported raw materials.\u003c/p\u003e\",\"normalizedtitle\":\"Tariff of Abominations\"}],\"year\":1828},{\"text\":\"A combination of thick smoke, fog, and heavy cloud cover caused darkness to fall on parts of Canada and the New England area of the United States by noon.\",\"pages\":[{\"type\":\"standard\",\"title\":\"New_England's_Dark_Day\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q588300\",\"titles\":{\"canonical\":\"New_England's_Dark_Day\",\"normalized\":\"New England's Dark Day\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u0026#039;s Dark Day\u003c/span\u003e\"},\"pageid\":666041,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg/320px-1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":320,\"height\":227},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6c/1780_Raynal_and_Bonne_Map_of_New_England_and_the_Maritime_Provinces_-_Geographicus_-_Canada-bonne-1780.jpg\",\"width\":2500,\"height\":1772},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698529\",\"tid\":\"7db62050-1633-11ef-9a45-a19eb4bbc11f\",\"timestamp\":\"2024-05-19T22:59:48Z\",\"description\":\"1780 darkness in New England and Canada\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England's_Dark_Day\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England's_Dark_Day?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England's_Dark_Day\"}},\"extract\":\"New England's Dark Day occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England's Dark Day\u003c/b\u003e occurred on May 19, 1780, when an unusual darkening of the daytime sky was observed over the New England states and parts of eastern Canada. The primary cause of the event is believed to have been a combination of smoke from forest fires, a thick fog, and cloud cover. The darkness was so complete that candles were required from noon on. It did not disperse until the middle of the next night.\u003c/p\u003e\",\"normalizedtitle\":\"New England's Dark Day\"},{\"type\":\"standard\",\"title\":\"New_England\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q18389\",\"titles\":{\"canonical\":\"New_England\",\"normalized\":\"New England\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew England\u003c/span\u003e\"},\"pageid\":21531764,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Portland_HeadLight_%28cropped%29.jpg/320px-Portland_HeadLight_%28cropped%29.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/49/Portland_HeadLight_%28cropped%29.jpg\",\"width\":3703,\"height\":2779},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1219182468\",\"tid\":\"2b5c7a30-fbbb-11ee-95fd-523e3ef2e8e0\",\"timestamp\":\"2024-04-16T06:33:00Z\",\"description\":\"Region in the Northeastern United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44,\"lon\":-71},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.wikipedia.org/wiki/New_England?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_England\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_England\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_England\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_England?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_England\"}},\"extract\":\"New England is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew England\u003c/b\u003e is a region comprising six states in the Northeastern United States: Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont. It is bordered by the state of New York to the west and by the Canadian provinces of New Brunswick to the northeast and Quebec to the north. The Gulf of Maine and Atlantic Ocean are to the east and southeast, and Long Island Sound is to the southwest. Boston is New England's largest city and the capital of Massachusetts. Greater Boston is the largest metropolitan area, with nearly a third of New England's population; this area includes Worcester, Massachusetts, the second-largest city in New England, Manchester, New Hampshire, the largest city in New Hampshire, and Providence, Rhode Island, the capital of and largest city in Rhode Island.\u003c/p\u003e\",\"normalizedtitle\":\"New England\"}],\"year\":1780},{\"text\":\"American Revolutionary War: A Continental Army garrison west of Montreal surrendered to British troops at the Battle of the Cedars.\",\"pages\":[{\"type\":\"standard\",\"title\":\"American_Revolutionary_War\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q40949\",\"titles\":{\"canonical\":\"American_Revolutionary_War\",\"normalized\":\"American Revolutionary War\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAmerican Revolutionary War\u003c/span\u003e\"},\"pageid\":771,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/AmericanRevolutionaryWarMon.jpg/320px-AmericanRevolutionaryWarMon.jpg\",\"width\":320,\"height\":474},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2b/AmericanRevolutionaryWarMon.jpg\",\"width\":406,\"height\":601},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224395755\",\"tid\":\"ad4a1b93-14cb-11ef-91e2-dcff43c01b8c\",\"timestamp\":\"2024-05-18T04:04:09Z\",\"description\":\"1775–1783 American war of independence\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:American_Revolutionary_War\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/American_Revolutionary_War\",\"edit\":\"https://en.m.wikipedia.org/wiki/American_Revolutionary_War?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:American_Revolutionary_War\"}},\"extract\":\"The American Revolutionary War, also known as the Revolutionary War or American War of Independence, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAmerican Revolutionary War\u003c/b\u003e, also known as the \u003cb\u003eRevolutionary War\u003c/b\u003e or \u003cb\u003eAmerican War of Independence\u003c/b\u003e, was a military conflict that was part of the broader American Revolution, where American Patriot forces organized as the Continental Army and commanded by George Washington defeated the British Army.\u003c/p\u003e\",\"normalizedtitle\":\"American Revolutionary War\"},{\"type\":\"standard\",\"title\":\"Continental_Army\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q54122\",\"titles\":{\"canonical\":\"Continental_Army\",\"normalized\":\"Continental Army\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eContinental Army\u003c/span\u003e\"},\"pageid\":168210,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/320px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_the_United_States_Board_of_War_and_Ordnance.svg/719px-Seal_of_the_United_States_Board_of_War_and_Ordnance.svg.png\",\"width\":719,\"height\":719},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1218341994\",\"tid\":\"0d0d1f71-f7ba-11ee-92e0-84d6ec6ea0b7\",\"timestamp\":\"2024-04-11T04:14:55Z\",\"description\":\"Colonial army during the American Revolutionary War\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.wikipedia.org/wiki/Continental_Army?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Continental_Army\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Continental_Army\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Continental_Army\",\"edit\":\"https://en.m.wikipedia.org/wiki/Continental_Army?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Continental_Army\"}},\"extract\":\"The Continental Army was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eContinental Army\u003c/b\u003e was the army of the United Colonies representing the Thirteen Colonies and later the United States during the American Revolutionary War. It was formed on June 14, 1775 by a resolution passed by the Second Continental Congress, meeting in Philadelphia after the war's outbreak. The Continental Army was created to coordinate military efforts of the colonies in the war against the British, who sought to maintain control over the American colonies. General George Washington was appointed commander-in-chief of the Continental Army and maintained this position throughout the war.\u003c/p\u003e\",\"normalizedtitle\":\"Continental Army\"},{\"type\":\"standard\",\"title\":\"Montreal\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q340\",\"titles\":{\"canonical\":\"Montreal\",\"normalized\":\"Montreal\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMontreal\u003c/span\u003e\"},\"pageid\":7954681,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/320px-Flag_of_Montreal.svg.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Flag_of_Montreal.svg/435px-Flag_of_Montreal.svg.png\",\"width\":435,\"height\":217},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224388393\",\"tid\":\"ccdc30a9-14c1-11ef-a502-1d98a1856bc8\",\"timestamp\":\"2024-05-18T02:53:27Z\",\"description\":\"Largest city in Quebec, Canada\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.50888889,\"lon\":-73.55416667},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.wikipedia.org/wiki/Montreal?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Montreal\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Montreal\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Montreal\",\"edit\":\"https://en.m.wikipedia.org/wiki/Montreal?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Montreal\"}},\"extract\":\"Montreal is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as Ville-Marie, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMontreal\u003c/b\u003e is the largest city in the province of Quebec, the second-largest in Canada, and the tenth-largest in North America. Founded in 1642 as \u003ci\u003eVille-Marie\u003c/i\u003e, or \\\"City of Mary\\\", it is now named after Mount Royal, the triple-peaked hill around which the early settlement was built. The city is centred on the Island of Montreal and a few much smaller peripheral islands, the largest of which is Île Bizard. The city is 196 km (122 mi) east of the national capital, Ottawa, and 258 km (160 mi) southwest of the provincial capital, Quebec City.\u003c/p\u003e\",\"normalizedtitle\":\"Montreal\"},{\"type\":\"standard\",\"title\":\"Battle_of_the_Cedars\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1779439\",\"titles\":{\"canonical\":\"Battle_of_the_Cedars\",\"normalized\":\"Battle of the Cedars\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of the Cedars\u003c/span\u003e\"},\"pageid\":1255562,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Montreal1764CedarsDetail.png/320px-Montreal1764CedarsDetail.png\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Montreal1764CedarsDetail.png\",\"width\":1067,\"height\":697},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1185353813\",\"tid\":\"b2a39b1f-843d-11ee-be8c-93f4c27e711b\",\"timestamp\":\"2023-11-16T05:05:02Z\",\"description\":\"1776 skirmishes of the American Revolutionary War\",\"description_source\":\"local\",\"coordinates\":{\"lat\":45.3099,\"lon\":-74.0353},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_the_Cedars\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_the_Cedars?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_the_Cedars\"}},\"extract\":\"The Battle of the Cedars was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of the Cedars\u003c/b\u003e was a series of military confrontations early in the American Revolutionary War during the Continental Army's invasion of Canada that had begun in September 1775. The skirmishes, which involved limited combat, occurred in May 1776 at and around the Cedars, 45 km (28 mi) west of Montreal, British America. Continental Army units were opposed by a small force of British troops leading a larger force of First Nations warriors and militia.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of the Cedars\"}],\"year\":1776},{\"text\":\"French physicist Jean-Pierre Christin published the design of a mercury thermometer using the centigrade scale, with 0 representing the melting point of water and 100 its boiling point.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Jean-Pierre_Christin\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3169136\",\"titles\":{\"canonical\":\"Jean-Pierre_Christin\",\"normalized\":\"Jean-Pierre Christin\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJean-Pierre Christin\u003c/span\u003e\"},\"pageid\":36320014,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg/320px-Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":320,\"height\":203},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Term%C3%B3metro_de_Lyon_de_Jean-Pierre_Christin.jpg\",\"width\":1536,\"height\":972},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224640125\",\"tid\":\"4f1942be-15f5-11ef-8b89-17cafdec9809\",\"timestamp\":\"2024-05-19T15:34:41Z\",\"description\":\"French scientist (1683–1755)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Jean-Pierre_Christin\",\"edit\":\"https://en.m.wikipedia.org/wiki/Jean-Pierre_Christin?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Jean-Pierre_Christin\"}},\"extract\":\"Jean-Pierre Christin was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJean-Pierre Christin\u003c/b\u003e was a French physicist, mathematician, astronomer, and musician. His proposal in 1743 to reverse the Celsius thermometer scale was widely accepted and is still in use today.\u003c/p\u003e\",\"normalizedtitle\":\"Jean-Pierre Christin\"},{\"type\":\"standard\",\"title\":\"Mercury-in-glass_thermometer\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1428655\",\"titles\":{\"canonical\":\"Mercury-in-glass_thermometer\",\"normalized\":\"Mercury-in-glass thermometer\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMercury-in-glass thermometer\u003c/span\u003e\"},\"pageid\":150245,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Mercury_Thermometer.jpg/320px-Mercury_Thermometer.jpg\",\"width\":320,\"height\":691},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/57/Mercury_Thermometer.jpg\",\"width\":922,\"height\":1990},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224519270\",\"tid\":\"50e509a8-1560-11ef-b870-8d644d1d526c\",\"timestamp\":\"2024-05-18T21:48:09Z\",\"description\":\"Type of thermometer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mercury-in-glass_thermometer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mercury-in-glass_thermometer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mercury-in-glass_thermometer\"}},\"extract\":\"The mercury-in-glass or mercury thermometer is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emercury-in-glass\u003c/b\u003e or \u003cb\u003emercury thermometer\u003c/b\u003e is a thermometer that uses the thermal expansion and contraction of liquid mercury to indicate the temperature.\u003c/p\u003e\",\"normalizedtitle\":\"Mercury-in-glass thermometer\"},{\"type\":\"standard\",\"title\":\"Celsius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q25267\",\"titles\":{\"canonical\":\"Celsius\",\"normalized\":\"Celsius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCelsius\u003c/span\u003e\"},\"pageid\":19593040,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/320px-Countries_that_use_Celsius.svg.png\",\"width\":320,\"height\":164},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Countries_that_use_Celsius.svg/2560px-Countries_that_use_Celsius.svg.png\",\"width\":2560,\"height\":1314},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223598016\",\"tid\":\"64b7de3b-10e8-11ef-ba9a-9e8a2c8f3ef4\",\"timestamp\":\"2024-05-13T05:19:38Z\",\"description\":\"Scale and unit of measurement for temperature\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.wikipedia.org/wiki/Celsius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Celsius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Celsius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Celsius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Celsius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Celsius\"}},\"extract\":\"The degree Celsius is the unit of temperature on the Celsius temperature scale, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called centigrade in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003edegree Celsius\u003c/b\u003e is the unit of temperature on the \u003cb\u003eCelsius temperature scale\u003c/b\u003e, one of two temperature scales used in the International System of Units (SI), the other being the closely related Kelvin scale. The degree Celsius can refer to a specific point on the Celsius temperature scale or to a difference or range between two temperatures. It is named after the Swedish astronomer Anders Celsius (1701–1744), who proposed the first version of it in 1742. The unit was called \u003ci\u003ecentigrade\u003c/i\u003e in several languages for many years. In 1948, the International Committee for Weights and Measures renamed it to honor Celsius and also to remove confusion with the term for one hundredth of a gradian in some languages. Most countries use this scale.\u003c/p\u003e\",\"normalizedtitle\":\"Celsius\"},{\"type\":\"standard\",\"title\":\"Melting_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q15318\",\"titles\":{\"canonical\":\"Melting_point\",\"normalized\":\"Melting point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMelting point\u003c/span\u003e\"},\"pageid\":40283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Melting_ice_thermometer.jpg/320px-Melting_ice_thermometer.jpg\",\"width\":320,\"height\":278},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/64/Melting_ice_thermometer.jpg\",\"width\":2536,\"height\":2204},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224699892\",\"tid\":\"6a0bbc8d-1635-11ef-b512-0e0f8f18e985\",\"timestamp\":\"2024-05-19T23:13:34Z\",\"description\":\"Temperature at which a solid turns liquid\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Melting_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Melting_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Melting_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Melting_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Melting_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Melting_point\"}},\"extract\":\"The melting point of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emelting point\u003c/b\u003e of a substance is the temperature at which it changes state from solid to liquid. At the melting point the solid and liquid phase exist in equilibrium. The melting point of a substance depends on pressure and is usually specified at a standard pressure such as 1 atmosphere or 100 kPa.\u003c/p\u003e\",\"normalizedtitle\":\"Melting point\"},{\"type\":\"standard\",\"title\":\"Boiling_point\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1003183\",\"titles\":{\"canonical\":\"Boiling_point\",\"normalized\":\"Boiling point\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBoiling point\u003c/span\u003e\"},\"pageid\":4115,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Boilingkettle.jpg/320px-Boilingkettle.jpg\",\"width\":320,\"height\":411},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/92/Boilingkettle.jpg\",\"width\":2837,\"height\":3645},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214870211\",\"tid\":\"7eefc9c5-e7af-11ee-b16e-8b4e7de40642\",\"timestamp\":\"2024-03-21T18:19:03Z\",\"description\":\"Temperature at which a substance changes from liquid into vapor\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.wikipedia.org/wiki/Boiling_point?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Boiling_point\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Boiling_point\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Boiling_point\",\"edit\":\"https://en.m.wikipedia.org/wiki/Boiling_point?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Boiling_point\"}},\"extract\":\" The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\",\"extract_html\":\"\u003cp\u003e The \u003cb\u003eboiling point\u003c/b\u003e of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.\u003c/p\u003e\",\"normalizedtitle\":\"Boiling point\"}],\"year\":1743},{\"text\":\"Anglo-Spanish War: England invaded Spanish Jamaica, capturing it a week later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Spanish_War_(1654–1660)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q369291\",\"titles\":{\"canonical\":\"Anglo-Spanish_War_(1654–1660)\",\"normalized\":\"Anglo-Spanish War (1654–1660)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAnglo-Spanish War (1654–1660)\u003c/span\u003e\"},\"pageid\":853356,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg/320px-Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":320,\"height\":242},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/59/Charles_Edward_Dixon_HMS_St_George_1662_Battle_of_Santa_Cruz_de_Tenerife_1657_Admiral_Robert_Blake.jpg\",\"width\":4085,\"height\":3087},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224685406\",\"tid\":\"8ef728cd-1623-11ef-94c8-16a4f6553eaf\",\"timestamp\":\"2024-05-19T21:05:45Z\",\"description\":\"War between the English Protectorate, under Oliver Cromwell, and Spain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Spanish_War_(1654%E2%80%931660)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Spanish_War_(1654%E2%80%931660)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Spanish_War_(1654%E2%80%931660)\"}},\"extract\":\"The Anglo-Spanish War was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAnglo-Spanish War\u003c/b\u003e was a conflict between the English Protectorate under Oliver Cromwell, and Spain, between 1654 and 1660. It was caused by commercial rivalry. Each side attacked the other's commercial and colonial interests in various ways such as privateering and naval expeditions. In 1655, an English amphibious expedition invaded Spanish territory in the Caribbean. In 1657, England formed an alliance with France, merging the Anglo–Spanish war with the larger Franco-Spanish War resulting in major land actions that took place in the Spanish Netherlands.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Spanish War (1654–1660)\"},{\"type\":\"standard\",\"title\":\"Invasion_of_Jamaica\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6059673\",\"titles\":{\"canonical\":\"Invasion_of_Jamaica\",\"normalized\":\"Invasion of Jamaica\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eInvasion of Jamaica\u003c/span\u003e\"},\"pageid\":28424211,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Jamaica1671ogilby.jpg/320px-Jamaica1671ogilby.jpg\",\"width\":320,\"height\":256},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d9/Jamaica1671ogilby.jpg\",\"width\":4329,\"height\":3461},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224697636\",\"tid\":\"44c9676f-1632-11ef-bcf6-06b5a0690573\",\"timestamp\":\"2024-05-19T22:51:03Z\",\"description\":\"1655 English victory over Spain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":17.955,\"lon\":-76.8675},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Invasion_of_Jamaica\",\"edit\":\"https://en.m.wikipedia.org/wiki/Invasion_of_Jamaica?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Invasion_of_Jamaica\"}},\"extract\":\"The Invasion of Jamaica took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eInvasion of Jamaica\u003c/b\u003e took place in May 1655, during the 1654 to 1660 Anglo-Spanish War, when an English expeditionary force captured Spanish Jamaica. It was part of an ambitious plan by Oliver Cromwell to acquire new colonies in the Americas, known as the Western Design.\u003c/p\u003e\",\"normalizedtitle\":\"Invasion of Jamaica\"},{\"type\":\"standard\",\"title\":\"Colony_of_Santiago\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5148521\",\"titles\":{\"canonical\":\"Colony_of_Santiago\",\"normalized\":\"Colony of Santiago\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColony of Santiago\u003c/span\u003e\"},\"pageid\":34399476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/320px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Flag_of_Cross_of_Burgundy.svg/900px-Flag_of_Cross_of_Burgundy.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224660847\",\"tid\":\"9316514f-1609-11ef-9ac4-fdfc9fced638\",\"timestamp\":\"2024-05-19T17:59:45Z\",\"description\":\"Former Spanish colony in the Caribbean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":18.18,\"lon\":-77.4},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colony_of_Santiago\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colony_of_Santiago\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colony_of_Santiago?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colony_of_Santiago\"}},\"extract\":\"Santiago was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSantiago\u003c/b\u003e was a Spanish territory of the Spanish West Indies and within the Viceroyalty of New Spain, in the Caribbean region. Its location is the present-day island and nation of Jamaica.\u003c/p\u003e\",\"normalizedtitle\":\"Colony of Santiago\"}],\"year\":1655},{\"text\":\"Gregory II began his pontificate; his conflict with Byzantine emperor Leo III eventually led to the establishment of the temporal power of the pope.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Pope_Gregory_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q103321\",\"titles\":{\"canonical\":\"Pope_Gregory_II\",\"normalized\":\"Pope Gregory II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope Gregory II\u003c/span\u003e\"},\"pageid\":24193,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224650505\",\"tid\":\"c0f68a2c-15ff-11ef-97b2-0090790fddce\",\"timestamp\":\"2024-05-19T16:49:27Z\",\"description\":\"Head of the Catholic Church from 715 to 731\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope_Gregory_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope_Gregory_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope_Gregory_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope_Gregory_II\"}},\"extract\":\"Pope Gregory II was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePope Gregory II\u003c/b\u003e was the bishop of Rome from 19 May 715 to his death. His defiance of Emperor Leo III the Isaurian as a result of the iconoclastic controversy in the Eastern Empire prepared the way for a long series of revolts, schisms, and civil wars that eventually led to the establishment of the temporal power of the popes.\u003c/p\u003e\",\"normalizedtitle\":\"Pope Gregory II\"},{\"type\":\"standard\",\"title\":\"Pope\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q19546\",\"titles\":{\"canonical\":\"Pope\",\"normalized\":\"Pope\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePope\u003c/span\u003e\"},\"pageid\":23056,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg/320px-Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":320,\"height\":425},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/95/Portrait_of_Pope_Francis_%282021%29_FXD.jpg\",\"width\":991,\"height\":1316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224204527\",\"tid\":\"87d6db6d-13cd-11ef-a64a-2505ff3ede61\",\"timestamp\":\"2024-05-16T21:44:54Z\",\"description\":\"Visible head of the Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.wikipedia.org/wiki/Pope?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pope\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pope\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pope\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pope?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pope\"}},\"extract\":\"The pope is the bishop of Rome, Patriarch of the West, and visible head of the Catholic Church. He is also known as the supreme pontiff, Roman pontiff or sovereign pontiff. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epope\u003c/b\u003e is the \u003cb\u003ebishop of Rome\u003c/b\u003e, Patriarch of the West, and visible head of the Catholic Church. He is also known as the \u003cb\u003esupreme pontiff\u003c/b\u003e, \u003cb\u003eRoman pontiff\u003c/b\u003e or \u003cb\u003esovereign pontiff\u003c/b\u003e. Since the eighth century, he has been the head of state of the Papal States and later the Vatican City State.\u003c/p\u003e\",\"normalizedtitle\":\"Pope\"},{\"type\":\"standard\",\"title\":\"Leo_III_the_Isaurian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q31755\",\"titles\":{\"canonical\":\"Leo_III_the_Isaurian\",\"normalized\":\"Leo III the Isaurian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLeo III the Isaurian\u003c/span\u003e\"},\"pageid\":18010,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Solidus_of_Leo_III_sb1504.png/320px-Solidus_of_Leo_III_sb1504.png\",\"width\":320,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Solidus_of_Leo_III_sb1504.png\",\"width\":737,\"height\":727},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220135113\",\"tid\":\"917753ff-0046-11ef-9551-c42353025594\",\"timestamp\":\"2024-04-22T01:20:56Z\",\"description\":\"Byzantine emperor from 717 to 741\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Leo_III_the_Isaurian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Leo_III_the_Isaurian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Leo_III_the_Isaurian\"}},\"extract\":\"Leo III the Isaurian, also known as the Syrian, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLeo III the Isaurian\u003c/b\u003e, also known as \u003cb\u003ethe Syrian\u003c/b\u003e, was Byzantine Emperor from 717 until his death in 741 and founder of the Isaurian dynasty. He put an end to the Twenty Years' Anarchy, a period of great instability in the Byzantine Empire between 695 and 717, along with bringing an end to the continual defeats and territorial losses the Byzantines had suffered during the seventh century, marked by the rapid succession of several emperors to the throne. He also successfully defended the Empire against the invading Umayyads and forbade the veneration of icons.\u003c/p\u003e\",\"normalizedtitle\":\"Leo III the Isaurian\"},{\"type\":\"standard\",\"title\":\"Temporal_power_of_the_Holy_See\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q929806\",\"titles\":{\"canonical\":\"Temporal_power_of_the_Holy_See\",\"normalized\":\"Temporal power of the Holy See\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTemporal power of the Holy See\u003c/span\u003e\"},\"pageid\":92913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg/320px-Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":320,\"height\":479},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c5/Tiara_of_Pope_Pius_IX%2C_1854.jpg\",\"width\":2000,\"height\":2996},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659303\",\"tid\":\"5138cefb-1608-11ef-a9c5-e3f810772758\",\"timestamp\":\"2024-05-19T17:50:45Z\",\"description\":\"Political and secular governmental activity of the popes of the Roman Catholic Church\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Temporal_power_of_the_Holy_See\",\"edit\":\"https://en.m.wikipedia.org/wiki/Temporal_power_of_the_Holy_See?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Temporal_power_of_the_Holy_See\"}},\"extract\":\"The Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\",\"extract_html\":\"\u003cp\u003eThe Holy See exercised political and secular influence, as distinguished from its spiritual and pastoral activity, while the pope ruled the Papal States in central Italy.\u003c/p\u003e\",\"normalizedtitle\":\"Temporal power of the Holy See\"}],\"year\":715}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4ea4bf1-68ae-4fea-9a09-2d98488f4055","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:25.30000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.bottomnavigation.BottomNavigationItemView","target_id":"nav_tab_reading_lists","width":216,"height":189,"x":391.9812,"y":2164.8926,"touch_down_time":146692,"touch_up_time":146783},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f59cbbf6-6d04-49bd-8a37-3407e690ac3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:28.12400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":149608,"utime":140,"cutime":0,"cstime":0,"stime":66,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f910a0d0-e3c7-4a4f-a3e7-b9dbca382d3c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.61400000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":561.9507,"y":1693.9453,"end_x":571.9702,"end_y":862.93945,"direction":"up","touch_down_time":144920,"touch_up_time":145077},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc4f60a5-efdb-42d0-8a15-e80956b23bcc","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:27.60100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.settings.SettingsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json index af19e5347..0363f610f 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/c7340029-e1f6-46eb-8dbd-c37da561fd7c.json @@ -1 +1 @@ -[{"id":"03bde1a1-4bae-49e0-b88c-4dd1ef566401","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.46700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":108193,"end_time":108951,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Maxine_Blossom_Miles","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:10:48 GMT","etag":"W/\"1217151184/5739b730-01ea-11ef-a0c6-68a942aed4b5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2031","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Maxine Blossom Miles\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6795942\",\"titles\":{\"canonical\":\"Maxine_Blossom_Miles\",\"normalized\":\"Maxine Blossom Miles\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\"},\"pageid\":35973359,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":320,\"height\":424},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":504,\"height\":668},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217151184\",\"tid\":\"ad0402e5-f234-11ee-8627-f6f01d3656ba\",\"timestamp\":\"2024-04-04T03:37:35Z\",\"description\":\"English aircraft engineer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Maxine_Blossom_Miles\",\"edit\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"}},\"extract\":\"Maxine Frances Mary \\\"Blossom\\\" Miles was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMaxine Frances Mary\u003c/b\u003e \\\"\u003cb\u003eBlossom\u003c/b\u003e\\\" \u003cb\u003eMiles\u003c/b\u003e was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"06b254a7-12b4-4b85-90ff-f55d67efd5fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":104725,"end_time":104735,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"5474","content-type":"multipart/form-data; boundary=19fd485a-1006-4fa2-8012-da8a84157f0d","host":"10.0.2.2:8080","msr-req-id":"5a4065bd-60a3-4146-ac6d-c4d637772a3c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:10:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b04a6e9-1930-425e-9eb9-d086a580f419","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:51.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3412,"total_pss":89089,"rss":151808,"native_total_heap":45334,"native_free_heap":13033,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0dda7d31-0504-481e-8125-4e16e74442ed","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"125a4ca8-6fc6-4611-899f-688ee212f7a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"14c8433f-9070-4d55-a1fd-85893788e28a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3473,"total_pss":89049,"rss":151808,"native_total_heap":45326,"native_free_heap":13041,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1a5a6fa3-67f3-46e9-8111-e7aaa3d6e275","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.36800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":50.98755,"y":2199.9023,"touch_down_time":106743,"touch_up_time":106849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1adacf0b-9ed0-43a6-972e-6c4618e75bbe","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":110610,"utime":72,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1c5c81c3-bc58-4069-a982-bb5cdbd9d4c9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.37400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":104580,"on_next_draw_uptime":104858,"launched_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"21bfaa7d-0d5c-44c4-adbd-2e9fc7a8f0d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:52.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":113608,"utime":72,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2bdb85ef-1dc9-485d-821e-129ca9ebd88b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.75000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2daa2bcd-6552-4bae-b877-a67780478ea0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.46700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104764,"end_time":104951,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2451","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3403436f-5e3c-4896-a58d-807c29153d50","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.12000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":107605,"utime":60,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"34a0a856-1782-492e-b633-7b987b5945e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3708bc57-5219-4e3b-a83b-e7b020f71bba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.73800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":106869,"end_time":107222,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:10:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"542ed105-ad30-4084-a25e-6816bec1fd89","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":107316,"end_time":107429,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"127","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49984","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/71","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5442beb1-62f1-4404-9abc-6d844fdf5b14","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3942,"total_pss":88930,"rss":152480,"native_total_heap":45369,"native_free_heap":12998,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5e09f8b2-f9c5-4c28-a33a-280f626b582d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:57.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3143,"total_pss":89269,"rss":152196,"native_total_heap":45530,"native_free_heap":12837,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"676c3fb1-6477-496a-8c9c-61ed35f61353","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6a19cff5-1fec-479d-a4aa-a86585ce6ddb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c809bc9-1665-4b3b-80e4-8466f67a56bb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:53.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3312,"total_pss":89149,"rss":151808,"native_total_heap":45510,"native_free_heap":12857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6cd3c07d-e68b-4493-9e1b-b03ee17d39d4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":116609,"utime":72,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e452099-cbe9-4906-8326-ed26f752240c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":15582,"java_free_heap":3088,"total_pss":73935,"rss":134964,"native_total_heap":39902,"native_free_heap":10273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ba2a82-8506-4091-bc92-f6fd29378365","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.37600000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104888,"end_time":105861,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9233c0ae-4c78-4059-8b4f-5b35d8ad6843","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3204,"total_pss":89225,"rss":151932,"native_total_heap":45522,"native_free_heap":12845,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"950fe192-e5db-4237-bbc9-47d176bfaccd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"96df6f05-31ca-4d30-9fdf-705b5be4d58b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f058f91-5247-4a59-a34d-107b4bdddbb9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:59.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3032,"total_pss":89357,"rss":152904,"native_total_heap":45572,"native_free_heap":12795,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a4498773-993f-4f68-912b-6fc6da876cf9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.33500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a9168774-d224-4913-a84e-c6a370a34a6d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b02cdfb4-01a2-475b-97c2-8827d16d2d59","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b26009fd-826c-4a12-91e1-6801af5d3751","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46948fd-8052-4fb4-a25c-c32afbe4d0eb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b544ed7d-7dcc-4413-8be3-c2a1f55336ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:58.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":119610,"utime":74,"cutime":0,"cstime":0,"stime":25,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b6eb6f85-8ef0-4e60-afac-af37419f3ba9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12300000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":122608,"utime":74,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b863f39a-8ae4-4df7-b383-567b79e14aa3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.43400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ba3ca04f-bde3-4f9d-aba6-d9c2d2e581ef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.52500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":106965,"end_time":107010,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"113","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 09:08:52 GMT","etag":"\"1230862227/93f33e50-1688-11ef-9b87-d98f91645f9b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bf0b84c3-18bf-4953-94ae-095f38cb14c7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2883,"total_pss":89481,"rss":152904,"native_total_heap":45608,"native_free_heap":12759,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cc427fa7-733f-4e05-a569-70c9bb0490a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.28200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"deb32862-d736-49cf-8ea8-581703f60190","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.14800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":107329,"end_time":107632,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"85069","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/566","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e42761c1-4bc4-49a3-a3e2-c9e51bbec39f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.40300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104703,"end_time":104887,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2450","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e82bd1e1-b945-4c3e-8efb-de69ccfa8bbb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ee5508d7-c1d7-405b-9f63-753874c70621","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.32500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f240dbcf-8565-4e44-905b-00088b964210","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f8d7042a-7aee-4f11-aa5f-8c9cba958216","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.21200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104680,"end_time":105697,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/2","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"facb6ba3-ce45-4dfe-8771-8e6a1e6916e4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.19500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":107609,"end_time":107679,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12648","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/780","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fcae5c91-78cd-493c-b148-0dc182eacbb7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2945,"total_pss":89433,"rss":152904,"native_total_heap":45592,"native_free_heap":12775,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03bde1a1-4bae-49e0-b88c-4dd1ef566401","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.46700000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/random/summary","method":"get","status_code":200,"start_time":108193,"end_time":108951,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Maxine_Blossom_Miles","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 09:10:48 GMT","etag":"W/\"1217151184/5739b730-01ea-11ef-a0c6-68a942aed4b5\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2031","server-timing":"cache;desc=\"miss\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Maxine Blossom Miles\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6795942\",\"titles\":{\"canonical\":\"Maxine_Blossom_Miles\",\"normalized\":\"Maxine Blossom Miles\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMaxine Blossom Miles\u003c/span\u003e\"},\"pageid\":35973359,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg/320px-Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":320,\"height\":424},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/69/Frederic_Yates_conte_crayon_Sketch_of_Maxine_Forbes-Robertson%2C_age_nine_years.jpg\",\"width\":504,\"height\":668},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217151184\",\"tid\":\"ad0402e5-f234-11ee-8627-f6f01d3656ba\",\"timestamp\":\"2024-04-04T03:37:35Z\",\"description\":\"English aircraft engineer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Maxine_Blossom_Miles\",\"edit\":\"https://en.m.wikipedia.org/wiki/Maxine_Blossom_Miles?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Maxine_Blossom_Miles\"}},\"extract\":\"Maxine Frances Mary \\\"Blossom\\\" Miles was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMaxine Frances Mary\u003c/b\u003e \\\"\u003cb\u003eBlossom\u003c/b\u003e\\\" \u003cb\u003eMiles\u003c/b\u003e was a British aviation engineer, socialite, and businesswoman. She was born into a well-known family of actors. She became interested in aviation in the 1920s, and married her flight instructor, Frederick George Miles. Together they eventually founded Miles Aircraft, where she was a draughtswoman and aircraft designer.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"06b254a7-12b4-4b85-90ff-f55d67efd5fa","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":104725,"end_time":104735,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"5474","content-type":"multipart/form-data; boundary=19fd485a-1006-4fa2-8012-da8a84157f0d","host":"10.0.2.2:8080","msr-req-id":"5a4065bd-60a3-4146-ac6d-c4d637772a3c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:10:44 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0b04a6e9-1930-425e-9eb9-d086a580f419","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:51.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3412,"total_pss":89089,"rss":151808,"native_total_heap":45334,"native_free_heap":13033,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0dda7d31-0504-481e-8125-4e16e74442ed","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"125a4ca8-6fc6-4611-899f-688ee212f7a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.25800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"14c8433f-9070-4d55-a1fd-85893788e28a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3473,"total_pss":89049,"rss":151808,"native_total_heap":45326,"native_free_heap":13041,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1a5a6fa3-67f3-46e9-8111-e7aaa3d6e275","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.36800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"fragment_onboarding_skip_button","width":166,"height":126,"x":50.98755,"y":2199.9023,"touch_down_time":106743,"touch_up_time":106849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1adacf0b-9ed0-43a6-972e-6c4618e75bbe","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:49.12600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":110610,"utime":72,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"1c5c81c3-bc58-4069-a982-bb5cdbd9d4c9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.37400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":null,"process_start_requested_uptime":null,"content_provider_attach_uptime":104580,"on_next_draw_uptime":104858,"launched_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"21bfaa7d-0d5c-44c4-adbd-2e9fc7a8f0d0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:52.12300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":113608,"utime":72,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2bdb85ef-1dc9-485d-821e-129ca9ebd88b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.75000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2daa2bcd-6552-4bae-b877-a67780478ea0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.46700000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104764,"end_time":104951,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2451","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3403436f-5e3c-4896-a58d-807c29153d50","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.12000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":107605,"utime":60,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"34a0a856-1782-492e-b633-7b987b5945e0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.42400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3708bc57-5219-4e3b-a83b-e7b020f71bba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.73800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":106869,"end_time":107222,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"393","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:10:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"542ed105-ad30-4084-a25e-6816bec1fd89","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.94500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/featured/2024/05/20","method":"get","status_code":200,"start_time":107316,"end_time":107429,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"127","cache-control":"s-maxage=300, max-age=60","content-encoding":"gzip","content-length":"49984","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/aggregated-feed/0.5.0\"","date":"Mon, 20 May 2024 09:08:38 GMT","etag":"W/e0c68f80-1687-11ef-a368-494f74d485b5","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/71","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"tfa\":{\"type\":\"standard\",\"title\":\"City_of_Champaign_v._Madigan\",\"displaytitle\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q104882495\",\"titles\":{\"canonical\":\"City_of_Champaign_v._Madigan\",\"normalized\":\"City of Champaign v. Madigan\",\"display\":\"\u003ci\u003eCity of Champaign v. Madigan\u003c/i\u003e\"},\"pageid\":66209364,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":640,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/08/Illinois_Appellate_Court%2C_Springfield.jpg\",\"width\":920,\"height\":690},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224736028\",\"tid\":\"224f55ed-1662-11ef-8052-017d0431e7c1\",\"timestamp\":\"2024-05-20T04:33:41Z\",\"description\":\"Illinois court case concerning freedom of information\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/City_of_Champaign_v._Madigan\",\"edit\":\"https://en.m.wikipedia.org/wiki/City_of_Champaign_v._Madigan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:City_of_Champaign_v._Madigan\"}},\"extract\":\"City of Champaign v. Madigan, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eCity of Champaign v. Madigan\u003c/b\u003e\u003c/i\u003e, 2013 IL App (4th) 120662, 992 N.E.2d 629 (2013), is a case decided by the Illinois Appellate Court in 2013 concerning the state's Freedom of Information Act (FOIA). The court ruled that messages sent and received by elected officials during a city council meeting and pertaining to public business are public records subject to disclosure, even when those communications are stored on personal electronic devices. It was the first court ruling in Illinois to hold that private messages were subject to public disclosure under FOIA.\u003c/p\u003e\",\"normalizedtitle\":\"City of Champaign v. Madigan\"},\"mostread\":{\"date\":\"2024-05-19Z\",\"articles\":[{\"views\":513731,\"rank\":3,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":29422},{\"date\":\"2024-05-16Z\",\"views\":43607},{\"date\":\"2024-05-17Z\",\"views\":68927},{\"date\":\"2024-05-18Z\",\"views\":309787},{\"date\":\"2024-05-19Z\",\"views\":513731}],\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"views\":460112,\"rank\":4,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":914},{\"date\":\"2024-05-16Z\",\"views\":788},{\"date\":\"2024-05-17Z\",\"views\":793},{\"date\":\"2024-05-18Z\",\"views\":780},{\"date\":\"2024-05-19Z\",\"views\":460112}],\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"views\":410347,\"rank\":5,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":28634},{\"date\":\"2024-05-16Z\",\"views\":39665},{\"date\":\"2024-05-17Z\",\"views\":62766},{\"date\":\"2024-05-18Z\",\"views\":313188},{\"date\":\"2024-05-19Z\",\"views\":410347}],\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"views\":400888,\"rank\":6,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1534},{\"date\":\"2024-05-16Z\",\"views\":21117},{\"date\":\"2024-05-17Z\",\"views\":37058},{\"date\":\"2024-05-18Z\",\"views\":49052},{\"date\":\"2024-05-19Z\",\"views\":400888}],\"type\":\"standard\",\"title\":\"Xander_Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\",\"normalizedtitle\":\"Xander Schauffele\"},{\"views\":191974,\"rank\":8,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104110},{\"date\":\"2024-05-16Z\",\"views\":101970},{\"date\":\"2024-05-17Z\",\"views\":97399},{\"date\":\"2024-05-18Z\",\"views\":173476},{\"date\":\"2024-05-19Z\",\"views\":191974}],\"type\":\"standard\",\"title\":\"Kingdom_of_the_Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q114314695\",\"titles\":{\"canonical\":\"Kingdom_of_the_Planet_of_the_Apes\",\"normalized\":\"Kingdom of the Planet of the Apes\",\"display\":\"\u003ci\u003eKingdom of the Planet of the Apes\u003c/i\u003e\"},\"pageid\":63138261,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/cf/Kingdom_of_the_Planet_of_the_Apes_poster.jpg\",\"width\":250,\"height\":370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761119\",\"tid\":\"7835f019-1686-11ef-a286-d6a638f8565c\",\"timestamp\":\"2024-05-20T08:53:47Z\",\"description\":\"2024 American film by Wes Ball\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_the_Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_the_Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_the_Planet_of_the_Apes\"}},\"extract\":\"Kingdom of the Planet of the Apes is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to War for the Planet of the Apes (2017), it is the fourth installment in the Planet of the Apes reboot franchise and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of War and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eKingdom of the Planet of the Apes\u003c/b\u003e\u003c/i\u003e is a 2024 American science fiction action film directed by Wes Ball and written by Josh Friedman. A stand-alone sequel to \u003ci\u003eWar for the Planet of the Apes\u003c/i\u003e (2017), it is the fourth installment in the \u003cspan\u003e\u003ci\u003ePlanet of the Apes\u003c/i\u003e reboot franchise\u003c/span\u003e and the tenth film overall. It stars Owen Teague in the lead role alongside Freya Allan, Kevin Durand, Peter Macon, and William H. Macy. The film takes place 300 years after the events of \u003ci\u003eWar\u003c/i\u003e and follows a young chimpanzee named Noa, who embarks on a journey alongside a human woman named Mae to determine the future for apes and humans alike.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of the Planet of the Apes\"},{\"views\":182592,\"rank\":9,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":4},{\"date\":\"2024-05-16Z\",\"views\":7},{\"date\":\"2024-05-17Z\",\"views\":51},{\"date\":\"2024-05-18Z\",\"views\":88106},{\"date\":\"2024-05-19Z\",\"views\":182592}],\"type\":\"standard\",\"title\":\"Alice_Stewart_(commentator)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65622120\",\"titles\":{\"canonical\":\"Alice_Stewart_(commentator)\",\"normalized\":\"Alice Stewart (commentator)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAlice Stewart (commentator)\u003c/span\u003e\"},\"pageid\":61304100,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/Alice_Stewart.jpg\",\"width\":194,\"height\":259},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722496\",\"tid\":\"ed85c9e3-164e-11ef-bc08-39233a3e5fd2\",\"timestamp\":\"2024-05-20T02:16:12Z\",\"description\":\"American political commentator for CNN (1966–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Alice_Stewart_(commentator)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Alice_Stewart_(commentator)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Alice_Stewart_(commentator)\"}},\"extract\":\"Alice Elizabeth Stewart was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlice Elizabeth Stewart\u003c/b\u003e was an American communications director who worked on five Republican presidential campaigns before joining CNN as a commentator.\u003c/p\u003e\",\"normalizedtitle\":\"Alice Stewart (commentator)\"},{\"views\":169364,\"rank\":10,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":3037},{\"date\":\"2024-05-16Z\",\"views\":2818},{\"date\":\"2024-05-17Z\",\"views\":2537},{\"date\":\"2024-05-18Z\",\"views\":2428},{\"date\":\"2024-05-19Z\",\"views\":169364}],\"type\":\"standard\",\"title\":\"Ali_Khamenei\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57336\",\"titles\":{\"canonical\":\"Ali_Khamenei\",\"normalized\":\"Ali Khamenei\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAli Khamenei\u003c/span\u003e\"},\"pageid\":385653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg/320px-%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/19/%D8%B3%DB%8C%D8%AF_%D8%B9%D9%84%DB%8C_%D8%AE%D8%A7%D9%85%D9%86%D9%87%E2%80%8C%D8%A7%DB%8C_%D8%AF%D8%B1_%D8%B3%D8%A7%D9%84_%DB%B1%DB%B4%DB%B0%DB%B3.jpg\",\"width\":1666,\"height\":2500},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224743186\",\"tid\":\"b3c3c9f2-166c-11ef-812b-f95d8df9b435\",\"timestamp\":\"2024-05-20T05:49:20Z\",\"description\":\"Supreme Leader of Iran since 1989\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ali_Khamenei\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ali_Khamenei\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ali_Khamenei?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ali_Khamenei\"}},\"extract\":\"Seyyed Ali Hosseini Khamenei is an Iranian Twelver Shia marja' and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSeyyed Ali Hosseini Khamenei\u003c/b\u003e is an Iranian Twelver Shia \u003ci\u003emarja'\u003c/i\u003e and politician who has been the second supreme leader of Iran since 1989. He previously served as third president of Iran from 1981 to 1989. Khamenei is the longest-serving head of state in the Middle East, as well as the second-longest-serving Iranian leader of the last century, after Shah Mohammad Reza Pahlavi.\u003c/p\u003e\",\"normalizedtitle\":\"Ali Khamenei\"},{\"views\":164553,\"rank\":11,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":39140},{\"date\":\"2024-05-16Z\",\"views\":155036},{\"date\":\"2024-05-17Z\",\"views\":189549},{\"date\":\"2024-05-18Z\",\"views\":175097},{\"date\":\"2024-05-19Z\",\"views\":164553}],\"type\":\"standard\",\"title\":\"Bridgerton\",\"displaytitle\":\"\u003ci\u003eBridgerton\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q85748936\",\"titles\":{\"canonical\":\"Bridgerton\",\"normalized\":\"Bridgerton\",\"display\":\"\u003ci\u003eBridgerton\u003c/i\u003e\"},\"pageid\":62811365,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/3/3d/Bridgerton_Title_Card.png/320px-Bridgerton_Title_Card.png\",\"width\":320,\"height\":160},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/3/3d/Bridgerton_Title_Card.png\",\"width\":446,\"height\":223},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725109\",\"tid\":\"adc0e283-1652-11ef-b6dd-a60a08d4e635\",\"timestamp\":\"2024-05-20T02:43:03Z\",\"description\":\"American TV series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.wikipedia.org/wiki/Bridgerton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bridgerton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bridgerton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bridgerton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bridgerton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bridgerton\"}},\"extract\":\"Bridgerton is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBridgerton\u003c/b\u003e\u003c/i\u003e is an American historical romance television series created by Chris Van Dusen for Netflix. Based on the book series by Julia Quinn, it is Shondaland's first scripted show for Netflix. It revolves around an eponymous fictional family and is set in the competitive world of Regency era London's ton during the social season in the early 1800s, where young marriageable nobility and gentry are introduced into society.\u003c/p\u003e\",\"normalizedtitle\":\"Bridgerton\"},{\"views\":151198,\"rank\":12,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":2338},{\"date\":\"2024-05-16Z\",\"views\":2413},{\"date\":\"2024-05-17Z\",\"views\":130242},{\"date\":\"2024-05-18Z\",\"views\":258188},{\"date\":\"2024-05-19Z\",\"views\":151198}],\"type\":\"standard\",\"title\":\"Cassie_Ventura\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q72832\",\"titles\":{\"canonical\":\"Cassie_Ventura\",\"normalized\":\"Cassie Ventura\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCassie Ventura\u003c/span\u003e\"},\"pageid\":2491189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cassie_Ventura_%28cropped%29.jpg/320px-Cassie_Ventura_%28cropped%29.jpg\",\"width\":320,\"height\":360},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/0a/Cassie_Ventura_%28cropped%29.jpg\",\"width\":516,\"height\":580},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224731621\",\"tid\":\"7014897b-165b-11ef-9135-190958ff5b45\",\"timestamp\":\"2024-05-20T03:45:45Z\",\"description\":\"American singer, dancer, actress, and model (born 1986)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cassie_Ventura\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cassie_Ventura\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cassie_Ventura?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cassie_Ventura\"}},\"extract\":\"Casandra Elizabeth Ventura, known mononymously as Cassie, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026 U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the Billboard Hot 100, peaking at number three by July 2006.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCasandra Elizabeth Ventura\u003c/b\u003e, known mononymously as \u003cb\u003eCassie\u003c/b\u003e, is an American singer, dancer, actress, and model. Born in New London, Connecticut, she began her musical career after meeting producer Ryan Leslie in late 2004, who signed her to his record label, NextSelection Lifestyle Group. Two years later, Ventura released her debut single \\\"Me \u0026amp; U\\\", which was discovered by rapper Sean \\\"Diddy\\\" Combs; Leslie agreed to partner his NextSelection imprint with Combs' Bad Boy Records for the commercial release of her debut album. The song marked the first of her two entries on the \u003cspan\u003e\u003ci\u003eBillboard\u003c/i\u003e Hot 100\u003c/span\u003e, peaking at number three by July 2006.\u003c/p\u003e\",\"normalizedtitle\":\"Cassie Ventura\"},{\"views\":150344,\"rank\":13,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":41912},{\"date\":\"2024-05-16Z\",\"views\":18022},{\"date\":\"2024-05-17Z\",\"views\":15651},{\"date\":\"2024-05-18Z\",\"views\":16413},{\"date\":\"2024-05-19Z\",\"views\":150344}],\"type\":\"standard\",\"title\":\"List_of_English_football_champions\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q532723\",\"titles\":{\"canonical\":\"List_of_English_football_champions\",\"normalized\":\"List of English football champions\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eList of English football champions\u003c/span\u003e\"},\"pageid\":3548404,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg/320px-LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":320,\"height\":214},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/LCFC_lift_the_Premier_League_Trophy_%2826943755296%29_%28cropped%29.jpg\",\"width\":2834,\"height\":1896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224670285\",\"tid\":\"564f4857-1613-11ef-839b-b98f512b2c90\",\"timestamp\":\"2024-05-19T19:09:38Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:List_of_English_football_champions\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/List_of_English_football_champions\",\"edit\":\"https://en.m.wikipedia.org/wiki/List_of_English_football_champions?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:List_of_English_football_champions\"}},\"extract\":\"The English football champions are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eEnglish football champions\u003c/b\u003e are the winners of the top level league in English men's football, which since the 1992–93 season has been called the Premier League.\u003c/p\u003e\",\"normalizedtitle\":\"List of English football champions\"},{\"views\":146173,\"rank\":15,\"view_history\":[{\"date\":\"2024-05-19Z\",\"views\":146173}],\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"views\":143123,\"rank\":16,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":14030},{\"date\":\"2024-05-16Z\",\"views\":10702},{\"date\":\"2024-05-17Z\",\"views\":25062},{\"date\":\"2024-05-18Z\",\"views\":31560},{\"date\":\"2024-05-19Z\",\"views\":143123}],\"type\":\"standard\",\"title\":\"Jürgen_Klopp\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83106\",\"titles\":{\"canonical\":\"Jürgen_Klopp\",\"normalized\":\"Jürgen Klopp\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJürgen Klopp\u003c/span\u003e\"},\"pageid\":17541051,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg/320px-J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":320,\"height\":491},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/81/J%C3%BCrgen_Klopp%2C_Liverpool_vs._Chelsea%2C_UEFA_Super_Cup_2019-08-14_04.jpg\",\"width\":592,\"height\":909},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224746386\",\"tid\":\"e45a3645-1671-11ef-86d4-d89ec175e017\",\"timestamp\":\"2024-05-20T06:26:29Z\",\"description\":\"German football manager (born 1967)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/J%C3%BCrgen_Klopp\",\"edit\":\"https://en.m.wikipedia.org/wiki/J%C3%BCrgen_Klopp?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:J%C3%BCrgen_Klopp\"}},\"extract\":\"Jürgen Norbert Klopp is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJürgen Norbert Klopp\u003c/b\u003e is a German professional football manager and former player who was most recently the manager of Premier League club Liverpool. He is widely regarded as one of the best football managers in the world.\u003c/p\u003e\",\"normalizedtitle\":\"Jürgen Klopp\"},{\"views\":141418,\"rank\":17,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":398},{\"date\":\"2024-05-16Z\",\"views\":354},{\"date\":\"2024-05-17Z\",\"views\":316},{\"date\":\"2024-05-18Z\",\"views\":317},{\"date\":\"2024-05-19Z\",\"views\":141418}],\"type\":\"standard\",\"title\":\"President_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q838380\",\"titles\":{\"canonical\":\"President_of_Iran\",\"normalized\":\"President of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePresident of Iran\u003c/span\u003e\"},\"pageid\":233913,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/320px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg/218px-Office_of_the_President_of_the_Islamic_Republic_of_Iran_Seal.svg.png\",\"width\":218,\"height\":218},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224753910\",\"tid\":\"9d712387-167b-11ef-bff0-1018c96eee18\",\"timestamp\":\"2024-05-20T07:36:05Z\",\"description\":\"Head of Government of the Islamic Republic of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:President_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/President_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/President_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/President_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:President_of_Iran\"}},\"extract\":\"The president of Iran is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003epresident of Iran\u003c/b\u003e is the head of government of the Islamic Republic of Iran. The president is the second highest-ranking official of Iran, after the Supreme Leader. The first election was held in 1980 with Abulhassan Banisadr winning the election. The current acting President is Mohammad Mokhber following the death of Ebrahim Raisi.\u003c/p\u003e\",\"normalizedtitle\":\"President of Iran\"},{\"views\":129647,\"rank\":18,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57601},{\"date\":\"2024-05-16Z\",\"views\":53000},{\"date\":\"2024-05-17Z\",\"views\":49975},{\"date\":\"2024-05-18Z\",\"views\":76764},{\"date\":\"2024-05-19Z\",\"views\":129647}],\"type\":\"standard\",\"title\":\"Von_Erich_family\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1116777\",\"titles\":{\"canonical\":\"Von_Erich_family\",\"normalized\":\"Von Erich family\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVon Erich family\u003c/span\u003e\"},\"pageid\":5332659,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/9/91/Von_Erich_family.jpg/320px-Von_Erich_family.jpg\",\"width\":320,\"height\":265},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/9/91/Von_Erich_family.jpg\",\"width\":347,\"height\":287},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223233909\",\"tid\":\"e5b38ad9-0efe-11ef-a72e-c845a4d963b4\",\"timestamp\":\"2024-05-10T18:55:41Z\",\"description\":\"Professional wrestling family\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Von_Erich_family\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Von_Erich_family\",\"edit\":\"https://en.m.wikipedia.org/wiki/Von_Erich_family?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Von_Erich_family\"}},\"extract\":\"The Von Erich family is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eVon Erich family\u003c/b\u003e is an American professional wrestling family. Originally from Texas, their actual surname is Adkisson, but every member who has been in the wrestling business has used the ring name \\\"Von Erich,\\\" after the family patriarch, Fritz Von Erich. Jack took on the name as part of his wrestling gimmick as he originally portrayed a Nazi heel, hence his use of a German name.\u003c/p\u003e\",\"normalizedtitle\":\"Von Erich family\"},{\"views\":128729,\"rank\":19,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":1913},{\"date\":\"2024-05-16Z\",\"views\":2288},{\"date\":\"2024-05-17Z\",\"views\":3124},{\"date\":\"2024-05-18Z\",\"views\":17737},{\"date\":\"2024-05-19Z\",\"views\":128729}],\"type\":\"standard\",\"title\":\"Bryson_DeChambeau\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q21005578\",\"titles\":{\"canonical\":\"Bryson_DeChambeau\",\"normalized\":\"Bryson DeChambeau\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBryson DeChambeau\u003c/span\u003e\"},\"pageid\":47622225,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Bryson_DeChambeau.jpg/320px-Bryson_DeChambeau.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/7c/Bryson_DeChambeau.jpg\",\"width\":2644,\"height\":1763},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224700138\",\"tid\":\"b820c411-1635-11ef-a8a9-43d83300e1fd\",\"timestamp\":\"2024-05-19T23:15:45Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bryson_DeChambeau\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bryson_DeChambeau?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bryson_DeChambeau\"}},\"extract\":\"Bryson James Aldrich DeChambeau is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eBryson James Aldrich DeChambeau\u003c/b\u003e is an American professional golfer who plays on the LIV Golf League. He formerly played on the PGA Tour, and has won one major championship, the 2020 U.S. Open.\u003c/p\u003e\",\"normalizedtitle\":\"Bryson DeChambeau\"},{\"views\":128283,\"rank\":20,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":134913},{\"date\":\"2024-05-16Z\",\"views\":132640},{\"date\":\"2024-05-17Z\",\"views\":134056},{\"date\":\"2024-05-18Z\",\"views\":124786},{\"date\":\"2024-05-19Z\",\"views\":128283}],\"type\":\"standard\",\"title\":\"Deaths_in_2024\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123489953\",\"titles\":{\"canonical\":\"Deaths_in_2024\",\"normalized\":\"Deaths in 2024\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDeaths in 2024\u003c/span\u003e\"},\"pageid\":74988902,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761100\",\"tid\":\"72400b81-1686-11ef-823c-b09c71a5d107\",\"timestamp\":\"2024-05-20T08:53:37Z\",\"description\":\"List of notable deaths in a year\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Deaths_in_2024\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Deaths_in_2024\",\"edit\":\"https://en.m.wikipedia.org/wiki/Deaths_in_2024?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Deaths_in_2024\"}},\"extract\":\"\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:Name, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\",\"extract_html\":\"\u003cp\u003e\\n\\nThe following notable deaths occurred in 2024. Names are reported under the date of death, in alphabetical order. A typical entry reports information in the following sequence:\u003c/p\u003e\u003cul\u003e\u003cli\u003eName, age, country of citizenship at birth, subsequent nationality, what subject was noted for, cause of death, and reference.\u003c/li\u003e\u003c/ul\u003e\",\"normalizedtitle\":\"Deaths in 2024\"},{\"views\":120215,\"rank\":22,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43920},{\"date\":\"2024-05-16Z\",\"views\":27198},{\"date\":\"2024-05-17Z\",\"views\":20260},{\"date\":\"2024-05-18Z\",\"views\":23010},{\"date\":\"2024-05-19Z\",\"views\":120215}],\"type\":\"standard\",\"title\":\"Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q9448\",\"titles\":{\"canonical\":\"Premier_League\",\"normalized\":\"Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePremier League\u003c/span\u003e\"},\"pageid\":11250,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/320px-Premier_League_Logo.svg.png\",\"width\":320,\"height\":134},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Premier_League_Logo.svg/205px-Premier_League_Logo.svg.png\",\"width\":205,\"height\":86},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224757578\",\"tid\":\"19ba347d-1681-11ef-878b-0ef227dbb1b5\",\"timestamp\":\"2024-05-20T08:15:21Z\",\"description\":\"Association football league in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Premier_League\"}},\"extract\":\"The Premier League is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePremier\u003c/b\u003e \u003cb\u003eLeague\u003c/b\u003e is the highest level of the English football league system. Contested by 20 clubs, it operates on a system of promotion and relegation with the English Football League (EFL). Seasons usually run from August to May, with each team playing 38 matches: two against each other, one home and one away. Most games are played on Saturday and Sunday afternoons, with occasional weekday evening fixtures.\u003c/p\u003e\",\"normalizedtitle\":\"Premier League\"},{\"views\":115248,\"rank\":23,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":23017},{\"date\":\"2024-05-16Z\",\"views\":22511},{\"date\":\"2024-05-17Z\",\"views\":26476},{\"date\":\"2024-05-18Z\",\"views\":25446},{\"date\":\"2024-05-19Z\",\"views\":115248}],\"type\":\"standard\",\"title\":\"Sabrina_Carpenter\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7396400\",\"titles\":{\"canonical\":\"Sabrina_Carpenter\",\"normalized\":\"Sabrina Carpenter\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSabrina Carpenter\u003c/span\u003e\"},\"pageid\":36791152,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png/320px-Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":320,\"height\":430},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/fa/Sabrina_Carpenter_Vogue_2020_%2808%29.png\",\"width\":640,\"height\":860},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708353\",\"tid\":\"6f2126e6-163e-11ef-9063-d525eab0005c\",\"timestamp\":\"2024-05-20T00:18:08Z\",\"description\":\"American singer and actress (born 1999)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sabrina_Carpenter\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sabrina_Carpenter?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sabrina_Carpenter\"}},\"extract\":\"Sabrina Annlynn Carpenter is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series Law \u0026 Order: Special Victims Unit (2011) and a recurring role on the sitcom The Goodwin Games (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series Girl Meets World (2014–2017) and the adventure comedy film Adventures in Babysitting (2016). She has since starred in feature films such as Horns (2013), The Hate U Give (2018), The Short History of the Long Road (2019), Clouds (2020), and Emergency (2022), as well as the Netflix productions Tall Girl (2019), Tall Girl 2 (2022), and Work It (2020), the latter of which she executive-produced.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSabrina Annlynn Carpenter\u003c/b\u003e is an American singer and actress. She made her acting debut in 2011, with an appearance on the crime drama series \u003ci\u003eLaw \u0026amp; Order: Special Victims Unit\u003c/i\u003e (2011) and a recurring role on the sitcom \u003ci\u003eThe Goodwin Games\u003c/i\u003e (2013). She gained recognition as a Disney Channel personality, playing lead roles in the comedy series \u003ci\u003eGirl Meets World\u003c/i\u003e (2014–2017) and the adventure comedy film \u003ci\u003eAdventures in Babysitting\u003c/i\u003e (2016). She has since starred in feature films such as \u003cspan\u003e\u003ci\u003eHorns\u003c/i\u003e\u003c/span\u003e (2013), \u003cspan\u003e\u003ci\u003eThe Hate U Give\u003c/i\u003e\u003c/span\u003e (2018), \u003ci\u003eThe Short History of the Long Road\u003c/i\u003e (2019), \u003ci\u003eClouds\u003c/i\u003e (2020), and \u003ci\u003eEmergency\u003c/i\u003e (2022), as well as the Netflix productions \u003ci\u003eTall Girl\u003c/i\u003e (2019), \u003ci\u003eTall Girl 2\u003c/i\u003e (2022), and \u003ci\u003eWork It\u003c/i\u003e (2020), the latter of which she executive-produced.\u003c/p\u003e\",\"normalizedtitle\":\"Sabrina Carpenter\"},{\"views\":114948,\"rank\":24,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11366},{\"date\":\"2024-05-16Z\",\"views\":11514},{\"date\":\"2024-05-17Z\",\"views\":89546},{\"date\":\"2024-05-18Z\",\"views\":180281},{\"date\":\"2024-05-19Z\",\"views\":114948}],\"type\":\"standard\",\"title\":\"Sean_Combs\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q216936\",\"titles\":{\"canonical\":\"Sean_Combs\",\"normalized\":\"Sean Combs\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSean Combs\u003c/span\u003e\"},\"pageid\":152447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Sean_Combs_2010.jpg/320px-Sean_Combs_2010.jpg\",\"width\":320,\"height\":389},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/13/Sean_Combs_2010.jpg\",\"width\":2592,\"height\":3153},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720943\",\"tid\":\"fecdd506-164c-11ef-88d8-9906b2960379\",\"timestamp\":\"2024-05-20T02:02:22Z\",\"description\":\"American rapper and record executive (born 1969)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Sean_Combs\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Sean_Combs\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Sean_Combs\",\"edit\":\"https://en.m.wikipedia.org/wiki/Sean_Combs?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Sean_Combs\"}},\"extract\":\"Sean Love Combs, also known by his stage name Diddy, and formerly P. Diddy and Puff Daddy is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSean Love Combs\u003c/b\u003e, also known by his stage name \u003cb\u003eDiddy\u003c/b\u003e, and formerly \u003cb\u003eP. Diddy\u003c/b\u003e and \u003cb\u003ePuff Daddy\u003c/b\u003e is an American rapper, record producer and record executive. Born in Harlem and raised in Mount Vernon, New York, Combs worked as a talent director at Uptown Records before founding his own record label, Bad Boy Records, in 1993. Combs has been credited with the discovery and cultivation of artists such as the Notorious B.I.G., Mary J. Blige, and Usher.\u003c/p\u003e\",\"normalizedtitle\":\"Sean Combs\"},{\"views\":111749,\"rank\":25,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":121521},{\"date\":\"2024-05-16Z\",\"views\":109653},{\"date\":\"2024-05-17Z\",\"views\":101221},{\"date\":\"2024-05-18Z\",\"views\":95942},{\"date\":\"2024-05-19Z\",\"views\":111749}],\"type\":\"standard\",\"title\":\"2024_Indian_general_election\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65042773\",\"titles\":{\"canonical\":\"2024_Indian_general_election\",\"normalized\":\"2024 Indian general election\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Indian general election\u003c/span\u003e\"},\"pageid\":52456392,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/320px-Lok_Sabha_Constituencies.svg.png\",\"width\":320,\"height\":339},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Lok_Sabha_Constituencies.svg/1449px-Lok_Sabha_Constituencies.svg.png\",\"width\":1449,\"height\":1534},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224752556\",\"tid\":\"afea7f06-1679-11ef-a74b-98f7bb4ca23b\",\"timestamp\":\"2024-05-20T07:22:17Z\",\"description\":\"18th Lok Sabha member election\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Indian_general_election\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Indian_general_election\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Indian_general_election?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Indian_general_election\"}},\"extract\":\"General elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\",\"extract_html\":\"\u003cp\u003eGeneral elections are being held in India from 19 April to 1 June 2024 in seven phases, to elect all 543 members of the Lok Sabha. The votes will be counted and the results will be declared on 4 June 2024.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Indian general election\"},{\"views\":102940,\"rank\":26,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":9395},{\"date\":\"2024-05-16Z\",\"views\":9365},{\"date\":\"2024-05-17Z\",\"views\":8982},{\"date\":\"2024-05-18Z\",\"views\":8728},{\"date\":\"2024-05-19Z\",\"views\":102940}],\"type\":\"standard\",\"title\":\"Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q794\",\"titles\":{\"canonical\":\"Iran\",\"normalized\":\"Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIran\u003c/span\u003e\"},\"pageid\":14653,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/320px-Flag_of_Iran.svg.png\",\"width\":320,\"height\":183},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/630px-Flag_of_Iran.svg.png\",\"width\":630,\"height\":360},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761267\",\"tid\":\"b33823f2-1686-11ef-bbf2-466cfb7e9253\",\"timestamp\":\"2024-05-20T08:55:26Z\",\"description\":\"Country in West Asia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":32,\"lon\":53},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Iran\"}},\"extract\":\"Iran, officially the Islamic Republic of Iran (IRI), also known by its Western-given name Persia, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km2, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eIran\u003c/b\u003e, officially the \u003cb\u003eIslamic Republic of Iran\u003c/b\u003e (\u003cb\u003eIRI\u003c/b\u003e), also known by its Western-given name \u003cb\u003ePersia\u003c/b\u003e, is a country in West Asia. It is bordered by Iraq to the west and Turkey to the northwest, Azerbaijan, Armenia, the Caspian Sea and Turkmenistan to the north, Afghanistan to the east, Pakistan to the southeast, the Gulf of Oman and the Persian Gulf to the south. With a mostly Persian-ethnic population of almost 90 million in an area of 1,648,195 km\u003csup\u003e2\u003c/sup\u003e, Iran ranks 17th globally in both geographic size and population. It is the sixth-largest country entirely in Asia, the second-largest in West Asia, and one of the world's most mountainous countries. Officially an Islamic republic, Iran has a Muslim-majority population. The country is divided into five regions with 31 provinces. The nation's capital and most populous city is Tehran, with around 16 million people in its metropolitan area. Other major cities include Mashhad, Isfahan, Karaj, and Shiraz.\u003c/p\u003e\",\"normalizedtitle\":\"Iran\"},{\"views\":102381,\"rank\":27,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20208},{\"date\":\"2024-05-16Z\",\"views\":52903},{\"date\":\"2024-05-17Z\",\"views\":93129},{\"date\":\"2024-05-18Z\",\"views\":102885},{\"date\":\"2024-05-19Z\",\"views\":102381}],\"type\":\"standard\",\"title\":\"Nicola_Coughlan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38769353\",\"titles\":{\"canonical\":\"Nicola_Coughlan\",\"normalized\":\"Nicola Coughlan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNicola Coughlan\u003c/span\u003e\"},\"pageid\":55149709,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png/320px-Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":320,\"height\":368},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Nicola_Coughlan_Vogue_Taiwan%2C_April_2021.png\",\"width\":940,\"height\":1080},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224400683\",\"tid\":\"03bb6452-14d4-11ef-88fb-c7fedc3e3bb9\",\"timestamp\":\"2024-05-18T05:03:50Z\",\"description\":\"Irish actress (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Nicola_Coughlan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Nicola_Coughlan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Nicola_Coughlan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Nicola_Coughlan\"}},\"extract\":\"Nicola Mary Coughlan is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom Derry Girls (2018–2022) and Penelope Featherington in Netflix period drama Bridgerton (2020–present).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNicola Mary Coughlan\u003c/b\u003e is an Irish actress. She is known for her roles as Clare Devlin in Channel 4 sitcom \u003ci\u003eDerry Girls\u003c/i\u003e (2018–2022) and Penelope Featherington in Netflix period drama \u003ci\u003eBridgerton\u003c/i\u003e (2020–present).\u003c/p\u003e\",\"normalizedtitle\":\"Nicola Coughlan\"},{\"views\":100305,\"rank\":28,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":47982},{\"date\":\"2024-05-16Z\",\"views\":42598},{\"date\":\"2024-05-17Z\",\"views\":38349},{\"date\":\"2024-05-18Z\",\"views\":58900},{\"date\":\"2024-05-19Z\",\"views\":100305}],\"type\":\"standard\",\"title\":\"Kevin_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2715122\",\"titles\":{\"canonical\":\"Kevin_Von_Erich\",\"normalized\":\"Kevin Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKevin Von Erich\u003c/span\u003e\"},\"pageid\":1869311,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Kevin_Von_Erich%2C_1983.jpg/320px-Kevin_Von_Erich%2C_1983.jpg\",\"width\":320,\"height\":471},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Kevin_Von_Erich%2C_1983.jpg\",\"width\":981,\"height\":1445},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224722593\",\"tid\":\"157528a9-164f-11ef-8228-7e49738841df\",\"timestamp\":\"2024-05-20T02:17:19Z\",\"description\":\"American professional wrestler (born 1957)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kevin_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kevin_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kevin_Von_Erich\"}},\"extract\":\"Kevin Ross Adkisson is an American retired professional wrestler, better known by his ring name, Kevin Von Erich. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKevin Ross Adkisson\u003c/b\u003e is an American retired professional wrestler, better known by his ring name, \u003cb\u003eKevin Von Erich\u003c/b\u003e. A member of the Von Erich family, Von Erich is best known for his appearances with his father's World Class Championship Wrestling promotion. He is a former world champion, having once held the WCWA World Heavyweight Championship.\u003c/p\u003e\",\"normalizedtitle\":\"Kevin Von Erich\"},{\"views\":100027,\"rank\":29,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":13293},{\"date\":\"2024-05-16Z\",\"views\":15323},{\"date\":\"2024-05-17Z\",\"views\":38460},{\"date\":\"2024-05-18Z\",\"views\":206318},{\"date\":\"2024-05-19Z\",\"views\":100027}],\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"views\":98776,\"rank\":31,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":12624},{\"date\":\"2024-05-16Z\",\"views\":15082},{\"date\":\"2024-05-17Z\",\"views\":22866},{\"date\":\"2024-05-18Z\",\"views\":35154},{\"date\":\"2024-05-19Z\",\"views\":98776}],\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"views\":97935,\"rank\":32,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":172415},{\"date\":\"2024-05-16Z\",\"views\":343276},{\"date\":\"2024-05-17Z\",\"views\":256942},{\"date\":\"2024-05-18Z\",\"views\":140047},{\"date\":\"2024-05-19Z\",\"views\":97935}],\"type\":\"standard\",\"title\":\"Yasuke\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q609006\",\"titles\":{\"canonical\":\"Yasuke\",\"normalized\":\"Yasuke\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eYasuke\u003c/span\u003e\"},\"pageid\":3216877,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224755148\",\"tid\":\"3fddef84-167d-11ef-b84e-54d87c0a5a1a\",\"timestamp\":\"2024-05-20T07:47:47Z\",\"description\":\"African retainer of Oda Nobunaga\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.wikipedia.org/wiki/Yasuke?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Yasuke\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Yasuke\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Yasuke\",\"edit\":\"https://en.m.wikipedia.org/wiki/Yasuke?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Yasuke\"}},\"extract\":\"Yasuke was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a koshō (小姓) for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eYasuke\u003c/b\u003e was a man of African origin who served as a retainer to the Japanese daimyō Oda Nobunaga in 1581–1582, during the Sengoku period. He was retained by the daimyō as a \u003cspan\u003e\u003ci lang=\\\"ja-Latn\\\"\u003ekoshō\u003c/i\u003e\u003c/span\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e (小姓)\u003c/span\u003e for a period of 15 months until Nobunaga's death in the Honnō-ji Incident.\u003c/p\u003e\",\"normalizedtitle\":\"Yasuke\"},{\"views\":93922,\"rank\":33,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":42252},{\"date\":\"2024-05-16Z\",\"views\":54431},{\"date\":\"2024-05-17Z\",\"views\":82478},{\"date\":\"2024-05-18Z\",\"views\":101987},{\"date\":\"2024-05-19Z\",\"views\":93922}],\"type\":\"standard\",\"title\":\"IF_(film)\",\"displaytitle\":\"\u003ci\u003eIF\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111918059\",\"titles\":{\"canonical\":\"IF_(film)\",\"normalized\":\"IF (film)\",\"display\":\"\u003ci\u003eIF\u003c/i\u003e (film)\"},\"pageid\":69880978,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/a/a7/IF_%28film%29_poster_2.jpg\",\"width\":260,\"height\":383},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761294\",\"tid\":\"c0552418-1686-11ef-bf1c-59d78677808e\",\"timestamp\":\"2024-05-20T08:55:48Z\",\"description\":\"2024 film directed by John Krasinski\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/IF_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:IF_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/IF_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/IF_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/IF_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:IF_(film)\"}},\"extract\":\"IF is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eIF\u003c/b\u003e\u003c/i\u003e is a 2024 American live-action animated fantasy comedy film written, produced, and directed by John Krasinski. The film features an ensemble cast that includes Cailey Fleming, Ryan Reynolds, Krasinski, Fiona Shaw, Alan Kim, and Liza Colón-Zayas, along with the voices of Phoebe Waller-Bridge, Louis Gossett Jr., and Steve Carell. Its plot follows a young girl and her neighbor who find themselves able to see imaginary friends.\u003c/p\u003e\",\"normalizedtitle\":\"IF (film)\"},{\"views\":93645,\"rank\":34,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":34052},{\"date\":\"2024-05-16Z\",\"views\":17584},{\"date\":\"2024-05-17Z\",\"views\":14247},{\"date\":\"2024-05-18Z\",\"views\":14404},{\"date\":\"2024-05-19Z\",\"views\":93645}],\"type\":\"standard\",\"title\":\"Manchester_City_F.C.\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q50602\",\"titles\":{\"canonical\":\"Manchester_City_F.C.\",\"normalized\":\"Manchester City F.C.\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eManchester City F.C.\u003c/span\u003e\"},\"pageid\":165813,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/320px-Manchester_City_FC_badge.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Manchester_City_FC_badge.svg/316px-Manchester_City_FC_badge.svg.png\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760752\",\"tid\":\"eaf2af8c-1685-11ef-91f4-03bce1104f59\",\"timestamp\":\"2024-05-20T08:49:50Z\",\"description\":\"Association football club in England\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Manchester_City_F.C.\",\"edit\":\"https://en.m.wikipedia.org/wiki/Manchester_City_F.C.?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Manchester_City_F.C.\"}},\"extract\":\"Manchester City Football Club is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as St. Mark's , they became Ardwick Association Football Club in 1887 and Manchester City in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eManchester City Football Club\u003c/b\u003e is a professional football club based in Manchester, England, that competes in the Premier League, the top flight of English football. Founded in 1880 as \u003cb\u003eSt. Mark's \u003c/b\u003e, they became \u003cb\u003eArdwick Association Football Club\u003c/b\u003e in 1887 and \u003cb\u003eManchester City\u003c/b\u003e in 1894. The club's home ground is the City of Manchester Stadium in east Manchester, to which they moved in 2003, having played at Maine Road since 1923. Manchester City adopted their sky blue home shirts in 1894, the first season with the current name. Over the course of its history, the club has won ten league titles, seven FA Cups, eight League Cups, six FA Community Shields, one UEFA Champions League, one European Cup Winners' Cup, one UEFA Super Cup and one FIFA Club World Cup.\u003c/p\u003e\",\"normalizedtitle\":\"Manchester City F.C.\"},{\"views\":91458,\"rank\":35,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":104837},{\"date\":\"2024-05-16Z\",\"views\":106573},{\"date\":\"2024-05-17Z\",\"views\":101748},{\"date\":\"2024-05-18Z\",\"views\":97373},{\"date\":\"2024-05-19Z\",\"views\":91458}],\"type\":\"standard\",\"title\":\"Heeramandi\",\"displaytitle\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q124416531\",\"titles\":{\"canonical\":\"Heeramandi\",\"normalized\":\"Heeramandi\",\"display\":\"\u003ci\u003eHeeramandi\u003c/i\u003e\"},\"pageid\":75973852,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/e/ea/Heeramandi_Poster.jpg\",\"width\":316,\"height\":316},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759116\",\"tid\":\"85051d34-1683-11ef-8886-ceddedb7788d\",\"timestamp\":\"2024-05-20T08:32:40Z\",\"description\":\"2024 Indian television series\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.wikipedia.org/wiki/Heeramandi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heeramandi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heeramandi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heeramandi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heeramandi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heeramandi\"}},\"extract\":\"Heeramandi: The Diamond Bazaar is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of tawaifs in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eHeeramandi: The Diamond Bazaar\u003c/b\u003e\u003c/i\u003e is a 2024 Indian period drama television series created and directed by Sanjay Leela Bhansali. The series is about the lives of \u003ci\u003etawaifs\u003c/i\u003e in the red-light district of Heera Mandi in Lahore during the Indian independence movement against the British Raj. It stars Manisha Koirala, Sonakshi Sinha, Aditi Rao Hydari, Richa Chadha, Sanjeeda Sheikh, Sharmin Segal Mehta and Taha Shah Badussha.\u003c/p\u003e\",\"normalizedtitle\":\"Heeramandi\"},{\"views\":88688,\"rank\":36,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":43517},{\"date\":\"2024-05-16Z\",\"views\":38186},{\"date\":\"2024-05-17Z\",\"views\":34285},{\"date\":\"2024-05-18Z\",\"views\":51483},{\"date\":\"2024-05-19Z\",\"views\":88688}],\"type\":\"standard\",\"title\":\"Kerry_Von_Erich\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2412965\",\"titles\":{\"canonical\":\"Kerry_Von_Erich\",\"normalized\":\"Kerry Von Erich\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKerry Von Erich\u003c/span\u003e\"},\"pageid\":1691476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Kerry_Von_Erich%2C_1987.jpg/320px-Kerry_Von_Erich%2C_1987.jpg\",\"width\":320,\"height\":440},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e4/Kerry_Von_Erich%2C_1987.jpg\",\"width\":698,\"height\":959},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224721576\",\"tid\":\"cc70a9f4-164d-11ef-8b77-7b4af72151b5\",\"timestamp\":\"2024-05-20T02:08:07Z\",\"description\":\"American professional wrestler (1960–1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kerry_Von_Erich\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kerry_Von_Erich?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kerry_Von_Erich\"}},\"extract\":\"Kerry Gene Adkisson, better known by his ring name Kerry Von Erich, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name the Texas Tornado. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eKerry Gene Adkisson\u003c/b\u003e, better known by his ring name \u003cb\u003eKerry Von Erich\u003c/b\u003e, was an American professional wrestler. He was part of the Von Erich family of professional wrestlers. He is best known for his time with his father's promotion World Class Championship Wrestling (WCCW), where he spent eleven years of his career, and his time in World Wrestling Federation (WWF), under the ring name \u003cb\u003ethe Texas Tornado\u003c/b\u003e. Adkisson held forty championships in various promotions during his career. Among other accolades, he was a one-time NWA Worlds Heavyweight Champion, four-time WCWA World Heavyweight Champion, making him an overall five-time world champion and one-time WWF Intercontinental Champion.\u003c/p\u003e\",\"normalizedtitle\":\"Kerry Von Erich\"},{\"views\":87434,\"rank\":37,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":37832},{\"date\":\"2024-05-16Z\",\"views\":33581},{\"date\":\"2024-05-17Z\",\"views\":59399},{\"date\":\"2024-05-18Z\",\"views\":90539},{\"date\":\"2024-05-19Z\",\"views\":87434}],\"type\":\"standard\",\"title\":\"Challengers_(film)\",\"displaytitle\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q111458251\",\"titles\":{\"canonical\":\"Challengers_(film)\",\"normalized\":\"Challengers (film)\",\"display\":\"\u003ci\u003eChallengers\u003c/i\u003e (film)\"},\"pageid\":70047803,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/b/b4/Challengers_2024_poster.jpeg\",\"width\":220,\"height\":326},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759752\",\"tid\":\"7c610288-1684-11ef-8ddb-c5ae88e82460\",\"timestamp\":\"2024-05-20T08:39:35Z\",\"description\":\"2024 film by Luca Guadagnino\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Challengers_(film)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Challengers_(film)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Challengers_(film)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Challengers_(film)\"}},\"extract\":\"Challengers is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eChallengers\u003c/b\u003e\u003c/i\u003e is a 2024 American romantic sports drama film directed by Luca Guadagnino from a screenplay by Justin Kuritzkes. It follows a professional tennis champion who plots a comeback with the help of his wife (Zendaya), a former tennis prodigy forced to retire after an injury, as he goes up against another player, who also happens to be his former best friend and wife's ex-boyfriend.\u003c/p\u003e\",\"normalizedtitle\":\"Challengers (film)\"},{\"views\":87403,\"rank\":38,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":926},{\"date\":\"2024-05-16Z\",\"views\":937},{\"date\":\"2024-05-17Z\",\"views\":109907},{\"date\":\"2024-05-18Z\",\"views\":206582},{\"date\":\"2024-05-19Z\",\"views\":87403}],\"type\":\"standard\",\"title\":\"Dabney_Coleman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q446717\",\"titles\":{\"canonical\":\"Dabney_Coleman\",\"normalized\":\"Dabney Coleman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eDabney Coleman\u003c/span\u003e\"},\"pageid\":582584,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Dabney_Coleman_%28actor%29.jpg/320px-Dabney_Coleman_%28actor%29.jpg\",\"width\":320,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b0/Dabney_Coleman_%28actor%29.jpg\",\"width\":900,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224733400\",\"tid\":\"545eb988-165e-11ef-a9d8-6dd2ccf1ed76\",\"timestamp\":\"2024-05-20T04:06:27Z\",\"description\":\"American actor (1932–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Dabney_Coleman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Dabney_Coleman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Dabney_Coleman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Dabney_Coleman\"}},\"extract\":\"Dabney Wharton Coleman was an American actor. Coleman's best known films include 9 to 5 (1980), On Golden Pond (1981), Tootsie (1982), WarGames (1983), Cloak \u0026 Dagger (1984), The Muppets Take Manhattan (1984), The Beverly Hillbillies (1993), You've Got Mail (1998), Inspector Gadget (1999), Recess: School's Out (2001), Moonlight Mile (2002), and Rules Don't Apply (2016).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eDabney Wharton Coleman\u003c/b\u003e was an American actor. Coleman's best known films include \u003ci\u003e9 to 5\u003c/i\u003e (1980), \u003ci\u003eOn Golden Pond\u003c/i\u003e (1981), \u003ci\u003eTootsie\u003c/i\u003e (1982), \u003ci\u003eWarGames\u003c/i\u003e (1983), \u003ci\u003eCloak \u0026amp; Dagger\u003c/i\u003e (1984), \u003ci\u003eThe Muppets Take Manhattan\u003c/i\u003e (1984), \u003ci\u003eThe Beverly Hillbillies\u003c/i\u003e (1993), \u003ci\u003eYou've Got Mail\u003c/i\u003e (1998), \u003ci\u003eInspector Gadget\u003c/i\u003e (1999), \u003ci\u003eRecess: School's Out\u003c/i\u003e (2001), \u003ci\u003eMoonlight Mile\u003c/i\u003e (2002), and \u003ci\u003eRules Don't Apply\u003c/i\u003e (2016).\u003c/p\u003e\",\"normalizedtitle\":\"Dabney Coleman\"},{\"views\":84234,\"rank\":39,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57889},{\"date\":\"2024-05-16Z\",\"views\":69001},{\"date\":\"2024-05-17Z\",\"views\":77667},{\"date\":\"2024-05-18Z\",\"views\":75258},{\"date\":\"2024-05-19Z\",\"views\":84234}],\"type\":\"standard\",\"title\":\"Kepler's_Supernova\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q320670\",\"titles\":{\"canonical\":\"Kepler's_Supernova\",\"normalized\":\"Kepler's Supernova\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKepler\u0026#039;s Supernova\u003c/span\u003e\"},\"pageid\":39663,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Keplers_supernova.jpg/320px-Keplers_supernova.jpg\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d4/Keplers_supernova.jpg\",\"width\":750,\"height\":750},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217628267\",\"tid\":\"ff7c1fad-f46d-11ee-8a2b-b71fdb190b1f\",\"timestamp\":\"2024-04-06T23:32:57Z\",\"description\":\"Supernova visible from Earth in the 17th century\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kepler's_Supernova\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kepler's_Supernova\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kepler's_Supernova?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kepler's_Supernova\"}},\"extract\":\"SN 1604, also known as Kepler's Supernova, Kepler's Nova or Kepler's Star, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in De Stella Nova.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSN 1604\u003c/b\u003e, also known as \u003cb\u003eKepler's Supernova\u003c/b\u003e, \u003cb\u003eKepler's Nova\u003c/b\u003e or \u003cb\u003eKepler's Star\u003c/b\u003e, was a Type Ia supernova that occurred in the Milky Way, in the constellation Ophiuchus. Appearing in 1604, it is the most recent supernova in the Milky Way galaxy to have been unquestionably observed by the naked eye, occurring no farther than 6 kiloparsecs from Earth. Before the adoption of the current naming system for supernovae, it was named for Johannes Kepler, the German astronomer who described it in \u003ci\u003eDe Stella Nova\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Kepler's Supernova\"},{\"views\":83143,\"rank\":40,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":11273},{\"date\":\"2024-05-16Z\",\"views\":37934},{\"date\":\"2024-05-17Z\",\"views\":68882},{\"date\":\"2024-05-18Z\",\"views\":80204},{\"date\":\"2024-05-19Z\",\"views\":83143}],\"type\":\"standard\",\"title\":\"Luke_Newton\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q65959509\",\"titles\":{\"canonical\":\"Luke_Newton\",\"normalized\":\"Luke Newton\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuke Newton\u003c/span\u003e\"},\"pageid\":61378898,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224327119\",\"tid\":\"d17d1698-1479-11ef-a64e-1755fe584418\",\"timestamp\":\"2024-05-17T18:18:11Z\",\"description\":\"English actor (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luke_Newton\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luke_Newton\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luke_Newton\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luke_Newton?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luke_Newton\"}},\"extract\":\"Luke Paul Anthony Newton is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series Bridgerton (2020–present). He also had roles in the BBC Two drama The Cut (2009) and the Disney Channel series The Lodge (2016–2017).\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuke Paul Anthony Newton\u003c/b\u003e is an English actor. He is known for playing Colin, the third Bridgerton child, in the Netflix series \u003ci\u003eBridgerton\u003c/i\u003e (2020–present). He also had roles in the BBC Two drama \u003ci\u003eThe Cut\u003c/i\u003e (2009) and the Disney Channel series \u003ci\u003eThe Lodge\u003c/i\u003e (2016–2017).\u003c/p\u003e\",\"normalizedtitle\":\"Luke Newton\"},{\"views\":79858,\"rank\":41,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":57315},{\"date\":\"2024-05-16Z\",\"views\":115764},{\"date\":\"2024-05-17Z\",\"views\":100655},{\"date\":\"2024-05-18Z\",\"views\":68671},{\"date\":\"2024-05-19Z\",\"views\":79858}],\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"},{\"views\":79528,\"rank\":42,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":69121},{\"date\":\"2024-05-16Z\",\"views\":59919},{\"date\":\"2024-05-17Z\",\"views\":60188},{\"date\":\"2024-05-18Z\",\"views\":72976},{\"date\":\"2024-05-19Z\",\"views\":79528}],\"type\":\"standard\",\"title\":\"Planet_of_the_Apes\",\"displaytitle\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q731663\",\"titles\":{\"canonical\":\"Planet_of_the_Apes\",\"normalized\":\"Planet of the Apes\",\"display\":\"\u003ci\u003ePlanet of the Apes\u003c/i\u003e\"},\"pageid\":24404702,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/320px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":320,\"height\":159},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Planet_of_the_Apes_%28logo%29.svg/512px-Planet_of_the_Apes_%28logo%29.svg.png\",\"width\":512,\"height\":255},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224696472\",\"tid\":\"dafc972e-1630-11ef-93d3-6c08e330352f\",\"timestamp\":\"2024-05-19T22:40:56Z\",\"description\":\"American science fiction media franchise\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Planet_of_the_Apes\",\"edit\":\"https://en.m.wikipedia.org/wiki/Planet_of_the_Apes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Planet_of_the_Apes\"}},\"extract\":\"Planet of the Apes is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel La Planète des singes, translated into English as Planet of the Apes or Monkey Planet. Its 1968 film adaptation, Planet of the Apes, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five Apes films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003ePlanet of the Apes\u003c/b\u003e\u003c/i\u003e is an American science fiction media franchise consisting of films, books, television series, comics, and other media about a post-apocalyptic world in which humans and superintelligent apes clash for control. The franchise started with French author Pierre Boulle's 1963 novel \u003ci\u003eLa Planète des singes\u003c/i\u003e, translated into English as \u003ci\u003ePlanet of the Apes\u003c/i\u003e or \u003ci\u003eMonkey Planet\u003c/i\u003e. Its 1968 film adaptation, \u003ci\u003ePlanet of the Apes\u003c/i\u003e, was a critical and commercial hit, initiating a series of sequels, tie-ins, and derivative works. Arthur P. Jacobs produced the first five \u003ci\u003eApes\u003c/i\u003e films through APJAC Productions for distributor 20th Century Fox; following his death in 1973, Fox controlled the franchise.\u003c/p\u003e\",\"normalizedtitle\":\"Planet of the Apes\"},{\"views\":78845,\"rank\":43,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":20714},{\"date\":\"2024-05-16Z\",\"views\":11398},{\"date\":\"2024-05-17Z\",\"views\":11901},{\"date\":\"2024-05-18Z\",\"views\":11770},{\"date\":\"2024-05-19Z\",\"views\":78845}],\"type\":\"standard\",\"title\":\"Pep_Guardiola\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q164038\",\"titles\":{\"canonical\":\"Pep_Guardiola\",\"normalized\":\"Pep Guardiola\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePep Guardiola\u003c/span\u003e\"},\"pageid\":2396553,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Pep_2017_%28cropped%29.jpg/320px-Pep_2017_%28cropped%29.jpg\",\"width\":320,\"height\":403},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/be/Pep_2017_%28cropped%29.jpg\",\"width\":338,\"height\":426},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224652145\",\"tid\":\"61997d82-1601-11ef-ad9f-52b3c7e7b2d3\",\"timestamp\":\"2024-05-19T17:01:06Z\",\"description\":\"Spanish football manager (born 1971)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pep_Guardiola\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pep_Guardiola\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pep_Guardiola?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pep_Guardiola\"}},\"extract\":\"Josep \\\"Pep\\\" Guardiola Sala is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJosep\u003c/b\u003e \\\"\u003cb\u003ePep\u003c/b\u003e\\\" \u003cb\u003eGuardiola Sala\u003c/b\u003e is a Catalan professional football manager and former player from Spain, who is currently the manager of Premier League club Manchester City. Guardiola is the only manager to win the continental treble twice, the youngest to win the UEFA Champions League, and he also holds the records for the most consecutive league games won in La Liga, the Bundesliga and the Premier League. He is considered to be one of the greatest managers of all time.\u003c/p\u003e\",\"normalizedtitle\":\"Pep Guardiola\"},{\"views\":78308,\"rank\":44,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":6443},{\"date\":\"2024-05-16Z\",\"views\":4569},{\"date\":\"2024-05-17Z\",\"views\":5010},{\"date\":\"2024-05-18Z\",\"views\":13161},{\"date\":\"2024-05-19Z\",\"views\":78308}],\"type\":\"standard\",\"title\":\"Phil_Foden\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q30729096\",\"titles\":{\"canonical\":\"Phil_Foden\",\"normalized\":\"Phil Foden\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePhil Foden\u003c/span\u003e\"},\"pageid\":55662294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/68/Phil_Foden_2022-11-21_1.jpg\",\"width\":167,\"height\":267},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747588\",\"tid\":\"de655081-1673-11ef-ad24-3e5ee6a91bb0\",\"timestamp\":\"2024-05-20T06:40:38Z\",\"description\":\"English footballer (born 2000)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Phil_Foden\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Phil_Foden\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Phil_Foden\",\"edit\":\"https://en.m.wikipedia.org/wiki/Phil_Foden?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Phil_Foden\"}},\"extract\":\"Philip Walter Foden is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePhilip Walter Foden\u003c/b\u003e is an English professional footballer who plays as a midfielder for Premier League club Manchester City and the England national team.\u003c/p\u003e\",\"normalizedtitle\":\"Phil Foden\"},{\"views\":78043,\"rank\":45,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":236},{\"date\":\"2024-05-16Z\",\"views\":735},{\"date\":\"2024-05-17Z\",\"views\":235},{\"date\":\"2024-05-18Z\",\"views\":175},{\"date\":\"2024-05-19Z\",\"views\":78043}],\"type\":\"standard\",\"title\":\"Peter_Moore_(serial_killer)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7175943\",\"titles\":{\"canonical\":\"Peter_Moore_(serial_killer)\",\"normalized\":\"Peter Moore (serial killer)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePeter Moore (serial killer)\u003c/span\u003e\"},\"pageid\":1190598,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d2/Peter_Moore_mugshot.jpg\",\"width\":200,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224734980\",\"tid\":\"95f05085-1660-11ef-870a-bf57c93b3592\",\"timestamp\":\"2024-05-20T04:22:36Z\",\"description\":\"Welsh serial killer\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Peter_Moore_(serial_killer)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Peter_Moore_(serial_killer)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Peter_Moore_(serial_killer)\"}},\"extract\":\"Peter Howard Moore is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePeter Howard Moore\u003c/b\u003e is a British serial killer who managed cinemas in Bagillt, Holyhead, Kinmel Bay and Denbigh in North Wales at the time of his arrest. He murdered four men in 1995. Due to his trademark attire of a black shirt and tie, he was dubbed the \\\"man in black\\\".\u003c/p\u003e\",\"normalizedtitle\":\"Peter Moore (serial killer)\"},{\"views\":74988,\"rank\":46,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":35329},{\"date\":\"2024-05-16Z\",\"views\":23531},{\"date\":\"2024-05-17Z\",\"views\":15684},{\"date\":\"2024-05-18Z\",\"views\":17875},{\"date\":\"2024-05-19Z\",\"views\":74988}],\"type\":\"standard\",\"title\":\"2023–24_Premier_League\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q116977381\",\"titles\":{\"canonical\":\"2023–24_Premier_League\",\"normalized\":\"2023–24 Premier League\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2023–24 Premier League\u003c/span\u003e\"},\"pageid\":73141911,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760171\",\"tid\":\"1d4fc788-1685-11ef-821a-37a0304ca06a\",\"timestamp\":\"2024-05-20T08:44:05Z\",\"description\":\"32nd season of the Premier League\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2023%E2%80%9324_Premier_League\",\"edit\":\"https://en.m.wikipedia.org/wiki/2023%E2%80%9324_Premier_League?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2023%E2%80%9324_Premier_League\"}},\"extract\":\"The 2023–24 Premier League was the 32nd season of the Premier League and the 125th season of top-flight English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003e2023–24 Premier League\u003c/b\u003e was the 32nd season of the Premier League and the 125th season of \u003cspan class=\\\"nowrap\\\"\u003etop-flight\u003c/span\u003e English football overall. The season began on 11 August 2023, and concluded on 19 May 2024. Manchester City, the defending champions, won their fourth consecutive title and became the first men's team in English league history to achieve this feat.\u003c/p\u003e\",\"normalizedtitle\":\"2023–24 Premier League\"},{\"views\":74720,\"rank\":47,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":5690},{\"date\":\"2024-05-16Z\",\"views\":4513},{\"date\":\"2024-05-17Z\",\"views\":38958},{\"date\":\"2024-05-18Z\",\"views\":31114},{\"date\":\"2024-05-19Z\",\"views\":74720}],\"type\":\"standard\",\"title\":\"Arne_Slot\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1029223\",\"titles\":{\"canonical\":\"Arne_Slot\",\"normalized\":\"Arne Slot\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eArne Slot\u003c/span\u003e\"},\"pageid\":6962378,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Arne_Slot.jpg/320px-Arne_Slot.jpg\",\"width\":320,\"height\":323},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cd/Arne_Slot.jpg\",\"width\":1668,\"height\":1685},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224720455\",\"tid\":\"6b9498fc-164c-11ef-afc6-4c10d6411751\",\"timestamp\":\"2024-05-20T01:58:15Z\",\"description\":\"Dutch football manager (born 1978)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Arne_Slot\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Arne_Slot\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Arne_Slot\",\"edit\":\"https://en.m.wikipedia.org/wiki/Arne_Slot?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Arne_Slot\"}},\"extract\":\"Arend Martijn \\\"Arne\\\" Slot is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eArend Martijn\u003c/b\u003e \\\"\u003cb\u003eArne\u003c/b\u003e\\\" \u003cb\u003eSlot\u003c/b\u003e is a Dutch professional football manager and former player, who is currently the manager of Eredivisie club Feyenoord.\u003c/p\u003e\",\"normalizedtitle\":\"Arne Slot\"},{\"views\":74579,\"rank\":48,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":83357},{\"date\":\"2024-05-16Z\",\"views\":79186},{\"date\":\"2024-05-17Z\",\"views\":71186},{\"date\":\"2024-05-18Z\",\"views\":74546},{\"date\":\"2024-05-19Z\",\"views\":74579}],\"type\":\"standard\",\"title\":\"Baby_Reindeer\",\"displaytitle\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q115516641\",\"titles\":{\"canonical\":\"Baby_Reindeer\",\"normalized\":\"Baby Reindeer\",\"display\":\"\u003ci\u003eBaby Reindeer\u003c/i\u003e\"},\"pageid\":71952237,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/c/c1/Baby_Reindeer_TV_poster.png\",\"width\":250,\"height\":313},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761373\",\"tid\":\"dfec3363-1686-11ef-87ab-da796747ce4c\",\"timestamp\":\"2024-05-20T08:56:41Z\",\"description\":\"2024 British drama television miniseries\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Baby_Reindeer\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Baby_Reindeer\",\"edit\":\"https://en.m.wikipedia.org/wiki/Baby_Reindeer?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Baby_Reindeer\"}},\"extract\":\"Baby Reindeer is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eBaby Reindeer\u003c/b\u003e\u003c/i\u003e is a British dark comedy drama-thriller miniseries created by and starring Richard Gadd, adapted from Gadd's autobiographical one-man show of the same name. Directed by Weronika Tofilska and Josephine Bornebusch, it also stars Jessica Gunning, Nava Mau and Tom Goodman-Hill.\u003c/p\u003e\",\"normalizedtitle\":\"Baby Reindeer\"},{\"views\":74330,\"rank\":49,\"view_history\":[{\"date\":\"2024-05-15Z\",\"views\":774},{\"date\":\"2024-05-16Z\",\"views\":835},{\"date\":\"2024-05-17Z\",\"views\":652},{\"date\":\"2024-05-18Z\",\"views\":642},{\"date\":\"2024-05-19Z\",\"views\":74330}],\"type\":\"standard\",\"title\":\"Supreme_Leader_of_Iran\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q332486\",\"titles\":{\"canonical\":\"Supreme_Leader_of_Iran\",\"normalized\":\"Supreme Leader of Iran\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Leader of Iran\u003c/span\u003e\"},\"pageid\":36814344,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/320px-Emblem_of_Iran.svg.png\",\"width\":320,\"height\":315},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Emblem_of_Iran.svg/500px-Emblem_of_Iran.svg.png\",\"width\":500,\"height\":492},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224751952\",\"tid\":\"0e63165a-1679-11ef-9b8c-8ef4c55352a5\",\"timestamp\":\"2024-05-20T07:17:46Z\",\"description\":\"Head of State of Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Leader_of_Iran\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Leader_of_Iran?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Leader_of_Iran\"}},\"extract\":\"The supreme leader of Iran ), also referred to as supreme leader of the Islamic Revolution, but officially called the Supreme Leadership Authority, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003esupreme leader of Iran\u003c/b\u003e ), also referred to as \u003cb\u003esupreme leader of the Islamic Revolution\u003c/b\u003e, but officially called the \u003cb\u003eSupreme Leadership Authority\u003c/b\u003e, is the head of state and the highest political and religious authority of the Islamic Republic of Iran. The armed forces, judiciary, state television, and other key government organizations such as the Guardian Council and Expediency Discernment Council are subject to the Supreme Leader. According to the constitution, the Supreme Leader delineates the general policies of the Islamic Republic, supervising the legislature, the judiciary, and the executive branches. The current lifetime officeholder, Seyyed Ali Hosseini Khameneh known as Ali Khamenei, has issued decrees and made the final decisions on the economy, the environment, foreign policy, education, national planning, and other aspects of governance in Iran. Khamenei also makes the final decisions on the amount of transparency in elections, and has dismissed and reinstated presidential cabinet appointees. The Supreme Leader is legally considered \\\"inviolable\\\", with Iranians being routinely punished severely for questioning or insulting him.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Leader of Iran\"}]},\"image\":{\"title\":\"File:Lukmanierpass, Passo del Lucomagno. 20-09-2022. (actm.) 29.jpg\",\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":640,\"height\":960},\"image\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg\",\"width\":3217,\"height\":4826},\"file_page\":\"https://commons.wikimedia.org/wiki/File:Lukmanierpass,_Passo_del_Lucomagno._20-09-2022._(actm.)_29.jpg\",\"artist\":{\"html\":\"\u003ca href=\\\"//commons.wikimedia.org/wiki/User:Agnes_Monkelbaan\\\" title=\\\"User:Agnes Monkelbaan\\\"\u003eAgnes Monkelbaan\u003c/a\u003e\",\"text\":\"Agnes Monkelbaan\"},\"credit\":{\"html\":\"\u003cspan class=\\\"int-own-work\\\" lang=\\\"en\\\"\u003eOwn work\u003c/span\u003e\",\"text\":\"Own work\"},\"license\":{\"type\":\"CC BY-SA 4.0\",\"code\":\"cc-by-sa-4.0\",\"url\":\"https://creativecommons.org/licenses/by-sa/4.0\"},\"description\":{\"html\":\"\u003ca rel=\\\"mw:WikiLink/Interwiki\\\" href=\\\"https://en.wikipedia.org/wiki/Lukmanier%20Pass\\\" title=\\\"en:Lukmanier Pass\\\" class=\\\"extiw\\\"\u003eLukmanierpas\u003c/a\u003e Passo del Lucomagno. (Detail shelter near the pass).\",\"text\":\"Lukmanierpas Passo del Lucomagno. (Detail shelter near the pass).\",\"lang\":\"en\"},\"wb_entity_id\":\"M126575643\",\"structured\":{\"captions\":{\"nl\":\"Oude schuilhut.\"}}},\"news\":[{\"links\":[{\"type\":\"standard\",\"title\":\"2024_Varzaqan_helicopter_crash\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125986235\",\"titles\":{\"canonical\":\"2024_Varzaqan_helicopter_crash\",\"normalized\":\"2024 Varzaqan helicopter crash\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 Varzaqan helicopter crash\u003c/span\u003e\"},\"pageid\":76956347,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":320,\"height\":219},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg\",\"width\":512,\"height\":350},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224762004\",\"tid\":\"d6af99a5-1687-11ef-b545-47f186a60267\",\"timestamp\":\"2024-05-20T09:03:35Z\",\"description\":\"Aviation incident in Varzaqan, Iran\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_Varzaqan_helicopter_crash\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_Varzaqan_helicopter_crash?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_Varzaqan_helicopter_crash\"}},\"extract\":\"On 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\",\"extract_html\":\"\u003cp\u003eOn 19 May 2024, a Bell 212 helicopter crashed near Varzaqan, Iran, while en route to Tabriz from the Khoda Afarin Dam. The helicopter was carrying the president of Iran Ebrahim Raisi, foreign minister Hossein Amir-Abdollahian, governor-general of East Azerbaijan province Malek Rahmati, and Mohammad Ali Ale-Hashem, the representative of the Supreme Leader in East Azerbaijan. All nine passengers and crew were killed in the crash.\u003c/p\u003e\",\"normalizedtitle\":\"2024 Varzaqan helicopter crash\"},{\"type\":\"standard\",\"title\":\"Varzaqan\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2717308\",\"titles\":{\"canonical\":\"Varzaqan\",\"normalized\":\"Varzaqan\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eVarzaqan\u003c/span\u003e\"},\"pageid\":23547905,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9e/Gol-Akhoor_waterfall.JPG\",\"width\":1152,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224760119\",\"tid\":\"07dab147-1685-11ef-913d-fb2615993a37\",\"timestamp\":\"2024-05-20T08:43:29Z\",\"description\":\"City in East Azerbaijan province, Iran\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.50944444,\"lon\":46.65},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.wikipedia.org/wiki/Varzaqan?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Varzaqan\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Varzaqan\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Varzaqan\",\"edit\":\"https://en.m.wikipedia.org/wiki/Varzaqan?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Varzaqan\"}},\"extract\":\"Varzaqan is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eVarzaqan\u003c/b\u003e is a city in the Central District of Varzaqan County East Azerbaijan province, Iran, serving as capital of both the county and the district. It is also the administrative center for Ozomdel-e Jonubi Rural District.\u003c/p\u003e\",\"normalizedtitle\":\"Varzaqan\"},{\"type\":\"standard\",\"title\":\"Ebrahim_Raisi\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5947347\",\"titles\":{\"canonical\":\"Ebrahim_Raisi\",\"normalized\":\"Ebrahim Raisi\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eEbrahim Raisi\u003c/span\u003e\"},\"pageid\":49679283,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg/320px-Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":320,\"height\":412},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/71/Ebrahim_Raisi_%2819.05.2024%29_%28cropped%29.jpg\",\"width\":642,\"height\":826},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761876\",\"tid\":\"a536c251-1687-11ef-a78b-b3b8a2ad86a4\",\"timestamp\":\"2024-05-20T09:02:12Z\",\"description\":\"8th President of Iran from 2021 to 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ebrahim_Raisi\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ebrahim_Raisi?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ebrahim_Raisi\"}},\"extract\":\"Ebrahim Raisolsadati, commonly known as Ebrahim Raisi, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eEbrahim Raisolsadati\u003c/b\u003e, commonly known as \u003cb\u003eEbrahim Raisi\u003c/b\u003e, was an Iranian politician who served as eighth president of Iran from 2021 until his death in 2024. A Principlist and a Muslim jurist, he became president after the 2021 election.\u003c/p\u003e\",\"normalizedtitle\":\"Ebrahim Raisi\"},{\"type\":\"standard\",\"title\":\"Hossein_Amir-Abdollahian\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17991320\",\"titles\":{\"canonical\":\"Hossein_Amir-Abdollahian\",\"normalized\":\"Hossein Amir-Abdollahian\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHossein Amir-Abdollahian\u003c/span\u003e\"},\"pageid\":47309758,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":320,\"height\":434},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg\",\"width\":645,\"height\":875},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224759829\",\"tid\":\"9864b616-1684-11ef-9789-156ee85e23c6\",\"timestamp\":\"2024-05-20T08:40:22Z\",\"description\":\"Iranian politician (1964–2024)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hossein_Amir-Abdollahian\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hossein_Amir-Abdollahian?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hossein_Amir-Abdollahian\"}},\"extract\":\"Hossein Amir-Abdollahian was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHossein Amir-Abdollahian\u003c/b\u003e was an Iranian politician and diplomat who served as foreign minister of Iran from 2021 until his death in 2024. He was formerly the deputy foreign minister for Arab and African Affairs from 2011 to 2016.\u003c/p\u003e\",\"normalizedtitle\":\"Hossein Amir-Abdollahian\"}],\"story\":\"\u003c!--May 19--\u003e\u003cb id=\\\"mwBg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_Varzaqan_helicopter_crash\\\" title=\\\"2024 Varzaqan helicopter crash\\\" id=\\\"mwBw\\\"\u003eA helicopter crash\u003c/a\u003e\u003c/b\u003e near \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Varzaqan\\\" title=\\\"Varzaqan\\\" id=\\\"mwCA\\\"\u003eVarzaqan\u003c/a\u003e, Iran, kills nine people, including President \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Ebrahim_Raisi\\\" title=\\\"Ebrahim Raisi\\\" id=\\\"mwCQ\\\"\u003eEbrahim Raisi\u003c/a\u003e \u003ci id=\\\"mwCg\\\"\u003e(pictured)\u003c/i\u003e and Foreign Minister \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Hossein_Amir-Abdollahian\\\" title=\\\"Hossein Amir-Abdollahian\\\" id=\\\"mwCw\\\"\u003eHossein Amir-Abdollahian\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q123471244\",\"titles\":{\"canonical\":\"Tyson_Fury_vs_Oleksandr_Usyk\",\"normalized\":\"Tyson Fury vs Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury vs Oleksandr Usyk\u003c/span\u003e\"},\"pageid\":75330795,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/d/d7/Fury_vs_Uysk.jpeg\",\"width\":282,\"height\":353},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745169\",\"tid\":\"018df27a-1670-11ef-9565-84c38f410e2a\",\"timestamp\":\"2024-05-20T06:12:59Z\",\"description\":\"2024 professional boxing match\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury_vs_Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury_vs_Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury_vs_Oleksandr_Usyk\"}},\"extract\":\"Tyson Fury vs Oleksandr Usyk, billed as Ring of Fire, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and The Ring heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Fury vs Oleksandr Usyk\u003c/b\u003e, billed as \u003ci\u003e\u003cb\u003eRing of Fire\u003c/b\u003e\u003c/i\u003e, was a heavyweight professional boxing match contested between WBC heavyweight champion Tyson Fury and unified WBA (Super), IBF, WBO, IBO, and \u003ci\u003eThe Ring\u003c/i\u003e heavyweight champion Oleksandr Usyk for the undisputed heavyweight championship. It was scheduled to take place on 17 February 2024 at Kingdom Arena in Riyadh, Saudi Arabia, then postponed due to a facial injury sustained by Fury in training. It was rescheduled the next day and took place on 18 May 2024 at the same venue. Usyk won by split decision.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury vs Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Oleksandr_Usyk\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q938027\",\"titles\":{\"canonical\":\"Oleksandr_Usyk\",\"normalized\":\"Oleksandr Usyk\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOleksandr Usyk\u003c/span\u003e\"},\"pageid\":16021671,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg/320px-2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/2f/2022_-_Centre_Stage_EN1_4500_%2852471602047%29_%28cropped%29.jpg\",\"width\":2028,\"height\":2927},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224745558\",\"tid\":\"a6102ca0-1670-11ef-8069-1d4d94c979f8\",\"timestamp\":\"2024-05-20T06:17:35Z\",\"description\":\"Ukrainian boxer (born 1987)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oleksandr_Usyk\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oleksandr_Usyk?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oleksandr_Usyk\"}},\"extract\":\"Oleksandr Oleksandrovych Usyk is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the Ring magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOleksandr Oleksandrovych Usyk\u003c/b\u003e is a Ukrainian professional boxer. He is the undisputed heavyweight champion, holding the WBA (Super), IBF and WBO titles since 2021, the \u003ci\u003eRing\u003c/i\u003e magazine title since 2022, and the WBC title since 2024. Previously, he held the undisputed cruiserweight championship from 2018 to 2019. In both the heavyweight and cruiserweight divisions, he is the first boxer to hold all four major world titles. Usyk is only the third male boxer in history to become the undisputed champion in two weight classes in the four-belt era.\u003c/p\u003e\",\"normalizedtitle\":\"Oleksandr Usyk\"},{\"type\":\"standard\",\"title\":\"Tyson_Fury\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1000592\",\"titles\":{\"canonical\":\"Tyson_Fury\",\"normalized\":\"Tyson Fury\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTyson Fury\u003c/span\u003e\"},\"pageid\":14723736,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg/320px-Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":320,\"height\":387},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8d/Tyson_Fury_at_Place_Bell%2C_Laval_Quebec%2C_Canada_-_Dec_16_2017_%28cropped%29.jpg\",\"width\":781,\"height\":945},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224686639\",\"tid\":\"e518a23a-1624-11ef-b023-27d0ea75c007\",\"timestamp\":\"2024-05-19T21:15:19Z\",\"description\":\"British boxer (born 1988)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Tyson_Fury\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Tyson_Fury\",\"edit\":\"https://en.m.wikipedia.org/wiki/Tyson_Fury?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Tyson_Fury\"}},\"extract\":\"Tyson Luke Fury is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the Ring magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eTyson Luke Fury\u003c/b\u003e is a British professional boxer. He has held multiple heavyweight world titles, including the unified titles from 2015 to 2016, the \u003ci\u003eRing\u003c/i\u003e magazine title twice between 2015 and 2022, and the World Boxing Council (WBC) title from 2020 to 2024. He also held the International Boxing Organization (IBO) title during his first reign as champion.\u003c/p\u003e\",\"normalizedtitle\":\"Tyson Fury\"},{\"type\":\"standard\",\"title\":\"Undisputed_championship_(boxing)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2918606\",\"titles\":{\"canonical\":\"Undisputed_championship_(boxing)\",\"normalized\":\"Undisputed championship (boxing)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eUndisputed championship (boxing)\u003c/span\u003e\"},\"pageid\":2775130,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224749726\",\"tid\":\"04d8ae6e-1677-11ef-ac0e-9f34a3325aa8\",\"timestamp\":\"2024-05-20T07:03:11Z\",\"description\":\"Boxer who holds world titles from all major organizations\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Undisputed_championship_(boxing)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Undisputed_championship_(boxing)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Undisputed_championship_(boxing)\"}},\"extract\":\"In boxing, the undisputed champion of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\",\"extract_html\":\"\u003cp\u003eIn boxing, the \u003cb\u003eundisputed champion\u003c/b\u003e of a weight class is the boxer who simultaneously holds world titles from all recognized major organizations by each other and the International Boxing Hall of Fame. There are currently four major sanctioning bodies: WBA, WBC, WBO, and IBF. There were many undisputed champions before the number of major sanctioning bodies recognizing each other increased to four in 2007, but there have only been 20 boxers to hold all four titles simultaneously.\u003c/p\u003e\",\"normalizedtitle\":\"Undisputed championship (boxing)\"}],\"story\":\"\u003c!--May 18--\u003eIn boxing, \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Oleksandr_Usyk\\\" title=\\\"Oleksandr Usyk\\\" id=\\\"mwDQ\\\"\u003eOleksandr Usyk\u003c/a\u003e \u003cb id=\\\"mwDg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury_vs_Oleksandr_Usyk\\\" title=\\\"Tyson Fury vs Oleksandr Usyk\\\" id=\\\"mwDw\\\"\u003edefeats\u003c/a\u003e\u003c/b\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Tyson_Fury\\\" title=\\\"Tyson Fury\\\" id=\\\"mwEA\\\"\u003eTyson Fury\u003c/a\u003e to become the first \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Undisputed_championship_(boxing)\\\" title=\\\"Undisputed championship (boxing)\\\" id=\\\"mwEQ\\\"\u003eundisputed heavyweight champion\u003c/a\u003e in twenty-four years.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"2024_New_Caledonia_unrest\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125935907\",\"titles\":{\"canonical\":\"2024_New_Caledonia_unrest\",\"normalized\":\"2024 New Caledonia unrest\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2024 New Caledonia unrest\u003c/span\u003e\"},\"pageid\":76907223,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761495\",\"tid\":\"129629fa-1687-11ef-8108-fa2fb1c63076\",\"timestamp\":\"2024-05-20T08:58:06Z\",\"description\":\"Protests in Overseas France\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2024_New_Caledonia_unrest\",\"edit\":\"https://en.m.wikipedia.org/wiki/2024_New_Caledonia_unrest?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2024_New_Caledonia_unrest\"}},\"extract\":\"In May 2024, protests and riots broke out in New Caledonia, a sui generis collectivity of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\",\"extract_html\":\"\u003cp\u003eIn May 2024, protests and riots broke out in New Caledonia, a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the Pacific Ocean. The violent protests have led to 6 deaths and the declaration of a state of emergency.\u003c/p\u003e\",\"normalizedtitle\":\"2024 New Caledonia unrest\"},{\"type\":\"standard\",\"title\":\"New_Caledonia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q33788\",\"titles\":{\"canonical\":\"New_Caledonia\",\"normalized\":\"New Caledonia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNew Caledonia\u003c/span\u003e\"},\"pageid\":21342,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/320px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg/861px-New_Caledonia_on_the_globe_%28small_islands_magnified%29_%28Polynesia_centered%29.svg.png\",\"width\":861,\"height\":861},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224649591\",\"tid\":\"c43d433f-15fe-11ef-aded-7209b16e1fbb\",\"timestamp\":\"2024-05-19T16:42:23Z\",\"description\":\"French special collectivity in the southwest Pacific Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-21.25,\"lon\":165.3},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:New_Caledonia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/New_Caledonia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/New_Caledonia\",\"edit\":\"https://en.m.wikipedia.org/wiki/New_Caledonia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:New_Caledonia\"}},\"extract\":\"New Caledonia is a sui generis collectivity of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"Le Caillou\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNew Caledonia\u003c/b\u003e is a \u003cspan\u003e\u003ci\u003esui generis\u003c/i\u003e collectivity\u003c/span\u003e of overseas France in the southwest Pacific Ocean, south of Vanuatu, about 1,210 km (750 mi) east of Australia, and 17,000 km (11,000 mi) from Metropolitan France. The archipelago, part of the Melanesia subregion, includes the main island of Grande Terre, the Loyalty Islands, the Chesterfield Islands, the Belep archipelago, the Isle of Pines, and a few remote islets. The Chesterfield Islands are in the Coral Sea. French people, especially locals, call Grande Terre \\\"\u003cspan\u003e\u003ci lang=\\\"fr\\\"\u003eLe Caillou\u003c/i\u003e\u003c/span\u003e\\\". New Caledonia is one of the European Union's Overseas Countries and Territories (OCTs), but is not part of the European Union.\u003c/p\u003e\",\"normalizedtitle\":\"New Caledonia\"}],\"story\":\"\u003c!--May 16--\u003e\u003cb id=\\\"mwEw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./2024_New_Caledonia_unrest\\\" title=\\\"2024 New Caledonia unrest\\\" id=\\\"mwFA\\\"\u003eProtests over voting rights changes\u003c/a\u003e\u003c/b\u003e break out in the French territory of \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./New_Caledonia\\\" title=\\\"New Caledonia\\\" id=\\\"mwFQ\\\"\u003eNew Caledonia\u003c/a\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Lee_Hsien_Loong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57643\",\"titles\":{\"canonical\":\"Lee_Hsien_Loong\",\"normalized\":\"Lee Hsien Loong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLee Hsien Loong\u003c/span\u003e\"},\"pageid\":363326,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg/320px-Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":320,\"height\":459},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/ee/Lee_Hsien_Loong_2016_%28cropped%29.jpg\",\"width\":1071,\"height\":1537},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224708181\",\"tid\":\"397c5739-163e-11ef-a75e-e89773e46e74\",\"timestamp\":\"2024-05-20T00:16:38Z\",\"description\":\"Senior Minister of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lee_Hsien_Loong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lee_Hsien_Loong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lee_Hsien_Loong\"}},\"extract\":\"Lee Hsien Loong is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLee Hsien Loong\u003c/b\u003e is a Singaporean politician and former brigadier-general who has been a Senior Minister of Singapore since 2024, having previously served as the third Prime Minister of Singapore from 2004 to 2024. He has been the Member of Parliament (MP) for the Teck Ghee division of Ang Mo Kio GRC since 1991, and previously Teck Ghee SMC between 1984 and 1991, as well as Secretary-General of the People's Action Party (PAP) since 2004.\u003c/p\u003e\",\"normalizedtitle\":\"Lee Hsien Loong\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Singapore\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q866756\",\"titles\":{\"canonical\":\"Prime_Minister_of_Singapore\",\"normalized\":\"Prime Minister of Singapore\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Singapore\u003c/span\u003e\"},\"pageid\":350647,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/320px-Flag_of_Singapore.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Flag_of_Singapore.svg/900px-Flag_of_Singapore.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224664680\",\"tid\":\"1d13e00f-160d-11ef-bc4b-98d60efa1bc8\",\"timestamp\":\"2024-05-19T18:25:05Z\",\"description\":\"Head of the government of the Republic of Singapore\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Singapore\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Singapore?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Singapore\"}},\"extract\":\"The prime minister of Singapore is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Singapore\u003c/b\u003e is the head of government of Singapore. The president appoints the prime minister, a Member of Parliament (MP) on the advice and consent of the Cabinet of Singapore. The incumbent prime minister is Lawrence Wong, who took office on 15 May 2024.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Singapore\"},{\"type\":\"standard\",\"title\":\"Lawrence_Wong\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q6504758\",\"titles\":{\"canonical\":\"Lawrence_Wong\",\"normalized\":\"Lawrence Wong\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLawrence Wong\u003c/span\u003e\"},\"pageid\":32336575,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Lawrence_Wong_20230526.jpg/320px-Lawrence_Wong_20230526.jpg\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/50/Lawrence_Wong_20230526.jpg\",\"width\":540,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224702210\",\"tid\":\"0d5dd960-1638-11ef-8d5a-952015da983c\",\"timestamp\":\"2024-05-19T23:32:27Z\",\"description\":\"Prime Minister of Singapore since 2024\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Lawrence_Wong\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Lawrence_Wong\",\"edit\":\"https://en.m.wikipedia.org/wiki/Lawrence_Wong?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Lawrence_Wong\"}},\"extract\":\"Lawrence Wong Shyun Tsai is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLawrence Wong Shyun Tsai\u003c/b\u003e is a Singaporean politician, economist and former civil servant who has been serving as the fourth prime minister of Singapore since 15 May 2024 and the minister for finance since 2021. A member of the governing People's Action Party, he has been the Member of Parliament (MP) representing the Limbang division of Marsiling–Yew Tee GRC since 2015, and previously the Boon Lay division of West Coast GRC between 2011 and 2015. He is the first prime minister born after Singapore’s independence in 1965.\u003c/p\u003e\",\"normalizedtitle\":\"Lawrence Wong\"}],\"story\":\"\u003c!--May 15--\u003e\u003cb id=\\\"mwFw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lee_Hsien_Loong\\\" title=\\\"Lee Hsien Loong\\\" id=\\\"mwGA\\\"\u003eLee Hsien Loong\u003c/a\u003e\u003c/b\u003e steps down after nearly twenty years as \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Singapore\\\" title=\\\"Prime Minister of Singapore\\\" id=\\\"mwGQ\\\"\u003ePrime Minister of Singapore\u003c/a\u003e, and is succeeded by \u003cb id=\\\"mwGg\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Lawrence_Wong\\\" title=\\\"Lawrence Wong\\\" id=\\\"mwGw\\\"\u003eLawrence Wong\u003c/a\u003e\u003c/b\u003e.\"},{\"links\":[{\"type\":\"standard\",\"title\":\"Attempted_assassination_of_Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q125937931\",\"titles\":{\"canonical\":\"Attempted_assassination_of_Robert_Fico\",\"normalized\":\"Attempted assassination of Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAttempted assassination of Robert Fico\u003c/span\u003e\"},\"pageid\":76910695,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224758475\",\"tid\":\"7b2ee315-1682-11ef-9333-f64bd0cc5881\",\"timestamp\":\"2024-05-20T08:25:14Z\",\"description\":\"2024 shooting in Handlová, Slovakia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":48.7271,\"lon\":18.7594},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Attempted_assassination_of_Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Attempted_assassination_of_Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Attempted_assassination_of_Robert_Fico\"}},\"extract\":\"On 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\",\"extract_html\":\"\u003cp\u003eOn 15 May 2024, Prime Minister of Slovakia Robert Fico was shot and critically injured in the central Slovakian town of Handlová, in front of its House of Culture after a government meeting. He was hospitalised and stabilised after emergency surgery. The suspect, Juraj Cintula, was detained by police at the scene.\u003c/p\u003e\",\"normalizedtitle\":\"Attempted assassination of Robert Fico\"},{\"type\":\"standard\",\"title\":\"Prime_Minister_of_Slovakia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q45369\",\"titles\":{\"canonical\":\"Prime_Minister_of_Slovakia\",\"normalized\":\"Prime Minister of Slovakia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePrime Minister of Slovakia\u003c/span\u003e\"},\"pageid\":692138,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224577442\",\"tid\":\"7135bd4b-15a2-11ef-8762-385e3049579b\",\"timestamp\":\"2024-05-19T05:41:30Z\",\"description\":\"Head of government of Slovakia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Prime_Minister_of_Slovakia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Prime_Minister_of_Slovakia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Prime_Minister_of_Slovakia\"}},\"extract\":\"The prime minister of Slovakia, officially the chairman of the government of the Slovak Republic, commonly referred to in Slovakia as Predseda vlády or informally as Premiér, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eprime minister of Slovakia\u003c/b\u003e, officially the \u003cb\u003echairman of the government of the Slovak Republic\u003c/b\u003e, commonly referred to in Slovakia as \u003ci\u003e\u003cb\u003ePredseda vlády\u003c/b\u003e\u003c/i\u003e or informally as \u003ci\u003e\u003cb\u003ePremiér\u003c/b\u003e\u003c/i\u003e, is the head of the government of the Slovak Republic. Officially, the officeholder is the third-highest constitutional official in Slovakia after the president of the Republic (appointer) and chairman of the National Council; in practice, the appointee is the country's leading political figure.\u003c/p\u003e\",\"normalizedtitle\":\"Prime Minister of Slovakia\"},{\"type\":\"standard\",\"title\":\"Robert_Fico\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q57606\",\"titles\":{\"canonical\":\"Robert_Fico\",\"normalized\":\"Robert Fico\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eRobert Fico\u003c/span\u003e\"},\"pageid\":4127226,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Robert_Fico%2C_April_2024.jpg/320px-Robert_Fico%2C_April_2024.jpg\",\"width\":320,\"height\":433},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/Robert_Fico%2C_April_2024.jpg\",\"width\":1460,\"height\":1976},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224688020\",\"tid\":\"83f1cf45-1626-11ef-b3fb-6ae27315a5c8\",\"timestamp\":\"2024-05-19T21:26:55Z\",\"description\":\"Prime Minister of Slovakia since 2023\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Robert_Fico\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Robert_Fico\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Robert_Fico\",\"edit\":\"https://en.m.wikipedia.org/wiki/Robert_Fico?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Robert_Fico\"}},\"extract\":\"Robert Fico is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eRobert Fico\u003c/b\u003e is a Slovak politician currently serving as the prime minister of Slovakia since 2023. He previously served in the position from 2006 to 2010 and from 2012 to 2018. He founded the Direction – Social Democracy (Smer–SD) party in 1999 and has led that party since its start. Fico holds a record as the longest-serving prime minister in the country's history, having served for over 10 years. First elected to Parliament in 1992, he was appointed the following year to the Czechoslovak delegation of the Parliamentary Assembly to the Council of Europe. Following his party's victory in the 2006 parliamentary election, he formed his first Cabinet. His political positions have been described as populist.\u003c/p\u003e\",\"normalizedtitle\":\"Robert Fico\"}],\"story\":\"\u003c!--May 15--\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Prime_Minister_of_Slovakia\\\" title=\\\"Prime Minister of Slovakia\\\" id=\\\"mwHQ\\\"\u003ePrime Minister of Slovakia\u003c/a\u003e \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Robert_Fico\\\" title=\\\"Robert Fico\\\" id=\\\"mwHg\\\"\u003eRobert Fico\u003c/a\u003e is hospitalised after \u003cb id=\\\"mwHw\\\"\u003e\u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Attempted_assassination_of_Robert_Fico\\\" title=\\\"Attempted assassination of Robert Fico\\\" id=\\\"mwIA\\\"\u003ean assassination attempt\u003c/a\u003e\u003c/b\u003e.\"}],\"onthisday\":[{\"text\":\"A tornado struck Moore, Oklahoma, United States, killing 24 people and causing an estimated $2 billion of damage.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2013_Moore_tornado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q13360358\",\"titles\":{\"canonical\":\"2013_Moore_tornado\",\"normalized\":\"2013 Moore tornado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2013 Moore tornado\u003c/span\u003e\"},\"pageid\":39440141,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG/320px-May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/93/May_20%2C_2013_Moore%2C_Oklahoma_tornado.JPG\",\"width\":3264,\"height\":2448},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224142925\",\"tid\":\"6efb01ba-138e-11ef-bf7a-949e4f3efcd6\",\"timestamp\":\"2024-05-16T14:13:14Z\",\"description\":\"2013 EF5 tornado in Moore, Oklahoma\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2013_Moore_tornado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2013_Moore_tornado\",\"edit\":\"https://en.m.wikipedia.org/wiki/2013_Moore_tornado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2013_Moore_tornado\"}},\"extract\":\"On the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\",\"extract_html\":\"\u003cp\u003eOn the afternoon of May 20, 2013, a large and extremely violent EF5 tornado ravaged Moore, Oklahoma, and adjacent areas, with peak winds estimated at 210 miles per hour (340 km/h), killing 24 people and injuring 212 others. The tornado was part of a larger weather system that had produced several other tornadoes across the Great Plains over the previous two days, including five that struck portions of Central Oklahoma the day prior on May 19.\u003c/p\u003e\",\"normalizedtitle\":\"2013 Moore tornado\"},{\"type\":\"standard\",\"title\":\"Moore,_Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q917458\",\"titles\":{\"canonical\":\"Moore,_Oklahoma\",\"normalized\":\"Moore, Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMoore, Oklahoma\u003c/span\u003e\"},\"pageid\":130116,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Moore_NW_12th_St_%26_City_Ave.jpg/320px-Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/74/Moore_NW_12th_St_%26_City_Ave.jpg\",\"width\":4080,\"height\":3060},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221643164\",\"tid\":\"4e1a9664-076c-11ef-afae-72f629cef964\",\"timestamp\":\"2024-05-01T03:38:42Z\",\"description\":\"City in Oklahoma, United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.32916667,\"lon\":-97.47555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Moore%2C_Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Moore%2C_Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Moore%2C_Oklahoma\"}},\"extract\":\"Moore is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMoore\u003c/b\u003e is a city in Cleveland County, Oklahoma, United States, and is part of the Oklahoma City metropolitan area. The population was 62,793 at the 2020 census, making Moore the seventh-largest city in the state of Oklahoma.\u003c/p\u003e\",\"normalizedtitle\":\"Moore, Oklahoma\"},{\"type\":\"standard\",\"title\":\"Oklahoma\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1649\",\"titles\":{\"canonical\":\"Oklahoma\",\"normalized\":\"Oklahoma\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOklahoma\u003c/span\u003e\"},\"pageid\":22489,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/320px-Flag_of_Oklahoma.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Flag_of_Oklahoma.svg/675px-Flag_of_Oklahoma.svg.png\",\"width\":675,\"height\":450},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224455638\",\"tid\":\"ef536408-1524-11ef-8690-b3795bddeb09\",\"timestamp\":\"2024-05-18T14:43:05Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35,\"lon\":-98},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.wikipedia.org/wiki/Oklahoma?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Oklahoma\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Oklahoma\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Oklahoma\",\"edit\":\"https://en.m.wikipedia.org/wiki/Oklahoma?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Oklahoma\"}},\"extract\":\"Oklahoma is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words okla, 'people' and humma, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOklahoma\u003c/b\u003e is a landlocked state in the South Central region of the United States. It borders Texas to the south and west, Kansas to the north, Missouri to the northeast, Arkansas to the east, New Mexico to the west, and Colorado to the northwest. Partially in the western extreme of the Upland South, it is the 20th-most extensive and the 28th-most populous of the 50 United States. Its residents are known as Oklahomans and its capital and largest city is Oklahoma City.\\nThe state's name is derived from the Choctaw words \u003ci lang=\\\"cho\\\"\u003e\u003cspan class=\\\"extiw\\\"\u003eokla\u003c/span\u003e\u003c/i\u003e, 'people' and \u003cspan\u003e\u003ci lang=\\\"cho\\\"\u003ehumma\u003c/i\u003e\u003c/span\u003e, which translates as 'red'. Oklahoma is also known informally by its nickname, \\\"The Sooner State\\\", in reference to the Sooners, settlers who staked their claims in formerly American Indian-owned lands until the Indian Appropriations Act of 1889 authorized the Land Rush of 1889 opening the land to white settlement.\u003c/p\u003e\",\"normalizedtitle\":\"Oklahoma\"}],\"year\":2013},{\"text\":\"The first of two major earthquakes struck Northern Italy, resulting in seven deaths.\",\"pages\":[{\"type\":\"standard\",\"title\":\"2012_Northern_Italy_earthquakes\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q38821\",\"titles\":{\"canonical\":\"2012_Northern_Italy_earthquakes\",\"normalized\":\"2012 Northern Italy earthquakes\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003e2012 Northern Italy earthquakes\u003c/span\u003e\"},\"pageid\":35877458,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/2012_Modena_intensity.jpg/320px-2012_Modena_intensity.jpg\",\"width\":320,\"height\":404},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/2012_Modena_intensity.jpg\",\"width\":787,\"height\":994},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1187424467\",\"tid\":\"c142769e-8e6d-11ee-95d3-cd703d94ac33\",\"timestamp\":\"2023-11-29T04:14:14Z\",\"description\":\"Severe earthquakes centered in Emilia-Romagna, Italy\",\"description_source\":\"local\",\"coordinates\":{\"lat\":44.9,\"lon\":11.24},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/2012_Northern_Italy_earthquakes\",\"edit\":\"https://en.m.wikipedia.org/wiki/2012_Northern_Italy_earthquakes?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:2012_Northern_Italy_earthquakes\"}},\"extract\":\"In May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the 2012 Emilia earthquakes, because they mainly affected the Emilia region.\",\"extract_html\":\"\u003cp\u003eIn May 2012, two major earthquakes struck Northern Italy, causing 27 deaths and widespread damage. The events are known in Italy as the \u003cb\u003e2012 Emilia earthquakes\u003c/b\u003e, because they mainly affected the Emilia region.\u003c/p\u003e\",\"normalizedtitle\":\"2012 Northern Italy earthquakes\"}],\"year\":2012},{\"text\":\"In deciding Romer v. Evans, the U.S. Supreme Court struck down a constitutional amendment in Colorado that prevented protected status under the law for homosexuals or bisexuals.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Romer_v._Evans\",\"displaytitle\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3441204\",\"titles\":{\"canonical\":\"Romer_v._Evans\",\"normalized\":\"Romer v. Evans\",\"display\":\"\u003ci\u003eRomer v. Evans\u003c/i\u003e\"},\"pageid\":146577,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1214329274\",\"tid\":\"df0d280f-e500-11ee-8d8a-662bca3ec4da\",\"timestamp\":\"2024-03-18T08:24:00Z\",\"description\":\"1996 U.S. Supreme Court case on sexual orientation and state laws\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Romer_v._Evans\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Romer_v._Evans\",\"edit\":\"https://en.m.wikipedia.org/wiki/Romer_v._Evans?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Romer_v._Evans\"}},\"extract\":\"Romer v. Evans, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since Bowers v. Hardwick (1986), when the Court had held that laws criminalizing sodomy were constitutional.\",\"extract_html\":\"\u003cp\u003e\u003ci\u003e\u003cb\u003eRomer v. Evans\u003c/b\u003e\u003c/i\u003e, 517 U.S. 620 (1996), is a landmark United States Supreme Court case dealing with sexual orientation and state laws. It was the first Supreme Court case to address gay rights since \u003ci\u003eBowers v. Hardwick\u003c/i\u003e (1986), when the Court had held that laws criminalizing sodomy were constitutional.\u003c/p\u003e\",\"normalizedtitle\":\"Romer v. Evans\"},{\"type\":\"standard\",\"title\":\"Supreme_Court_of_the_United_States\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q11201\",\"titles\":{\"canonical\":\"Supreme_Court_of_the_United_States\",\"normalized\":\"Supreme Court of the United States\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSupreme Court of the United States\u003c/span\u003e\"},\"pageid\":31737,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/720px-Seal_of_the_United_States_Supreme_Court.svg.png\",\"width\":720,\"height\":720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224636214\",\"tid\":\"b2ed509a-15f0-11ef-ac82-3795581fe3c2\",\"timestamp\":\"2024-05-19T15:01:41Z\",\"description\":\"Highest court of jurisdiction in the United States\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.89055556,\"lon\":-77.00444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Supreme_Court_of_the_United_States\",\"edit\":\"https://en.m.wikipedia.org/wiki/Supreme_Court_of_the_United_States?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Supreme_Court_of_the_United_States\"}},\"extract\":\"The Supreme Court of the United States (SCOTUS) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eSupreme Court of the United States\u003c/b\u003e (\u003cb\u003eSCOTUS\u003c/b\u003e) is the highest court in the federal judiciary of the United States. It has ultimate appellate jurisdiction over all U.S. federal court cases, and over state court cases that turn on questions of U.S. constitutional or federal law. It also has original jurisdiction over a narrow range of cases, specifically \\\"all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party.\\\" The court holds the power of judicial review: the ability to invalidate a statute for violating a provision of the Constitution. It is also able to strike down presidential directives for violating either the Constitution or statutory law.\u003c/p\u003e\",\"normalizedtitle\":\"Supreme Court of the United States\"},{\"type\":\"standard\",\"title\":\"Colorado\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1261\",\"titles\":{\"canonical\":\"Colorado\",\"normalized\":\"Colorado\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eColorado\u003c/span\u003e\"},\"pageid\":5399,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/320px-Flag_of_Colorado.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Flag_of_Colorado.svg/1800px-Flag_of_Colorado.svg.png\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224025335\",\"tid\":\"8daeb14a-12f8-11ef-b803-f9ec9dd2e448\",\"timestamp\":\"2024-05-15T20:20:21Z\",\"description\":\"U.S. state\",\"description_source\":\"local\",\"coordinates\":{\"lat\":38.9972,\"lon\":-105.5478},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.wikipedia.org/wiki/Colorado?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Colorado\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Colorado\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Colorado\",\"edit\":\"https://en.m.wikipedia.org/wiki/Colorado?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Colorado\"}},\"extract\":\"Colorado is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eColorado\u003c/b\u003e is a landlocked state in the Mountain West subregion of the Western United States. Colorado borders Wyoming to the north, Nebraska to the northeast, Kansas to the east, Oklahoma to the southeast, New Mexico to the south, Utah to the west, and meets Arizona to the southwest at the Four Corners. Colorado is noted for its landscape of mountains, forests, high plains, mesas, canyons, plateaus, rivers, and desert lands. Colorado is one of the Mountain States and is often considered to be part of the southwestern United States. The high plains of Colorado may be considered a part of the midwestern United States. It encompasses most of the Southern Rocky Mountains, as well as the northeastern portion of the Colorado Plateau and the western edge of the Great Plains. Colorado is the eighth most extensive and 21st most populous U.S. state. The United States Census Bureau estimated the population of Colorado at 5,877,610 as of July 1, 2023, a 1.80% increase since the 2020 United States census.\u003c/p\u003e\",\"normalizedtitle\":\"Colorado\"},{\"type\":\"standard\",\"title\":\"Protected_group\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q7251299\",\"titles\":{\"canonical\":\"Protected_group\",\"normalized\":\"Protected group\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eProtected group\u003c/span\u003e\"},\"pageid\":20793171,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215285297\",\"tid\":\"537ffe7d-e9a0-11ee-adb1-53327947ba95\",\"timestamp\":\"2024-03-24T05:35:30Z\",\"description\":\"Demographic label\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.wikipedia.org/wiki/Protected_group?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Protected_group\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Protected_group\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Protected_group\",\"edit\":\"https://en.m.wikipedia.org/wiki/Protected_group?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Protected_group\"}},\"extract\":\"A protected group, protected class (US), or prohibited ground (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eprotected group\u003c/b\u003e, \u003cb\u003eprotected class\u003c/b\u003e (US), or \u003cb\u003eprohibited ground\u003c/b\u003e (Canada) is a category by which people qualified for special protection by a law, policy, or similar authority. In Canada and the United States, the term is frequently used in connection with employees and employment and housing. Where illegal discrimination on the basis of protected group status is concerned, a single act of discrimination may be based on more than one protected class. For example, discrimination based on antisemitism may relate to religion, ethnicity, national origin, or any combination of the three; discrimination against a pregnant woman might be based on sex, marital status, or both.\u003c/p\u003e\",\"normalizedtitle\":\"Protected group\"}],\"year\":1996},{\"text\":\"uMkhonto we Sizwe, the paramilitary wing of the African National Congress, detonated a car bomb in Pretoria, resulting in 19 deaths and 217 injuries.\",\"pages\":[{\"type\":\"standard\",\"title\":\"UMkhonto_we_Sizwe\",\"displaytitle\":\"uMkhonto we Sizwe\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1136236\",\"titles\":{\"canonical\":\"UMkhonto_we_Sizwe\",\"normalized\":\"UMkhonto we Sizwe\",\"display\":\"uMkhonto we Sizwe\"},\"pageid\":185537,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/320px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":320,\"height\":405},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Umkhonto_weSizwe_%28MK%29_logo.svg/79px-Umkhonto_weSizwe_%28MK%29_logo.svg.png\",\"width\":79,\"height\":100},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561430\",\"tid\":\"06c43a0f-1589-11ef-9d8c-8ca293c534a3\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Armed wing of the African National Congress\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/UMkhonto_we_Sizwe\",\"edit\":\"https://en.m.wikipedia.org/wiki/UMkhonto_we_Sizwe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:UMkhonto_we_Sizwe\"}},\"extract\":\"uMkhonto we Sizwe was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003euMkhonto we Sizwe\u003c/b\u003e was the paramilitary wing of the African National Congress (ANC), and was founded by Nelson Mandela in the wake of the Sharpeville massacre. Its mission was to fight against the South African government.\u003c/p\u003e\",\"normalizedtitle\":\"UMkhonto we Sizwe\"},{\"type\":\"standard\",\"title\":\"African_National_Congress\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q83162\",\"titles\":{\"canonical\":\"African_National_Congress\",\"normalized\":\"African National Congress\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eAfrican National Congress\u003c/span\u003e\"},\"pageid\":2503,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/320px-African_National_Congress_logo.svg.png\",\"width\":320,\"height\":448},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/en/thumb/0/0d/African_National_Congress_logo.svg/143px-African_National_Congress_logo.svg.png\",\"width\":143,\"height\":200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561794\",\"tid\":\"80f4c2e7-1589-11ef-b000-f81fc6746d18\",\"timestamp\":\"2024-05-19T02:42:59Z\",\"description\":\"Political party in South Africa\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:African_National_Congress\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/African_National_Congress\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/African_National_Congress\",\"edit\":\"https://en.m.wikipedia.org/wiki/African_National_Congress?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:African_National_Congress\"}},\"extract\":\"The African National Congress (ANC) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eAfrican National Congress\u003c/b\u003e (\u003cb\u003eANC\u003c/b\u003e) is a political party in South Africa. It originated as a liberation movement known for its opposition to apartheid and has governed the country since 1994, when the first post-apartheid election resulted in Nelson Mandela being elected as President of South Africa. Cyril Ramaphosa, the incumbent national President, has served as President of the ANC since 18 December 2017.\u003c/p\u003e\",\"normalizedtitle\":\"African National Congress\"},{\"type\":\"standard\",\"title\":\"Church_Street,_Pretoria_bombing\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q2869958\",\"titles\":{\"canonical\":\"Church_Street,_Pretoria_bombing\",\"normalized\":\"Church Street, Pretoria bombing\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eChurch Street, Pretoria bombing\u003c/span\u003e\"},\"pageid\":6493338,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224725550\",\"tid\":\"52dbb19f-1653-11ef-9947-b5f53228c53c\",\"timestamp\":\"2024-05-20T02:47:40Z\",\"description\":\"Car bomb attack\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74638889,\"lon\":28.19055556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Church_Street%2C_Pretoria_bombing\",\"edit\":\"https://en.m.wikipedia.org/wiki/Church_Street%2C_Pretoria_bombing?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Church_Street%2C_Pretoria_bombing\"}},\"extract\":\"The Church Street bombing was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eChurch Street bombing\u003c/b\u003e was a car bomb attack on 20 May 1983 in the South African capital Pretoria by uMkhonto we Sizwe (MK), the paramilitary wing of the African National Congress. The bombing killed 19 people, including the two perpetrators, and wounded 217.\u003c/p\u003e\",\"normalizedtitle\":\"Church Street, Pretoria bombing\"},{\"type\":\"standard\",\"title\":\"Pretoria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q3926\",\"titles\":{\"canonical\":\"Pretoria\",\"normalized\":\"Pretoria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePretoria\u003c/span\u003e\"},\"pageid\":25002,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Uniegebou.jpg/320px-Uniegebou.jpg\",\"width\":320,\"height\":209},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6b/Uniegebou.jpg\",\"width\":787,\"height\":514},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224355183\",\"tid\":\"7e6683c2-1498-11ef-8ccf-a0d816c47ea7\",\"timestamp\":\"2024-05-17T21:57:46Z\",\"description\":\"Administrative capital of South Africa\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-25.74611111,\"lon\":28.18805556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.wikipedia.org/wiki/Pretoria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pretoria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pretoria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pretoria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pretoria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pretoria\"}},\"extract\":\"Pretoria, also known as Tshwane, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePretoria\u003c/b\u003e, also known as \u003cb\u003eTshwane\u003c/b\u003e, is South Africa's administrative capital, serving as the seat of the executive branch of government, and as the host to all foreign embassies to South Africa.\u003c/p\u003e\",\"normalizedtitle\":\"Pretoria\"}],\"year\":1983},{\"text\":\"While attempting to land at Cairo International Airport, Pakistan International Airlines Flight 705 crashed for unknown reasons, killing all but 6 of the 121 people on board.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Cairo_International_Airport\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q461793\",\"titles\":{\"canonical\":\"Cairo_International_Airport\",\"normalized\":\"Cairo International Airport\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCairo International Airport\u003c/span\u003e\"},\"pageid\":589227,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Cairo_Airport_Terminal_3.jpg/320px-Cairo_Airport_Terminal_3.jpg\",\"width\":320,\"height\":180},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/17/Cairo_Airport_Terminal_3.jpg\",\"width\":5152,\"height\":2896},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224659835\",\"tid\":\"c4425433-1608-11ef-906e-9b6b7874ea9f\",\"timestamp\":\"2024-05-19T17:53:58Z\",\"description\":\"International airport serving Cairo, Egypt\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Cairo_International_Airport\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Cairo_International_Airport\",\"edit\":\"https://en.m.wikipedia.org/wiki/Cairo_International_Airport?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Cairo_International_Airport\"}},\"extract\":\"Cairo International Airport is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km2 (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCairo International Airport\u003c/b\u003e is the principal international airport of Cairo and the largest and busiest airport in Egypt. It serves as the primary hub for Egyptair and Nile Air as well as several other airlines. The airport is located in Heliopolis, to the northeast of Cairo around fifteen kilometres from the business area of the city and has an area of approximately 37 km\u003csup\u003e2\u003c/sup\u003e (14 sq mi). It is the busiest airport in Africa, in terms of total passengers.\u003c/p\u003e\",\"normalizedtitle\":\"Cairo International Airport\"},{\"type\":\"standard\",\"title\":\"Pakistan_International_Airlines_Flight_705\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4217221\",\"titles\":{\"canonical\":\"Pakistan_International_Airlines_Flight_705\",\"normalized\":\"Pakistan International Airlines Flight 705\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePakistan International Airlines Flight 705\u003c/span\u003e\"},\"pageid\":8262954,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/PIA_Boeing_720_at_LHR_1964.jpg/320px-PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/d/d2/PIA_Boeing_720_at_LHR_1964.jpg\",\"width\":1800,\"height\":1200},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224122062\",\"tid\":\"f5561910-1373-11ef-b99f-70e69bfa6e68\",\"timestamp\":\"2024-05-16T11:03:43Z\",\"description\":\"1965 aviation accident\",\"description_source\":\"local\",\"coordinates\":{\"lat\":30.12194444,\"lon\":31.40555556},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pakistan_International_Airlines_Flight_705\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pakistan_International_Airlines_Flight_705?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pakistan_International_Airlines_Flight_705\"}},\"extract\":\"Pakistan International Airlines Flight 705 (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePakistan International Airlines Flight 705\u003c/b\u003e (PK705) was a Boeing 720 airliner that crashed while descending to land at Cairo International Airport on 20 May 1965. Of the 127 passengers and crew on board, all but 6 were killed.\u003c/p\u003e\",\"normalizedtitle\":\"Pakistan International Airlines Flight 705\"}],\"year\":1965},{\"text\":\"The first session of the National Diet opened in Tokyo, Japan.\",\"pages\":[{\"type\":\"standard\",\"title\":\"National_Diet\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q202384\",\"titles\":{\"canonical\":\"National_Diet\",\"normalized\":\"National Diet\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNational Diet\u003c/span\u003e\"},\"pageid\":163847,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/320px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Go-shichi_no_kiri_crest_2.svg/231px-Go-shichi_no_kiri_crest_2.svg.png\",\"width\":231,\"height\":154},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224127157\",\"tid\":\"c5ab0c1a-137b-11ef-8e1f-1eba161a066d\",\"timestamp\":\"2024-05-16T11:59:39Z\",\"description\":\"National legislature of Japan\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.67583333,\"lon\":139.745},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.wikipedia.org/wiki/National_Diet?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:National_Diet\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/National_Diet\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/National_Diet\",\"edit\":\"https://en.m.wikipedia.org/wiki/National_Diet?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:National_Diet\"}},\"extract\":\"The National Diet is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building in Nagatachō, Chiyoda, Tokyo.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNational Diet\u003c/b\u003e\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e is the national legislature of Japan. It is composed of a lower house, called the House of Representatives, and an upper house, the House of Councillors. Both houses are directly elected under a parallel voting system. In addition to passing laws, the Diet is formally responsible for nominating the Prime Minister. The Diet was first established as the Imperial Diet in 1890 under the Meiji Constitution, and took its current form in 1947 upon the adoption of the post-war constitution. Both houses meet in the National Diet Building\u003cspan style=\\\"font-weight:normal\\\"\u003e \u003c/span\u003e in Nagatachō, Chiyoda, Tokyo.\u003c/p\u003e\",\"normalizedtitle\":\"National Diet\"}],\"year\":1947},{\"text\":\"The Luttra Woman, a bog body from the Early Neolithic period, was discovered near Luttra, Sweden.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Luttra_Woman\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q179281\",\"titles\":{\"canonical\":\"Luttra_Woman\",\"normalized\":\"Luttra Woman\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra Woman\u003c/span\u003e\"},\"pageid\":30471447,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Hallonflickans_kranium_9989.jpg/320px-Hallonflickans_kranium_9989.jpg\",\"width\":320,\"height\":426},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c6/Hallonflickans_kranium_9989.jpg\",\"width\":821,\"height\":1094},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1181102641\",\"tid\":\"658ffb15-6f8f-11ee-9a80-9d7a09dec835\",\"timestamp\":\"2023-10-20T21:26:57Z\",\"description\":\"Neolithic bog body from Sweden\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra_Woman\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra_Woman\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra_Woman?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra_Woman\"}},\"extract\":\"The Luttra Woman is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed Hallonflickan. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eLuttra Woman\u003c/b\u003e is a skeletonised bog body from the Early Neolithic period that was discovered near Luttra, Sweden, on 20 May 1943. The skull had been preserved well, but some bones of the skeleton, in particular many of those between the skull and the pelvis, were missing. The skeleton was assessed as that of a young female. She was deemed short for a Neolithic woman of the region, with an estimated height of 145 cm . Because her stomach contents showed that raspberries had been her last meal and she was estimated to have been in her early to mid-twenties at her death, she was nicknamed \u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"sv\\\"\u003eHallonflickan\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e. As of 2015, she was the earliest-known Neolithic person from Western Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra Woman\"},{\"type\":\"standard\",\"title\":\"Bog_body\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q199414\",\"titles\":{\"canonical\":\"Bog_body\",\"normalized\":\"Bog body\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBog body\u003c/span\u003e\"},\"pageid\":102411,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Tollundmannen.jpg/320px-Tollundmannen.jpg\",\"width\":320,\"height\":283},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/44/Tollundmannen.jpg\",\"width\":2244,\"height\":1983},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212302094\",\"tid\":\"a71c0940-dc37-11ee-bf80-b2d29340f9dc\",\"timestamp\":\"2024-03-07T04:03:28Z\",\"description\":\"Corpse preserved in a bog\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.wikipedia.org/wiki/Bog_body?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Bog_body\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Bog_body\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Bog_body\",\"edit\":\"https://en.m.wikipedia.org/wiki/Bog_body?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Bog_body\"}},\"extract\":\"A bog body is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as bog people, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003ebog body\u003c/b\u003e is a human cadaver that has been naturally mummified in a peat bog. Such bodies, sometimes known as \u003cb\u003ebog people\u003c/b\u003e, are both geographically and chronologically widespread, having been dated to between 8000 BCE and the Second World War. The unifying factor of the bog bodies is that they have been found in peat and are partially preserved; however, the actual levels of preservation vary widely from perfectly preserved to mere skeletons.\u003c/p\u003e\",\"normalizedtitle\":\"Bog body\"},{\"type\":\"standard\",\"title\":\"Neolithic\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q36422\",\"titles\":{\"canonical\":\"Neolithic\",\"normalized\":\"Neolithic\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNeolithic\u003c/span\u003e\"},\"pageid\":21189,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg/320px-Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f0/Asikli_Hoyuk_sarah_c_murray_6176.jpg\",\"width\":800,\"height\":533},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223828915\",\"tid\":\"c3c43a7c-120f-11ef-9895-6959d8cce189\",\"timestamp\":\"2024-05-14T16:33:59Z\",\"description\":\"Archaeological period, last part of the Stone Age\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.wikipedia.org/wiki/Neolithic?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Neolithic\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Neolithic\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Neolithic\",\"edit\":\"https://en.m.wikipedia.org/wiki/Neolithic?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Neolithic\"}},\"extract\":\"The Neolithic or New Stone Age is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eNeolithic\u003c/b\u003e or \u003cb\u003eNew Stone Age\u003c/b\u003e is an archaeological period, the final division of the Stone Age in Europe, Asia and Africa. It saw the Neolithic Revolution, a wide-ranging set of developments that appear to have arisen independently in several parts of the world. This \\\"Neolithic package\\\" included the introduction of farming, domestication of animals, and change from a hunter-gatherer lifestyle to one of settlement. The term 'Neolithic' was coined by Sir John Lubbock in 1865 as a refinement of the three-age system.\u003c/p\u003e\",\"normalizedtitle\":\"Neolithic\"},{\"type\":\"standard\",\"title\":\"Luttra\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q10571081\",\"titles\":{\"canonical\":\"Luttra\",\"normalized\":\"Luttra\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eLuttra\u003c/span\u003e\"},\"pageid\":46884466,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Luttra_kyrka_0899.jpg/320px-Luttra_kyrka_0899.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/aa/Luttra_kyrka_0899.jpg\",\"width\":3648,\"height\":2736},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1179346322\",\"tid\":\"4ac996aa-66b2-11ee-982c-bc12f29c3ea4\",\"timestamp\":\"2023-10-09T14:44:04Z\",\"description\":\"Locality in Västra Götaland County, Sweden\",\"description_source\":\"local\",\"coordinates\":{\"lat\":58.13194444,\"lon\":13.56472222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.wikipedia.org/wiki/Luttra?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Luttra\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Luttra\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Luttra\",\"edit\":\"https://en.m.wikipedia.org/wiki/Luttra?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Luttra\"}},\"extract\":\"Luttra is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eLuttra\u003c/b\u003e is a locality situated in Falköping Municipality, Västra Götaland County, Sweden.\u003c/p\u003e\",\"normalizedtitle\":\"Luttra\"}],\"year\":1943},{\"text\":\"World War II: German paratroopers began the Battle of Heraklion on the island of Crete, capturing the airfield and port in Heraklion ten days later.\",\"pages\":[{\"type\":\"standard\",\"title\":\"World_War_II\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q362\",\"titles\":{\"canonical\":\"World_War_II\",\"normalized\":\"World War II\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWorld War II\u003c/span\u003e\"},\"pageid\":32927,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg/320px-Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":320,\"height\":218},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/1/10/Bundesarchiv_Bild_101I-646-5188-17%2C_Flugzeuge_Junkers_Ju_87.jpg\",\"width\":798,\"height\":544},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224698040\",\"tid\":\"c3beb139-1632-11ef-a155-df099c722c61\",\"timestamp\":\"2024-05-19T22:54:36Z\",\"description\":\"1939–1945 global conflict\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.wikipedia.org/wiki/World_War_II?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:World_War_II\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/World_War_II\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/World_War_II\",\"edit\":\"https://en.m.wikipedia.org/wiki/World_War_II?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:World_War_II\"}},\"extract\":\"World War II or the Second World War was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWorld War II\u003c/b\u003e or the \u003cb\u003eSecond World War\u003c/b\u003e was a global conflict between two alliances: the Allies and the Axis powers. Nearly all of the world's countries, including all of the great powers, participated in the conflict, and many invested all available economic, industrial, and scientific capabilities in pursuit of total war, blurring the distinction between civilian and military resources. Aircraft played a major role, enabling the strategic bombing of population centres and delivery of the only two nuclear weapons ever used in war. It was by far the deadliest conflict in history, resulting in 70–85 million fatalities. Millions died due to genocides, including the Holocaust, as well as starvation, massacres, and disease. In the wake of Axis defeat, Germany, Austria, and Japan were occupied, and war crime tribunals were conducted against German and Japanese leaders.\u003c/p\u003e\",\"normalizedtitle\":\"World War II\"},{\"type\":\"standard\",\"title\":\"Paratrooper\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q749387\",\"titles\":{\"canonical\":\"Paratrooper\",\"normalized\":\"Paratrooper\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eParatrooper\u003c/span\u003e\"},\"pageid\":58476,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg/320px-U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/U.S._Army%2C_British_and_Italian_paratroopers_Pordenone%2C_Italy_191203-A-JM436-0590C.jpg\",\"width\":5520,\"height\":3680},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561009\",\"tid\":\"6c63f751-1588-11ef-88c1-3a7d2a83e5f6\",\"timestamp\":\"2024-05-19T02:35:15Z\",\"description\":\"Military parachutists functioning as part of an airborne\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.wikipedia.org/wiki/Paratrooper?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Paratrooper\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Paratrooper\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Paratrooper\",\"edit\":\"https://en.m.wikipedia.org/wiki/Paratrooper?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Paratrooper\"}},\"extract\":\"A paratrooper is a military parachutist—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\",\"extract_html\":\"\u003cp\u003eA \u003cb\u003eparatrooper\u003c/b\u003e is a \u003cb\u003emilitary parachutist\u003c/b\u003e—someone trained to parachute into a military operation, and usually functioning as part of airborne forces. Military parachutists (troops) and parachutes were first used on a large scale during World War II for troop distribution and transportation. Paratroopers are often used in surprise attacks, to seize strategic objectives such as airfields or bridges.\u003c/p\u003e\",\"normalizedtitle\":\"Paratrooper\"},{\"type\":\"standard\",\"title\":\"Battle_of_Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4871210\",\"titles\":{\"canonical\":\"Battle_of_Heraklion\",\"normalized\":\"Battle of Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Heraklion\u003c/span\u003e\"},\"pageid\":38165175,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg/320px-Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":320,\"height\":195},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/87/Ju_52_with_paras_over_Heraklion_1941.jpg\",\"width\":624,\"height\":381},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747323\",\"tid\":\"6bf46e1d-1673-11ef-a9e8-c1e2d20e52c0\",\"timestamp\":\"2024-05-20T06:37:26Z\",\"description\":\"World War II battle in Crete\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.33638889,\"lon\":25.13861111},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Heraklion\"}},\"extract\":\"The Battle of Heraklion was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Heraklion\u003c/b\u003e was part of the Battle of Crete, fought during World War II on the Greek island of Crete between 20 and 30 May 1941. British, Australian and Greek forces of 14th Infantry Brigade, commanded by Brigadier Brian Chappel, defended Heraklion port and airfield against a German paratrooper attack by the 1st Parachute Regiment of the 7th Air Division, commanded by Colonel Bruno Bräuer.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Heraklion\"},{\"type\":\"standard\",\"title\":\"Crete\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q34374\",\"titles\":{\"canonical\":\"Crete\",\"normalized\":\"Crete\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCrete\u003c/span\u003e\"},\"pageid\":6591,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Island_of_Crete%2C_Greece.JPG/320px-Island_of_Crete%2C_Greece.JPG\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/0/01/Island_of_Crete%2C_Greece.JPG\",\"width\":4256,\"height\":2832},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224561435\",\"tid\":\"06c44c6d-1589-11ef-b4ae-c5f61de64156\",\"timestamp\":\"2024-05-19T02:39:34Z\",\"description\":\"Largest Greek island\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.21,\"lon\":24.91},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.wikipedia.org/wiki/Crete?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Crete\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Crete\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Crete\",\"edit\":\"https://en.m.wikipedia.org/wiki/Crete?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Crete\"}},\"extract\":\"Crete is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km2 (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eCrete\u003c/b\u003e is the largest and most populous of the Greek islands, the 88th largest island in the world and the fifth largest island in the Mediterranean Sea, after Sicily, Sardinia, Cyprus, and Corsica. Crete rests about 160 km (99 mi) south of the Greek mainland, and about 100 km (62 mi) southwest of Anatolia. Crete has an area of 8,450 km\u003csup\u003e2\u003c/sup\u003e (3,260 sq mi) and a coastline of 1,046 km (650 mi). It bounds the southern border of the Aegean Sea, with the Sea of Crete to the north and the Libyan Sea to the south. Crete covers 260 km from west to east but is narrow from north to south, spanning three longitudes but only half a latitude.\u003c/p\u003e\",\"normalizedtitle\":\"Crete\"},{\"type\":\"standard\",\"title\":\"Heraklion\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q160544\",\"titles\":{\"canonical\":\"Heraklion\",\"normalized\":\"Heraklion\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHeraklion\u003c/span\u003e\"},\"pageid\":59741,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Heraklion_Montage_L.png/320px-Heraklion_Montage_L.png\",\"width\":320,\"height\":388},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b4/Heraklion_Montage_L.png\",\"width\":1000,\"height\":1214},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224303749\",\"tid\":\"cddc8118-145f-11ef-a7cc-9f353fdef9de\",\"timestamp\":\"2024-05-17T15:11:58Z\",\"description\":\"City in Crete, Greece\",\"description_source\":\"local\",\"coordinates\":{\"lat\":35.34027778,\"lon\":25.13444444},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.wikipedia.org/wiki/Heraklion?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Heraklion\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Heraklion\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Heraklion\",\"edit\":\"https://en.m.wikipedia.org/wiki/Heraklion?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Heraklion\"}},\"extract\":\"Heraklion or Herakleion, sometimes Iraklion, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eHeraklion\u003c/b\u003e or \u003cb\u003eHerakleion\u003c/b\u003e, sometimes \u003cb\u003eIraklion\u003c/b\u003e, is the largest city and the administrative capital of the island of Crete and capital of Heraklion regional unit. It is the fourth largest city in Greece with a municipal population of 179,302 (2021) and 211,370 in its wider metropolitan area, according to the 2011 census.\u003c/p\u003e\",\"normalizedtitle\":\"Heraklion\"}],\"year\":1941},{\"text\":\"By the Treaty of Jeddah, the United Kingdom recognised the sovereignty of King Abdulaziz of Saudi Arabia (pictured) over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"With the signing of the Treaty of Jeddah, the United Kingdom recognized the sovereignty of Ibn Saud over Hejaz and Nejd, which later merged to become Saudi Arabia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Treaty_of_Jeddah_(1927)\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q17035545\",\"titles\":{\"canonical\":\"Treaty_of_Jeddah_(1927)\",\"normalized\":\"Treaty of Jeddah (1927)\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eTreaty of Jeddah (1927)\u003c/span\u003e\"},\"pageid\":39937534,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-320px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":320,\"height\":453},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu/page1-3306px-British_Foreign_office_memorandum_January_1940_regarding_the_border_between_Jordan_and_Saudi_Arabia.djvu.jpg\",\"width\":3306,\"height\":4678},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1212793989\",\"tid\":\"b74bfbce-de32-11ee-ae03-fba9bc92e8d7\",\"timestamp\":\"2024-03-09T16:33:10Z\",\"description\":\"Treaty between the Great Britain and Ibn Saud, King of Hejaz and Nejd\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Treaty_of_Jeddah_(1927)\",\"edit\":\"https://en.m.wikipedia.org/wiki/Treaty_of_Jeddah_(1927)?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Treaty_of_Jeddah_(1927)\"}},\"extract\":\"The 1927 Treaty of Jeddah, formally the Treaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies was signed between the United Kingdom and Ibn Saud.\",\"extract_html\":\"\u003cp\u003eThe 1927 \u003cb\u003eTreaty of Jeddah\u003c/b\u003e, formally the \u003cb\u003eTreaty between His Majesty and His Majesty the King of the Hejaz and of Nejd and Its Dependencies\u003c/b\u003e was signed between the United Kingdom and Ibn Saud.\u003c/p\u003e\",\"normalizedtitle\":\"Treaty of Jeddah (1927)\"},{\"type\":\"standard\",\"title\":\"Ibn_Saud\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q151509\",\"titles\":{\"canonical\":\"Ibn_Saud\",\"normalized\":\"Ibn Saud\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eIbn Saud\u003c/span\u003e\"},\"pageid\":184236,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Official_Portrait_of_King_Abdulaziz.jpg/320px-Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":320,\"height\":386},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/75/Official_Portrait_of_King_Abdulaziz.jpg\",\"width\":1080,\"height\":1302},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224747501\",\"tid\":\"b7a708ff-1673-11ef-93ed-4fb9b6f5640f\",\"timestamp\":\"2024-05-20T06:39:33Z\",\"description\":\"Founder and first king of Saudi Arabia (r. 1932–1953)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Ibn_Saud\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Ibn_Saud\",\"edit\":\"https://en.m.wikipedia.org/wiki/Ibn_Saud?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Ibn_Saud\"}},\"extract\":\"Abdulaziz bin Abdul Rahman Al Saud, known in the West as Ibn Saud, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAbdulaziz bin Abdul Rahman Al Saud\u003c/b\u003e, known in the West as \u003cb\u003eIbn Saud\u003c/b\u003e, was an Arab political and religious leader who founded Saudi Arabia – the third Saudi state – and reigned as its first king from 23 September 1932 until his death in 1953. He had ruled parts of the kingdom since 1902, having previously been Emir, Sultan, and King of Nejd, and King of Hejaz.\u003c/p\u003e\",\"normalizedtitle\":\"Ibn Saud\"},{\"type\":\"standard\",\"title\":\"Hejaz\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q169977\",\"titles\":{\"canonical\":\"Hejaz\",\"normalized\":\"Hejaz\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eHejaz\u003c/span\u003e\"},\"pageid\":184235,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg/320px-HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/4/4a/HAC_2010_KABE_VE_G%C3%96KDELEN_-_panoramio.jpg\",\"width\":3072,\"height\":2304},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221977759\",\"tid\":\"9cac60c5-08ff-11ef-820e-e3844f5ba980\",\"timestamp\":\"2024-05-03T03:45:41Z\",\"description\":\"Region of Saudi Arabia\",\"description_source\":\"local\",\"coordinates\":{\"lat\":23,\"lon\":40},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.wikipedia.org/wiki/Hejaz?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Hejaz\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Hejaz\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Hejaz\",\"edit\":\"https://en.m.wikipedia.org/wiki/Hejaz?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Hejaz\"}},\"extract\":\"The Hejaz is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eHejaz\u003c/b\u003e is a region that includes the majority of the west coast of Saudi Arabia, covering the cities of Mecca, Medina, Jeddah, Tabuk, Yanbu, Taif and Baljurashi. It is thus known as the \\\"Western Province\\\", and it is bordered in the west by the Red Sea, in the north by Jordan, in the east by the Najd, and in the south by the Region of 'Asir. Its largest city is Jeddah, which is the second-largest city in Saudi Arabia, with Mecca and Medina, respectively, being the fourth- and fifth-largest cities in the country.\u003c/p\u003e\",\"normalizedtitle\":\"Hejaz\"},{\"type\":\"standard\",\"title\":\"Najd\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q208154\",\"titles\":{\"canonical\":\"Najd\",\"normalized\":\"Najd\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNajd\u003c/span\u003e\"},\"pageid\":178715,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg/320px-%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":320,\"height\":212},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/7/79/%D8%B4%D8%B9%D9%8A%D8%A8_%D8%AC%D9%88_%D8%A8%D8%AC%D8%A8%D8%A7%D9%84_%D8%A3%D8%AC%D9%80%D9%80%D9%80%D8%A7_-_panoramio.jpg\",\"width\":800,\"height\":531},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1223629232\",\"tid\":\"9ac08e3c-1117-11ef-ac8d-e8ae4d211af3\",\"timestamp\":\"2024-05-13T10:57:35Z\",\"description\":\"Region in central Saudi Arabia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.wikipedia.org/wiki/Najd?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Najd\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Najd\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Najd\",\"edit\":\"https://en.m.wikipedia.org/wiki/Najd?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Najd\"}},\"extract\":\"Najd is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNajd\u003c/b\u003e is the central region of Saudi Arabia, in which about a third of the country's modern population resides. It is the home of the House of Saud, from which it pursued unification with Hejaz since the time of the Emirate of Diriyah.\u003c/p\u003e\",\"normalizedtitle\":\"Najd\"}],\"year\":1927},{\"text\":\"Representatives from seventeen countries signed the Metre Convention, which set up an institute for the purpose of coordinating international metrology and for coordinating the development of the metric system.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Metre_Convention\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q217429\",\"titles\":{\"canonical\":\"Metre_Convention\",\"normalized\":\"Metre Convention\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetre Convention\u003c/span\u003e\"},\"pageid\":20666,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/320px-Metre_Convention_Signatories.svg.png\",\"width\":320,\"height\":162},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Metre_Convention_Signatories.svg/2754px-Metre_Convention_Signatories.svg.png\",\"width\":2754,\"height\":1398},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224106488\",\"tid\":\"1f054ab8-1360-11ef-ae5d-8cc8728f2d40\",\"timestamp\":\"2024-05-16T08:41:43Z\",\"description\":\"1875 international treaty\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metre_Convention\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metre_Convention\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metre_Convention\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metre_Convention?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metre_Convention\"}},\"extract\":\"The Metre Convention, also known as the Treaty of the Metre, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eMetre Convention\u003c/b\u003e, also known as the \u003cb\u003eTreaty of the Metre\u003c/b\u003e, is an international treaty that was signed in Paris on 20 May 1875 by representatives of 17 nations: Argentina, Austria-Hungary, Belgium, Brazil, Denmark, France, Germany, Italy, Peru, Portugal, Russia, Spain, Sweden and Norway, Switzerland, Ottoman Empire, United States of America, and Venezuela.\u003c/p\u003e\",\"normalizedtitle\":\"Metre Convention\"},{\"type\":\"standard\",\"title\":\"Metrology\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q394\",\"titles\":{\"canonical\":\"Metrology\",\"normalized\":\"Metrology\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetrology\u003c/span\u003e\"},\"pageid\":65637,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/NIST-4_Kibble_balance.jpg/320px-NIST-4_Kibble_balance.jpg\",\"width\":320,\"height\":445},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f8/NIST-4_Kibble_balance.jpg\",\"width\":4832,\"height\":6720},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1197383823\",\"tid\":\"490c8f4e-b76b-11ee-be04-9fb73abe84db\",\"timestamp\":\"2024-01-20T08:09:51Z\",\"description\":\"Science of measurement and its application\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.wikipedia.org/wiki/Metrology?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metrology\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metrology\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metrology\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metrology?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metrology\"}},\"extract\":\"Metrology is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMetrology\u003c/b\u003e is the scientific study of measurement. It establishes a common understanding of units, crucial in linking human activities. Modern metrology has its roots in the French Revolution's political motivation to standardise units in France when a length standard taken from a natural source was proposed. This led to the creation of the decimal-based metric system in 1795, establishing a set of standards for other types of measurements. Several other countries adopted the metric system between 1795 and 1875; to ensure conformity between the countries, the Bureau International des Poids et Mesures (BIPM) was established by the Metre Convention. This has evolved into the International System of Units (SI) as a result of a resolution at the 11th General Conference on Weights and Measures (CGPM) in 1960.\u003c/p\u003e\",\"normalizedtitle\":\"Metrology\"},{\"type\":\"standard\",\"title\":\"Metric_system\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q232405\",\"titles\":{\"canonical\":\"Metric_system\",\"normalized\":\"Metric system\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMetric system\u003c/span\u003e\"},\"pageid\":44142,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/FourMetricInstruments.JPG/320px-FourMetricInstruments.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c1/FourMetricInstruments.JPG\",\"width\":1944,\"height\":2592},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221297249\",\"tid\":\"b8e1a06c-05cd-11ef-ac55-e9bbc9a34720\",\"timestamp\":\"2024-04-29T02:11:00Z\",\"description\":\"Metre-based systems of measurement\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.wikipedia.org/wiki/Metric_system?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Metric_system\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Metric_system\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Metric_system\",\"edit\":\"https://en.m.wikipedia.org/wiki/Metric_system?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Metric_system\"}},\"extract\":\"The metric system is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003emetric system\u003c/b\u003e is a decimal-based system of measurement. The current international standard for the metric system is the International System of Units, in which all units can be expressed in terms of seven base units: the metre, kilogram, second, ampere, kelvin, mole, and candela.\u003c/p\u003e\",\"normalizedtitle\":\"Metric system\"}],\"year\":1875},{\"text\":\"A British squadron under Charles Marsh Schomberg defeated a French force off Tamatave, Madagascar, that was attempting to reinforce the French garrison on Mauritius.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Charles_Marsh_Schomberg\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q5080676\",\"titles\":{\"canonical\":\"Charles_Marsh_Schomberg\",\"normalized\":\"Charles Marsh Schomberg\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eCharles Marsh Schomberg\u003c/span\u003e\"},\"pageid\":13106866,\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1192885163\",\"tid\":\"6e6f3391-a828-11ee-b6f4-4fe1ac8f4512\",\"timestamp\":\"2023-12-31T22:03:30Z\",\"description\":\"British naval officer and colonial governor (1779–1835)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Charles_Marsh_Schomberg\",\"edit\":\"https://en.m.wikipedia.org/wiki/Charles_Marsh_Schomberg?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Charles_Marsh_Schomberg\"}},\"extract\":\"Captain Sir Charles Marsh Schomberg was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\",\"extract_html\":\"\u003cp\u003eCaptain \u003cb\u003eSir Charles Marsh Schomberg\u003c/b\u003e was an officer of the British Royal Navy, who served during French Revolutionary and Napoleonic Wars, and later served as Lieutenant-Governor of Dominica.\u003c/p\u003e\",\"normalizedtitle\":\"Charles Marsh Schomberg\"},{\"type\":\"standard\",\"title\":\"Battle_of_Tamatave\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q4872498\",\"titles\":{\"canonical\":\"Battle_of_Tamatave\",\"normalized\":\"Battle of Tamatave\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Tamatave\u003c/span\u003e\"},\"pageid\":19874508,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Battle_of_tamatave.jpg/320px-Battle_of_tamatave.jpg\",\"width\":320,\"height\":127},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/91/Battle_of_tamatave.jpg\",\"width\":800,\"height\":317},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220554421\",\"tid\":\"95bf87b3-0249-11ef-8bac-ba8b8ee9be7f\",\"timestamp\":\"2024-04-24T14:47:34Z\",\"description\":\"1811 battle fought during the Napoleonic Wars\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.15,\"lon\":49.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Tamatave\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Tamatave?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Tamatave\"}},\"extract\":\"The Battle of Tamatave was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in Renommée. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Tamatave\u003c/b\u003e was fought off Tamatave in Madagascar between British and French frigate squadrons during the Napoleonic Wars. The action was the final engagement of the Mauritius campaign of 1809–1811, and it saw the destruction of the last French attempt to reinforce their garrison on Mauritius. Although the news had not reached Europe by February 1811 when the reinforcement squadron left Brest, Mauritius had been captured in December 1810 by a British invasion fleet, the French defences hampered by the lack of the supplies and troops carried aboard the frigate squadron under the command of Commodore Dominique Roquebert in \u003ci\u003eRenommée\u003c/i\u003e. Roquebert's heavily laden ships reached Mauritius on 6 May and discovered that the island was in British hands the following day, narrowly escaping a trap laid by a squadron of British frigates ordered to hunt and destroy them.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Tamatave\"},{\"type\":\"standard\",\"title\":\"Toamasina\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q178067\",\"titles\":{\"canonical\":\"Toamasina\",\"normalized\":\"Toamasina\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eToamasina\u003c/span\u003e\"},\"pageid\":1497539,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Tamatave_-_panoramio.jpg/320px-Tamatave_-_panoramio.jpg\",\"width\":320,\"height\":240},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/c/c0/Tamatave_-_panoramio.jpg\",\"width\":2048,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1210736879\",\"tid\":\"2e89b8e5-d5e7-11ee-a93b-b6e8343a637d\",\"timestamp\":\"2024-02-28T03:12:19Z\",\"description\":\"Place in Atsinanana, Madagascar\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-18.155,\"lon\":49.41},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.wikipedia.org/wiki/Toamasina?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Toamasina\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Toamasina\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Toamasina\",\"edit\":\"https://en.m.wikipedia.org/wiki/Toamasina?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Toamasina\"}},\"extract\":\"Toamasina, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French Tamatave, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eToamasina\u003c/b\u003e, meaning \\\"like salt\\\" or \\\"salty\\\", unofficially and in French \u003cb\u003eTamatave\u003c/b\u003e, is the capital of the Atsinanana region on the east coast of Madagascar on the Indian Ocean. The city is the chief seaport of the country, situated 215 km (134 mi) northeast of its capital and biggest city Antananarivo. In 2018 Toamasina had a population of 325,857.\u003c/p\u003e\",\"normalizedtitle\":\"Toamasina\"},{\"type\":\"standard\",\"title\":\"Mauritius\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1027\",\"titles\":{\"canonical\":\"Mauritius\",\"normalized\":\"Mauritius\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eMauritius\u003c/span\u003e\"},\"pageid\":19201,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/320px-Flag_of_Mauritius.svg.png\",\"width\":320,\"height\":213},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Mauritius.svg/900px-Flag_of_Mauritius.svg.png\",\"width\":900,\"height\":600},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224703492\",\"tid\":\"6975194e-1639-11ef-8188-cc4e792fec2f\",\"timestamp\":\"2024-05-19T23:42:11Z\",\"description\":\"Island country in the Indian Ocean\",\"description_source\":\"local\",\"coordinates\":{\"lat\":-20.2,\"lon\":57.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.wikipedia.org/wiki/Mauritius?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Mauritius\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Mauritius\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Mauritius\",\"edit\":\"https://en.m.wikipedia.org/wiki/Mauritius?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Mauritius\"}},\"extract\":\"Mauritius, officially the Republic of Mauritius, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eMauritius\u003c/b\u003e, officially the \u003cb\u003eRepublic of Mauritius\u003c/b\u003e, is an island country in the Indian Ocean, about 2,000 kilometres off the southeastern coast of East Africa, east of Madagascar. It includes the main island, as well as Rodrigues, Agaléga, and St. Brandon. The islands of Mauritius and Rodrigues, along with nearby Réunion, are part of the Mascarene Islands. The main island of Mauritius, where the population is concentrated, hosts the capital and largest city, Port Louis. The country spans 2,040 square kilometres (790 sq mi) and has an exclusive economic zone covering 2,300,000 square kilometres.\u003c/p\u003e\",\"normalizedtitle\":\"Mauritius\"}],\"year\":1811},{\"text\":\"Johann Sebastian Bach directed the first performance of his Pentecost cantata Erschallet, ihr Lieder at the chapel of Schloss Weimar (pictured).\",\"pages\":[{\"type\":\"standard\",\"title\":\"Johann_Sebastian_Bach\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1339\",\"titles\":{\"canonical\":\"Johann_Sebastian_Bach\",\"normalized\":\"Johann Sebastian Bach\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eJohann Sebastian Bach\u003c/span\u003e\"},\"pageid\":9906294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Johann_Sebastian_Bach.jpg/320px-Johann_Sebastian_Bach.jpg\",\"width\":320,\"height\":394},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/6/6a/Johann_Sebastian_Bach.jpg\",\"width\":480,\"height\":591},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1220259630\",\"tid\":\"4442cfa6-00d6-11ef-8c8c-9c4d472dda05\",\"timestamp\":\"2024-04-22T18:29:34Z\",\"description\":\"German composer (1685–1750)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Johann_Sebastian_Bach\",\"edit\":\"https://en.m.wikipedia.org/wiki/Johann_Sebastian_Bach?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Johann_Sebastian_Bach\"}},\"extract\":\"Johann Sebastian Bach was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the Brandenburg Concertos; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the Goldberg Variations and The Well-Tempered Clavier; organ works such as the Schubler Chorales and the Toccata and Fugue in D minor; and choral works such as the St Matthew Passion and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eJohann Sebastian Bach\u003c/b\u003e was a German composer and musician of the late Baroque period. He is known for his prolific authorship of music across a variety of instruments and forms, including; orchestral music such as the \u003ci\u003eBrandenburg Concertos\u003c/i\u003e; solo instrumental works such as the cello suites and sonatas and partitas for solo violin; keyboard works such as the \u003ci\u003eGoldberg Variations\u003c/i\u003e and \u003ci\u003eThe Well-Tempered Clavier\u003c/i\u003e; organ works such as the \u003ci\u003eSchubler Chorales\u003c/i\u003e and the Toccata and Fugue in D minor; and choral works such as the \u003ci\u003eSt Matthew Passion\u003c/i\u003e and the Mass in B minor. Since the 19th-century Bach Revival, he has been generally regarded as one of the greatest composers in the history of Western music.\u003c/p\u003e\",\"normalizedtitle\":\"Johann Sebastian Bach\"},{\"type\":\"standard\",\"title\":\"Pentecost\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q39864\",\"titles\":{\"canonical\":\"Pentecost\",\"normalized\":\"Pentecost\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePentecost\u003c/span\u003e\"},\"pageid\":45971,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/8/8a/Vienna_Karlskirche_frescos4b.jpg\",\"width\":298,\"height\":397},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224618526\",\"tid\":\"16b94aa4-15dc-11ef-9da2-427d6290c039\",\"timestamp\":\"2024-05-19T12:34:09Z\",\"description\":\"Christian holy day\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.wikipedia.org/wiki/Pentecost?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Pentecost\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Pentecost\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Pentecost\",\"edit\":\"https://en.m.wikipedia.org/wiki/Pentecost?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Pentecost\"}},\"extract\":\"Pentecost is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the descent of the Holy Spirit upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003ePentecost\u003c/b\u003e is a Christian holiday which takes place on the 49th day after Easter Sunday. It commemorates the \u003cb\u003edescent of the Holy Spirit\u003c/b\u003e upon the Apostles of Jesus while they were in Jerusalem celebrating the Feast of Weeks, as described in the Acts of the Apostles. The Catholic Church believes the Holy Spirit descended upon Mary, the mother of Jesus, at the same time, as recorded in the Acts of the Apostles.\u003c/p\u003e\",\"normalizedtitle\":\"Pentecost\"},{\"type\":\"standard\",\"title\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"displaytitle\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1361757\",\"titles\":{\"canonical\":\"Erschallet,_ihr_Lieder,_erklinget,_ihr_Saiten!_BWV_172\",\"normalized\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\",\"display\":\"\u003ci\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e BWV 172\"},\"pageid\":26581728,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/320px-Schlosskirche_Weimar_1660.jpg\",\"width\":320,\"height\":442},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/24/Schlosskirche_Weimar_1660.jpg\",\"width\":1056,\"height\":1457},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224560808\",\"tid\":\"20b15fd7-1588-11ef-bc8c-5f6858863fe9\",\"timestamp\":\"2024-05-19T02:33:08Z\",\"description\":\"Church cantata by Johann Sebastian Bach composed for Pentecost Sunday\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\",\"edit\":\"https://en.m.wikipedia.org/wiki/Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Erschallet%2C_ihr_Lieder%2C_erklinget%2C_ihr_Saiten!_BWV_172\"}},\"extract\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten!, BWV 172, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the Schlosskirche, the court chapel in the ducal Schloss. Erschallet, ihr Lieder is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003e\u003cspan\u003e\u003ci lang=\\\"de\\\"\u003eErschallet, ihr Lieder, erklinget, ihr Saiten!\u003c/i\u003e\u003c/span\u003e\u003c/b\u003e, \u003cb\u003e\u003cspan class=\\\"nowrap\\\"\u003eBWV 172\u003c/span\u003e\u003c/b\u003e, is a church cantata by Johann Sebastian Bach, composed in Weimar for Pentecost Sunday in 1714. Bach led the first performance on 20 May 1714 in the \u003cspan\u003e\u003cspan style=\\\"font-style:normal\\\"\u003eSchlosskirche\u003c/span\u003e\u003c/span\u003e, the court chapel in the ducal Schloss. \u003ci\u003eErschallet, ihr Lieder\u003c/i\u003e is an early work in a genre to which he later contributed complete cantata cycles for all occasions of the liturgical year.\u003c/p\u003e\",\"normalizedtitle\":\"Erschallet, ihr Lieder, erklinget, ihr Saiten! BWV 172\"},{\"type\":\"standard\",\"title\":\"Schloss_Weimar\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q878253\",\"titles\":{\"canonical\":\"Schloss_Weimar\",\"normalized\":\"Schloss Weimar\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eSchloss Weimar\u003c/span\u003e\"},\"pageid\":39719628,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Schloss_Weimar_-_Panorama.jpg/320px-Schloss_Weimar_-_Panorama.jpg\",\"width\":320,\"height\":141},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/5/5f/Schloss_Weimar_-_Panorama.jpg\",\"width\":3260,\"height\":1440},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744166\",\"tid\":\"3dc05d44-166e-11ef-8e6c-df1598574c97\",\"timestamp\":\"2024-05-20T06:00:21Z\",\"description\":\"Palace in Weimar, Thuringia, Germany\",\"description_source\":\"local\",\"coordinates\":{\"lat\":50.98027778,\"lon\":11.33222222},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Schloss_Weimar\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Schloss_Weimar\",\"edit\":\"https://en.m.wikipedia.org/wiki/Schloss_Weimar?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Schloss_Weimar\"}},\"extract\":\"Schloss Weimar is a Schloss (palace) in Weimar, Thuringia, Germany. It is now called Stadtschloss to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called Residenzschloss. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and City Castle. The building is located at the north end of the town's park along the Ilm river, Park an der Ilm. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eSchloss Weimar\u003c/b\u003e is a \u003ci\u003eSchloss\u003c/i\u003e (palace) in Weimar, Thuringia, Germany. It is now called \u003ci\u003e\u003cb\u003eStadtschloss\u003c/b\u003e\u003c/i\u003e to distinguish it from other palaces in and around Weimar. It was the residence of the dukes of Saxe-Weimar and Eisenach, and has also been called \u003ci\u003e\u003cb\u003eResidenzschloss\u003c/b\u003e\u003c/i\u003e. Names in English include Palace at Weimar, Grand Ducal Palace, City Palace and \u003cb\u003eCity Castle\u003c/b\u003e. The building is located at the north end of the town's park along the Ilm river, \u003ci\u003ePark an der Ilm\u003c/i\u003e. It forms part of the World Heritage Site \\\"Classical Weimar\\\", along with other sites associated with Weimar's importance as a cultural hub during the late 18th and 19th centuries.\u003c/p\u003e\",\"normalizedtitle\":\"Schloss Weimar\"}],\"year\":1714},{\"text\":\"Thomas Thorpe published the first copies of Shakespeare's sonnets, possibly without William Shakespeare's consent.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Thomas_Thorpe\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q1056900\",\"titles\":{\"canonical\":\"Thomas_Thorpe\",\"normalized\":\"Thomas Thorpe\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eThomas Thorpe\u003c/span\u003e\"},\"pageid\":5818016,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Sonnets1609titlepage.jpg/320px-Sonnets1609titlepage.jpg\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f6/Sonnets1609titlepage.jpg\",\"width\":1065,\"height\":1536},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1137155845\",\"tid\":\"00965550-a36c-11ed-871c-624243b82fec\",\"timestamp\":\"2023-02-03T02:39:38Z\",\"description\":\"16th/17th-century English publisher\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Thomas_Thorpe\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Thomas_Thorpe\",\"edit\":\"https://en.m.wikipedia.org/wiki/Thomas_Thorpe?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Thomas_Thorpe\"}},\"extract\":\"Thomas Thorpe was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eThomas Thorpe\u003c/b\u003e was an English publisher, most famous for publishing Shakespeare's sonnets and several works by Christopher Marlowe and Ben Jonson. His publication of the sonnets has long been controversial. Nineteenth-century critics thought that he might have published the poems without Shakespeare's consent; Sidney Lee called him \\\"predatory and irresponsible.\\\" Conversely, modern scholars Wells and Taylor assert their verdict that \\\"Thorpe was a reputable publisher, and there is nothing intrinsically irregular about his publication.\\\"\u003c/p\u003e\",\"normalizedtitle\":\"Thomas Thorpe\"},{\"type\":\"standard\",\"title\":\"Shakespeare's_sonnets\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q662550\",\"titles\":{\"canonical\":\"Shakespeare's_sonnets\",\"normalized\":\"Shakespeare's sonnets\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eShakespeare\u0026#039;s sonnets\u003c/span\u003e\"},\"pageid\":203294,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Shakespeare%27s_sonnets_title_page.png/320px-Shakespeare%27s_sonnets_title_page.png\",\"width\":320,\"height\":462},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/e/e8/Shakespeare%27s_sonnets_title_page.png\",\"width\":666,\"height\":962},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1222042001\",\"tid\":\"1887ca96-095b-11ef-9c2a-3d9e71d59e5e\",\"timestamp\":\"2024-05-03T14:40:33Z\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Shakespeare's_sonnets\",\"edit\":\"https://en.m.wikipedia.org/wiki/Shakespeare's_sonnets?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Shakespeare's_sonnets\"}},\"extract\":\"William Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays Romeo and Juliet, Henry V and Love's Labour's Lost. There is also a partial sonnet found in the play Edward III.\",\"extract_html\":\"\u003cp\u003eWilliam Shakespeare (1564–1616) wrote sonnets on a variety of themes. When discussing or referring to Shakespeare's sonnets, it is almost always a reference to the 154 sonnets that were first published all together in a quarto in 1609. However, there are six additional sonnets that Shakespeare wrote and included in the plays \u003ci\u003eRomeo and Juliet\u003c/i\u003e, \u003ci\u003eHenry V\u003c/i\u003e and \u003ci\u003eLove's Labour's Lost\u003c/i\u003e. There is also a partial sonnet found in the play \u003ci\u003eEdward III\u003c/i\u003e.\u003c/p\u003e\",\"normalizedtitle\":\"Shakespeare's sonnets\"},{\"type\":\"standard\",\"title\":\"William_Shakespeare\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q692\",\"titles\":{\"canonical\":\"William_Shakespeare\",\"normalized\":\"William Shakespeare\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eWilliam Shakespeare\u003c/span\u003e\"},\"pageid\":32897,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg/320px-William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":320,\"height\":408},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/21/William_Shakespeare_by_John_Taylor%2C_edited.jpg\",\"width\":2400,\"height\":3059},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224497986\",\"tid\":\"19ba2e48-154f-11ef-bc83-f4a327cae372\",\"timestamp\":\"2024-05-18T19:44:55Z\",\"description\":\"English playwright and poet (1564–1616)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:William_Shakespeare\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/William_Shakespeare\",\"edit\":\"https://en.m.wikipedia.org/wiki/William_Shakespeare?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:William_Shakespeare\"}},\"extract\":\"William Shakespeare was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eWilliam Shakespeare\u003c/b\u003e was an English playwright, poet, and actor. He is widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \\\"Bard of Avon\\\". His extant works, including collaborations, consist of some 39 plays, 154 sonnets, three long narrative poems, and a few other verses, some of uncertain authorship. His plays have been translated into every major living language and are performed more often than those of any other playwright. Shakespeare remains arguably the most influential writer in the English language, and his works continue to be studied and reinterpreted.\u003c/p\u003e\",\"normalizedtitle\":\"William Shakespeare\"}],\"year\":1609},{\"text\":\"According to the Anglo-Saxon Chronicle, King Æthelberht II of East Anglia was beheaded on the orders of Offa of Mercia.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Anglo-Saxon_Chronicle\",\"displaytitle\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q212746\",\"titles\":{\"canonical\":\"Anglo-Saxon_Chronicle\",\"normalized\":\"Anglo-Saxon Chronicle\",\"display\":\"\u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e\"},\"pageid\":24222749,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Peterborough.Chronicle.firstpage.jpg/320px-Peterborough.Chronicle.firstpage.jpg\",\"width\":320,\"height\":489},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/9/9d/Peterborough.Chronicle.firstpage.jpg\",\"width\":896,\"height\":1370},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1217200146\",\"tid\":\"fa578a23-f27b-11ee-9f54-33a396deef0d\",\"timestamp\":\"2024-04-04T12:07:59Z\",\"description\":\"Set of related medieval English chronicles\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Anglo-Saxon_Chronicle\",\"edit\":\"https://en.m.wikipedia.org/wiki/Anglo-Saxon_Chronicle?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Anglo-Saxon_Chronicle\"}},\"extract\":\"The Anglo-Saxon Chronicle is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\",\"extract_html\":\"\u003cp\u003eThe \u003ci\u003e\u003cb\u003eAnglo-Saxon Chronicle\u003c/b\u003e\u003c/i\u003e is a collection of annals in Old English, chronicling the history of the Anglo-Saxons.\u003c/p\u003e\",\"normalizedtitle\":\"Anglo-Saxon Chronicle\"},{\"type\":\"standard\",\"title\":\"Æthelberht_II_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q272180\",\"titles\":{\"canonical\":\"Æthelberht_II_of_East_Anglia\",\"normalized\":\"Æthelberht II of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eÆthelberht II of East Anglia\u003c/span\u003e\"},\"pageid\":3681678,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg/320px-%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":320,\"height\":325},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/b/b9/%C3%86thelberht_II_runic_coin_8th_century.jpg\",\"width\":1021,\"height\":1037},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224761027\",\"tid\":\"56d50a72-1686-11ef-ac84-7a6a23bfa336\",\"timestamp\":\"2024-05-20T08:52:51Z\",\"description\":\"8th-century saint and king of East Anglia\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/%C3%86thelberht_II_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/%C3%86thelberht_II_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:%C3%86thelberht_II_of_East_Anglia\"}},\"extract\":\"Æthelberht, also called Saint Ethelbert the King, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the Anglo-Saxon Chronicle that he was killed on the orders of Offa of Mercia in 794.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eÆthelberht\u003c/b\u003e, also called \u003cb\u003eSaint Ethelbert the King\u003c/b\u003e, was an 8th-century saint and a king of East Anglia, the Anglo-Saxon kingdom which today includes the English counties of Norfolk and Suffolk. Little is known of his reign, which may have begun in 779, according to later sources, and very few of the coins he issued have been discovered. It is known from the \u003ci\u003eAnglo-Saxon Chronicle\u003c/i\u003e that he was killed on the orders of Offa of Mercia in 794.\u003c/p\u003e\",\"normalizedtitle\":\"Æthelberht II of East Anglia\"},{\"type\":\"standard\",\"title\":\"Kingdom_of_East_Anglia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q837998\",\"titles\":{\"canonical\":\"Kingdom_of_East_Anglia\",\"normalized\":\"Kingdom of East Anglia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eKingdom of East Anglia\u003c/span\u003e\"},\"pageid\":15620904,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/320px-Williamson_p16_3.svg.png\",\"width\":320,\"height\":281},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Williamson_p16_3.svg/691px-Williamson_p16_3.svg.png\",\"width\":691,\"height\":607},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1215854955\",\"tid\":\"a380ee65-ec48-11ee-8ae2-d2cdb8bcfdeb\",\"timestamp\":\"2024-03-27T14:45:22Z\",\"description\":\"Anglo-Saxon kingdom in southeast Britain\",\"description_source\":\"local\",\"coordinates\":{\"lat\":52.5,\"lon\":1},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Kingdom_of_East_Anglia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Kingdom_of_East_Anglia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Kingdom_of_East_Anglia\"}},\"extract\":\"The Kingdom of the East Angles, informally known as the Kingdom of East Anglia, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eKingdom of the East Angles\u003c/b\u003e, informally known as the \u003cb\u003eKingdom of East Anglia\u003c/b\u003e, was a small independent kingdom of the Angles during the Anglo-Saxon period comprising what are now the English counties of Norfolk and Suffolk and perhaps the eastern part of the Fens, the area still known as East Anglia.\u003c/p\u003e\",\"normalizedtitle\":\"Kingdom of East Anglia\"},{\"type\":\"standard\",\"title\":\"Offa_of_Mercia\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q233573\",\"titles\":{\"canonical\":\"Offa_of_Mercia\",\"normalized\":\"Offa of Mercia\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eOffa of Mercia\u003c/span\u003e\"},\"pageid\":47037,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png/320px-Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":320,\"height\":320},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/f/f2/Offa%2C_King_of_Mercia%2C_silver_penny%3B_%28obverse%29.png\",\"width\":1816,\"height\":1816},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221748409\",\"tid\":\"4604412f-07f0-11ef-a5f8-edccaa0e4242\",\"timestamp\":\"2024-05-01T19:23:22Z\",\"description\":\"Anglo-Saxon King of Mercia from 757 to 796\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Offa_of_Mercia\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Offa_of_Mercia\",\"edit\":\"https://en.m.wikipedia.org/wiki/Offa_of_Mercia?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Offa_of_Mercia\"}},\"extract\":\"Offa was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eOffa\u003c/b\u003e was King of Mercia, a kingdom of Anglo-Saxon England, from 757 until his death. The son of Thingfrith and a descendant of Eowa, Offa came to the throne after a period of civil war following the assassination of Æthelbald. Offa defeated the other claimant, Beornred. In the early years of Offa's reign, it is likely that he consolidated his control of Midland peoples such as the Hwicce and the Magonsæte. Taking advantage of instability in the kingdom of Kent to establish himself as overlord, Offa also controlled Sussex by 771, though his authority did not remain unchallenged in either territory. In the 780s he extended Mercian Supremacy over most of southern England, allying with Beorhtric of Wessex, who married Offa's daughter Eadburh, and regained complete control of the southeast. He also became the overlord of East Anglia and had King Æthelberht II of East Anglia beheaded in 794, perhaps for rebelling against him.\u003c/p\u003e\",\"normalizedtitle\":\"Offa of Mercia\"}],\"year\":794},{\"text\":\"The Picts defeated the Northumbrians at the Battle of Dun Nechtain, severely weakening the latter's power in northern Great Britain.\",\"pages\":[{\"type\":\"standard\",\"title\":\"Picts\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q102891\",\"titles\":{\"canonical\":\"Picts\",\"normalized\":\"Picts\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003ePicts\u003c/span\u003e\"},\"pageid\":24632,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Serpent_stone.JPG/320px-Serpent_stone.JPG\",\"width\":320,\"height\":427},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/a/a6/Serpent_stone.JPG\",\"width\":2304,\"height\":3072},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221419460\",\"tid\":\"c0ef1309-0669-11ef-a8da-9dfb7b33632d\",\"timestamp\":\"2024-04-29T20:47:55Z\",\"description\":\"Medieval tribal confederation in northern Britain\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.wikipedia.org/wiki/Picts?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Picts\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Picts\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Picts\",\"edit\":\"https://en.m.wikipedia.org/wiki/Picts?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Picts\"}},\"extract\":\"The Picts were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name Picti appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, Picti was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003ePicts\u003c/b\u003e were a group of peoples in what is now Scotland north of the Firth of Forth, in the Early Middle Ages. Where they lived and details of their culture can be gleaned from early medieval texts and Pictish stones. The name \u003cspan\u003e\u003ci lang=\\\"la\\\"\u003ePicti\u003c/i\u003e\u003c/span\u003e appears in written records as an exonym from the late third century AD. They are assumed to have been descendants of the Caledonii and other northern Iron Age tribes. Their territory is referred to as \\\"Pictland\\\" by modern historians. Initially made up of several chiefdoms, it came to be dominated by the Pictish kingdom of Fortriu from the seventh century. During this Verturian hegemony, \u003ci\u003ePicti\u003c/i\u003e was adopted as an endonym. This lasted around 160 years until the Pictish kingdom merged with that of Dál Riata to form the Kingdom of Alba, ruled by the House of Alpin. The concept of \\\"Pictish kingship\\\" continued for a few decades until it was abandoned during the reign of Caustantín mac Áeda.\u003c/p\u003e\",\"normalizedtitle\":\"Picts\"},{\"type\":\"standard\",\"title\":\"Northumbria\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q107299\",\"titles\":{\"canonical\":\"Northumbria\",\"normalized\":\"Northumbria\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eNorthumbria\u003c/span\u003e\"},\"pageid\":36717,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/320px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":320,\"height\":324},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg/586px-Map_of_the_Kingdom_of_Northumbria_around_700_AD.svg.png\",\"width\":586,\"height\":594},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1221746011\",\"tid\":\"0dfc02d3-07ee-11ef-9168-6b5e4808053b\",\"timestamp\":\"2024-05-01T19:07:29Z\",\"description\":\"Medieval kingdom of the Angles\",\"description_source\":\"local\",\"coordinates\":{\"lat\":55,\"lon\":-2.5},\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.wikipedia.org/wiki/Northumbria?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Northumbria\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Northumbria\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Northumbria\",\"edit\":\"https://en.m.wikipedia.org/wiki/Northumbria?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Northumbria\"}},\"extract\":\"Northumbria was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eNorthumbria\u003c/b\u003e was an early medieval Anglo-Saxon kingdom in what is now Northern England and south-east Scotland.\u003c/p\u003e\",\"normalizedtitle\":\"Northumbria\"},{\"type\":\"standard\",\"title\":\"Battle_of_Dun_Nechtain\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q961243\",\"titles\":{\"canonical\":\"Battle_of_Dun_Nechtain\",\"normalized\":\"Battle of Dun Nechtain\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eBattle of Dun Nechtain\u003c/span\u003e\"},\"pageid\":249974,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg/320px-Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":320,\"height\":413},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/3/3d/Pictish_Stone_at_Aberlemno_Church_Yard_-_Battle_Scene_Detail.jpg\",\"width\":1140,\"height\":1470},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1211037290\",\"tid\":\"78220409-d710-11ee-a075-2cef0b6952c3\",\"timestamp\":\"2024-02-29T14:40:23Z\",\"description\":\"685 battle between Picts and Northumbrians\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Battle_of_Dun_Nechtain\",\"edit\":\"https://en.m.wikipedia.org/wiki/Battle_of_Dun_Nechtain?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Battle_of_Dun_Nechtain\"}},\"extract\":\"The Battle of Dun Nechtain or Battle of Nechtansmere was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\",\"extract_html\":\"\u003cp\u003eThe \u003cb\u003eBattle of Dun Nechtain\u003c/b\u003e or \u003cb\u003eBattle of Nechtansmere\u003c/b\u003e was fought between the Picts, led by King Bridei Mac Bili, and the Northumbrians, led by King Ecgfrith, on 20 May 685.\u003c/p\u003e\",\"normalizedtitle\":\"Battle of Dun Nechtain\"}],\"year\":685}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5442beb1-62f1-4404-9abc-6d844fdf5b14","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:47.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3942,"total_pss":88930,"rss":152480,"native_total_heap":45369,"native_free_heap":12998,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5e09f8b2-f9c5-4c28-a33a-280f626b582d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:57.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3143,"total_pss":89269,"rss":152196,"native_total_heap":45530,"native_free_heap":12837,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"676c3fb1-6477-496a-8c9c-61ed35f61353","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6a19cff5-1fec-479d-a4aa-a86585ce6ddb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.39100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c809bc9-1665-4b3b-80e4-8466f67a56bb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:53.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3312,"total_pss":89149,"rss":151808,"native_total_heap":45510,"native_free_heap":12857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6cd3c07d-e68b-4493-9e1b-b03ee17d39d4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":116609,"utime":72,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e452099-cbe9-4906-8326-ed26f752240c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":15582,"java_free_heap":3088,"total_pss":73935,"rss":134964,"native_total_heap":39902,"native_free_heap":10273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"83ba2a82-8506-4091-bc92-f6fd29378365","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.37600000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104888,"end_time":105861,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/3","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9233c0ae-4c78-4059-8b4f-5b35d8ad6843","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:55.12500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3204,"total_pss":89225,"rss":151932,"native_total_heap":45522,"native_free_heap":12845,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"950fe192-e5db-4237-bbc9-47d176bfaccd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"96df6f05-31ca-4d30-9fdf-705b5be4d58b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27300000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9f058f91-5247-4a59-a34d-107b4bdddbb9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:59.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":3032,"total_pss":89357,"rss":152904,"native_total_heap":45572,"native_free_heap":12795,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a4498773-993f-4f68-912b-6fc6da876cf9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.33500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a9168774-d224-4913-a84e-c6a370a34a6d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b02cdfb4-01a2-475b-97c2-8827d16d2d59","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.29100000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b26009fd-826c-4a12-91e1-6801af5d3751","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.27800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46948fd-8052-4fb4-a25c-c32afbe4d0eb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b544ed7d-7dcc-4413-8be3-c2a1f55336ab","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:58.12600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":119610,"utime":74,"cutime":0,"cstime":0,"stime":25,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b6eb6f85-8ef0-4e60-afac-af37419f3ba9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":122608,"utime":74,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b863f39a-8ae4-4df7-b383-567b79e14aa3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.43400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ba3ca04f-bde3-4f9d-aba6-d9c2d2e581ef","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.52500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/feed/announcements","method":"get","status_code":200,"start_time":106965,"end_time":107010,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/announcements/0.1.0\"","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"en.wikipedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"113","cache-control":"public, max-age=86400, s-maxage=900","content-length":"15","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Announcements/0.3.0\"","date":"Mon, 20 May 2024 09:08:52 GMT","etag":"\"1230862227/93f33e50-1688-11ef-9b87-d98f91645f9b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/31","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"announce\":[]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bf0b84c3-18bf-4953-94ae-095f38cb14c7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2883,"total_pss":89481,"rss":152904,"native_total_heap":45608,"native_free_heap":12759,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"cc427fa7-733f-4e05-a569-70c9bb0490a6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.28200000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"deb32862-d736-49cf-8ea8-581703f60190","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.14800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/3/3b/Announcement_header_for_Explore_Feed_customization.png","method":"get","status_code":200,"start_time":107329,"end_time":107632,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"85069","content-length":"115106","content-type":"image/png","date":"Sun, 19 May 2024 09:32:57 GMT","etag":"bb9e0b537eb0ce1c40c67d8c524e6778","last-modified":"Mon, 27 Nov 2017 15:04:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/566","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-object-meta-sha1base36":"a50wk773e4a3f7ye7rteixaw1a2ou3u"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e42761c1-4bc4-49a3-a3e2-c9e51bbec39f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.40300000Z","type":"http","http":{"url":"https://meta.wikimedia.org/w/extensions/MobileApp/config/android.json","method":"get","status_code":200,"start_time":104703,"end_time":104887,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"meta.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"74432","cache-control":"public, s-maxage=31536000, max-age=31536000, must-revalidate","content-length":"528","content-type":"application/json","date":"Sun, 19 May 2024 12:30:12 GMT","last-modified":"Tue, 14 May 2024 03:01:08 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; Path=/; secure; Domain=.wikipedia.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","x-cache":"cp5023 hit, cp5023 hit/2450","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":"{\n\t\"disableAnonEditing\": false,\n\t\"eventLogSampleRate\": 0,\n\t\"disableFullTextSearch\": false,\n\t\"searchLogSampleRate\": 100,\n\t\"tocLogSampleRate\": 100,\n\t\"restbaseBetaPercent\": 100,\n\t\"restbaseProdPercent\": 100,\n\t\"pushNotificationsExcludeCountries\": [\n\t\t\"AZ\",\n\t\t\"BH\",\n\t\t\"BD\",\n\t\t\"BY\",\n\t\t\"BN\",\n\t\t\"CN\",\n\t\t\"CU\",\n\t\t\"DJ\",\n\t\t\"EG\",\n\t\t\"GQ\",\n\t\t\"ER\",\n\t\t\"ET\",\n\t\t\"HK\",\n\t\t\"IR\",\n\t\t\"KZ\",\n\t\t\"LA\",\n\t\t\"LY\",\n\t\t\"MM\",\n\t\t\"KP\",\n\t\t\"PK\",\n\t\t\"QA\",\n\t\t\"RU\",\n\t\t\"SA\",\n\t\t\"SO\",\n\t\t\"SS\",\n\t\t\"SD\",\n\t\t\"SY\",\n\t\t\"TH\",\n\t\t\"TR\",\n\t\t\"TM\",\n\t\t\"AE\",\n\t\t\"UZ\",\n\t\t\"VE\",\n\t\t\"VN\",\n\t\t\"YE\"\n\t]\n}\n","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"RxCachedThreadScheduler-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e82bd1e1-b945-4c3e-8efb-de69ccfa8bbb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ee5508d7-c1d7-405b-9f63-753874c70621","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:43.32500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.onboarding.InitialOnboardingFragment$ItemFragment","parent_activity":"org.wikipedia.onboarding.InitialOnboardingActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f240dbcf-8565-4e44-905b-00088b964210","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:45.38000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.onboarding.InitialOnboardingActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f8d7042a-7aee-4f11-aa5f-8c9cba958216","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:44.21200000Z","type":"http","http":{"url":"https://meta.wikimedia.beta.wmflabs.org/w/api.php?format=json\u0026formatversion=2\u0026errorformat=html\u0026errorsuselocal=1\u0026action=streamconfigs\u0026format=json\u0026constraints=destination_event_service=eventgate-analytics-external","method":"get","status_code":200,"start_time":104680,"end_time":105697,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","host":"meta.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","age":"85","cache-control":"max-age=600, s-maxage=600, public","content-disposition":"inline; filename=api-result.json","content-encoding":"gzip","content-length":"3844","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:09:19 GMT","expires":"Mon, 20 May 2024 09:19:19 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"deployment-mediawiki11.deployment-prep.eqiad1.wikimedia.cloud","server-timing":"cache;desc=\"hit-remote\", host;desc=\"deployment-cache-text08\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, WMF-Last-Access-Global=20-May-2024;Path=/;Domain=.wikimedia.beta.wmflabs.org;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; Path=/; secure; Domain=.beta.wmflabs.org, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","vary":"Accept-Encoding,Treat-as-Untrusted,X-Forwarded-Proto,Cookie,Authorization","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 hit/2","x-cache-status":"hit-remote","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","x-frame-options":"DENY"},"request_body":null,"response_body":"{\"streams\":{\"eventlogging_CentralNoticeBannerHistory\":{\"schema_title\":\"analytics/legacy/centralnoticebannerhistory\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeBannerHistory\",\"topics\":[\"eventlogging_CentralNoticeBannerHistory\"]},\"eventlogging_CentralNoticeImpression\":{\"schema_title\":\"analytics/legacy/centralnoticeimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CentralNoticeImpression\",\"topics\":[\"eventlogging_CentralNoticeImpression\"]},\"eventlogging_CodeMirrorUsage\":{\"schema_title\":\"analytics/legacy/codemirrorusage\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CodeMirrorUsage\",\"topics\":[\"eventlogging_CodeMirrorUsage\"]},\"eventlogging_ContentTranslationAbuseFilter\":{\"schema_title\":\"analytics/legacy/contenttranslationabusefilter\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ContentTranslationAbuseFilter\",\"topics\":[\"eventlogging_ContentTranslationAbuseFilter\"]},\"eventlogging_CpuBenchmark\":{\"schema_title\":\"analytics/legacy/cpubenchmark\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_CpuBenchmark\",\"topics\":[\"eventlogging_CpuBenchmark\"]},\"eventlogging_DesktopWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/desktopwebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_DesktopWebUIActionsTracking\",\"topics\":[\"eventlogging_DesktopWebUIActionsTracking\"]},\"eventlogging_EditAttemptStep\":{\"schema_title\":\"analytics/legacy/editattemptstep\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_EditAttemptStep\",\"topics\":[\"eventlogging_EditAttemptStep\"]},\"eventlogging_HelpPanel\":{\"schema_title\":\"analytics/legacy/helppanel\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HelpPanel\",\"topics\":[\"eventlogging_HelpPanel\"]},\"eventlogging_HomepageModule\":{\"schema_title\":\"analytics/legacy/homepagemodule\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageModule\",\"topics\":[\"eventlogging_HomepageModule\"]},\"eventlogging_HomepageVisit\":{\"schema_title\":\"analytics/legacy/homepagevisit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_HomepageVisit\",\"topics\":[\"eventlogging_HomepageVisit\"]},\"eventlogging_InukaPageView\":{\"schema_title\":\"analytics/legacy/inukapageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_InukaPageView\",\"topics\":[\"eventlogging_InukaPageView\"]},\"eventlogging_KaiOSAppFirstRun\":{\"schema_title\":\"analytics/legacy/kaiosappfirstrun\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFirstRun\",\"topics\":[\"eventlogging_KaiOSAppFirstRun\"]},\"eventlogging_KaiOSAppFeedback\":{\"schema_title\":\"analytics/legacy/kaiosappfeedback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_KaiOSAppFeedback\",\"topics\":[\"eventlogging_KaiOSAppFeedback\"]},\"eventlogging_LandingPageImpression\":{\"schema_title\":\"analytics/legacy/landingpageimpression\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_LandingPageImpression\",\"topics\":[\"eventlogging_LandingPageImpression\"]},\"eventlogging_MediaWikiPingback\":{\"schema_title\":\"analytics/legacy/mediawikipingback\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MediaWikiPingback\",\"topics\":[\"eventlogging_MediaWikiPingback\"]},\"eventlogging_MobileWebUIActionsTracking\":{\"schema_title\":\"analytics/legacy/mobilewebuiactionstracking\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_MobileWebUIActionsTracking\",\"topics\":[\"eventlogging_MobileWebUIActionsTracking\"]},\"eventlogging_NavigationTiming\":{\"schema_title\":\"analytics/legacy/navigationtiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NavigationTiming\",\"topics\":[\"eventlogging_NavigationTiming\"]},\"eventlogging_NewcomerTask\":{\"schema_title\":\"analytics/legacy/newcomertask\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_NewcomerTask\",\"topics\":[\"eventlogging_NewcomerTask\"]},\"eventlogging_PaintTiming\":{\"schema_title\":\"analytics/legacy/painttiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PaintTiming\",\"topics\":[\"eventlogging_PaintTiming\"]},\"eventlogging_PrefUpdate\":{\"schema_title\":\"analytics/legacy/prefupdate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_PrefUpdate\",\"topics\":[\"eventlogging_PrefUpdate\"]},\"eventlogging_WikipediaPortal\":{\"schema_title\":\"analytics/legacy/wikipediaportal\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikipediaPortal\",\"topics\":[\"eventlogging_WikipediaPortal\"]},\"eventlogging_QuickSurveyInitiation\":{\"schema_title\":\"analytics/legacy/quicksurveyinitiation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveyInitiation\",\"topics\":[\"eventlogging_QuickSurveyInitiation\"]},\"eventlogging_QuickSurveysResponses\":{\"schema_title\":\"analytics/legacy/quicksurveysresponses\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_QuickSurveysResponses\",\"topics\":[\"eventlogging_QuickSurveysResponses\"]},\"eventlogging_ReferencePreviewsBaseline\":{\"schema_title\":\"analytics/legacy/referencepreviewsbaseline\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsBaseline\",\"topics\":[\"eventlogging_ReferencePreviewsBaseline\"]},\"eventlogging_ReferencePreviewsCite\":{\"schema_title\":\"analytics/legacy/referencepreviewscite\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsCite\",\"topics\":[\"eventlogging_ReferencePreviewsCite\"]},\"eventlogging_ReferencePreviewsPopups\":{\"schema_title\":\"analytics/legacy/referencepreviewspopups\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ReferencePreviewsPopups\",\"topics\":[\"eventlogging_ReferencePreviewsPopups\"]},\"eventlogging_SaveTiming\":{\"schema_title\":\"analytics/legacy/savetiming\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SaveTiming\",\"topics\":[\"eventlogging_SaveTiming\"]},\"eventlogging_SearchSatisfaction\":{\"schema_title\":\"analytics/legacy/searchsatisfaction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SearchSatisfaction\",\"topics\":[\"eventlogging_SearchSatisfaction\"]},\"eventlogging_ServerSideAccountCreation\":{\"schema_title\":\"analytics/legacy/serversideaccountcreation\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_ServerSideAccountCreation\",\"topics\":[\"eventlogging_ServerSideAccountCreation\"]},\"eventlogging_SpecialInvestigate\":{\"schema_title\":\"analytics/legacy/specialinvestigate\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_SpecialInvestigate\",\"topics\":[\"eventlogging_SpecialInvestigate\"]},\"eventlogging_TemplateDataApi\":{\"schema_title\":\"analytics/legacy/templatedataapi\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataApi\",\"topics\":[\"eventlogging_TemplateDataApi\"]},\"eventlogging_TemplateDataEditor\":{\"schema_title\":\"analytics/legacy/templatedataeditor\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateDataEditor\",\"topics\":[\"eventlogging_TemplateDataEditor\"]},\"eventlogging_TemplateWizard\":{\"schema_title\":\"analytics/legacy/templatewizard\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TemplateWizard\",\"topics\":[\"eventlogging_TemplateWizard\"]},\"eventlogging_Test\":{\"schema_title\":\"analytics/legacy/test\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_Test\",\"topics\":[\"eventlogging_Test\"]},\"eventlogging_TranslationRecommendationUserAction\":{\"schema_title\":\"analytics/legacy/translationrecommendationuseraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUserAction\",\"topics\":[\"eventlogging_TranslationRecommendationUserAction\"]},\"eventlogging_TranslationRecommendationUIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationuirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationUIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationUIRequests\"]},\"eventlogging_TranslationRecommendationAPIRequests\":{\"schema_title\":\"analytics/legacy/translationrecommendationapirequests\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TranslationRecommendationAPIRequests\",\"topics\":[\"eventlogging_TranslationRecommendationAPIRequests\"]},\"eventlogging_TwoColConflictConflict\":{\"schema_title\":\"analytics/legacy/twocolconflictconflict\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictConflict\",\"topics\":[\"eventlogging_TwoColConflictConflict\"]},\"eventlogging_TwoColConflictExit\":{\"schema_title\":\"analytics/legacy/twocolconflictexit\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_TwoColConflictExit\",\"topics\":[\"eventlogging_TwoColConflictExit\"]},\"eventlogging_UniversalLanguageSelector\":{\"schema_title\":\"analytics/legacy/universallanguageselector\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_UniversalLanguageSelector\",\"topics\":[\"eventlogging_UniversalLanguageSelector\"]},\"eventlogging_VirtualPageView\":{\"schema_title\":\"analytics/legacy/virtualpageview\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VirtualPageView\",\"topics\":[\"eventlogging_VirtualPageView\"]},\"eventlogging_VisualEditorFeatureUse\":{\"schema_title\":\"analytics/legacy/visualeditorfeatureuse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorFeatureUse\",\"topics\":[\"eventlogging_VisualEditorFeatureUse\"]},\"eventlogging_VisualEditorTemplateDialogUse\":{\"schema_title\":\"analytics/legacy/visualeditortemplatedialoguse\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_VisualEditorTemplateDialogUse\",\"topics\":[\"eventlogging_VisualEditorTemplateDialogUse\"]},\"eventlogging_WikibaseTermboxInteraction\":{\"schema_title\":\"analytics/legacy/wikibasetermboxinteraction\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikibaseTermboxInteraction\",\"topics\":[\"eventlogging_WikibaseTermboxInteraction\"]},\"eventlogging_WikidataCompletionSearchClicks\":{\"schema_title\":\"analytics/legacy/wikidatacompletionsearchclicks\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WikidataCompletionSearchClicks\",\"topics\":[\"eventlogging_WikidataCompletionSearchClicks\"]},\"eventlogging_WMDEBannerEvents\":{\"schema_title\":\"analytics/legacy/wmdebannerevents\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerEvents\",\"topics\":[\"eventlogging_WMDEBannerEvents\"]},\"eventlogging_WMDEBannerInteractions\":{\"schema_title\":\"analytics/legacy/wmdebannerinteractions\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerInteractions\",\"topics\":[\"eventlogging_WMDEBannerInteractions\"]},\"eventlogging_WMDEBannerSizeIssue\":{\"schema_title\":\"analytics/legacy/wmdebannersizeissue\",\"topic_prefixes\":null,\"destination_event_service\":\"eventgate-analytics-external\",\"consumers\":{\"analytics_hadoop_ingestion\":{\"job_name\":\"eventlogging_legacy\",\"enabled\":true}},\"stream\":\"eventlogging_WMDEBannerSizeIssue\",\"topics\":[\"eventlogging_WMDEBannerSizeIssue\"]},\"test.instrumentation\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation\",\"topics\":[\"eqiad.test.instrumentation\"]},\"test.instrumentation.sampled\":{\"schema_title\":\"analytics/test\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"rate\":0.5,\"unit\":\"session\"},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"test.instrumentation.sampled\",\"topics\":[\"eqiad.test.instrumentation.sampled\"]},\"mediawiki.client.session_tick\":{\"schema_title\":\"analytics/session_tick\",\"destination_event_service\":\"eventgate-analytics-external\",\"sample\":{\"unit\":\"session\",\"rate\":0.1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.client.session_tick\",\"topics\":[\"eqiad.mediawiki.client.session_tick\"]},\"app_session\":{\"schema_title\":\"analytics/mobile_apps/app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_session\",\"topics\":[\"eqiad.app_session\"]},\"app_donor_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_donor_experience\",\"topics\":[\"eqiad.app_donor_experience\"]},\"app_patroller_experience\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_patroller_experience\",\"topics\":[\"eqiad.app_patroller_experience\"]},\"app_places_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"app_places_interaction\",\"topics\":[\"eqiad.app_places_interaction\"]},\"ios.edit_history_compare\":{\"schema_title\":\"analytics/mobile_apps/ios_edit_history_compare\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_history_compare\",\"topics\":[\"eqiad.ios.edit_history_compare\"]},\"ios.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.notification_interaction\",\"topics\":[\"eqiad.ios.notification_interaction\"]},\"ios.talk_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/ios_talk_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.talk_page_interaction\",\"topics\":[\"eqiad.ios.talk_page_interaction\"]},\"ios.setting_action\":{\"schema_title\":\"analytics/mobile_apps/ios_setting_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.setting_action\",\"topics\":[\"eqiad.ios.setting_action\"]},\"ios.sessions\":{\"schema_title\":\"analytics/mobile_apps/ios_sessions\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.sessions\",\"topics\":[\"eqiad.ios.sessions\"]},\"ios.login_action\":{\"schema_title\":\"analytics/mobile_apps/ios_login_action\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.login_action\",\"topics\":[\"eqiad.ios.login_action\"]},\"ios.search\":{\"schema_title\":\"analytics/mobile_apps/ios_search\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.search\",\"topics\":[\"eqiad.ios.search\"]},\"ios.user_history\":{\"schema_title\":\"analytics/mobile_apps/ios_user_history\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.user_history\",\"topics\":[\"eqiad.ios.user_history\"]},\"ios.reading_lists\":{\"schema_title\":\"analytics/mobile_apps/ios_reading_lists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.reading_lists\",\"topics\":[\"eqiad.ios.reading_lists\"]},\"ios.navigation_events\":{\"schema_title\":\"analytics/mobile_apps/ios_navigation_events\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.navigation_events\",\"topics\":[\"eqiad.ios.navigation_events\"]},\"ios.watchlists\":{\"schema_title\":\"analytics/mobile_apps/ios_watchlists\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.watchlists\",\"topics\":[\"eqiad.ios.watchlists\"]},\"ios.suggested_edits_alt_text_prototype\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.suggested_edits_alt_text_prototype\",\"topics\":[\"eqiad.ios.suggested_edits_alt_text_prototype\"]},\"ios.edit_interaction\":{\"schema_title\":\"analytics/mobile_apps/app_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"ios.edit_interaction\",\"topics\":[\"eqiad.ios.edit_interaction\"]},\"android.user_contribution_screen\":{\"schema_title\":\"analytics/mobile_apps/android_user_contribution_screen\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.user_contribution_screen\",\"topics\":[\"eqiad.android.user_contribution_screen\"]},\"android.notification_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_notification_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.notification_interaction\",\"topics\":[\"eqiad.android.notification_interaction\"]},\"android.image_recommendation_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_interaction\",\"topics\":[\"eqiad.android.image_recommendation_interaction\"]},\"android.daily_stats\":{\"schema_title\":\"analytics/mobile_apps/android_daily_stats\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.daily_stats\",\"topics\":[\"eqiad.android.daily_stats\"]},\"android.customize_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_customize_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.customize_toolbar_interaction\",\"topics\":[\"eqiad.android.customize_toolbar_interaction\"]},\"android.article_toolbar_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toolbar_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toolbar_interaction\",\"topics\":[\"eqiad.android.article_toolbar_interaction\"]},\"android.edit_history_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_edit_history_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.edit_history_interaction\",\"topics\":[\"eqiad.android.edit_history_interaction\"]},\"android.app_session\":{\"schema_title\":\"analytics/mobile_apps/android_app_session\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_session\",\"topics\":[\"eqiad.android.app_session\"]},\"android.create_account_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_create_account_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.create_account_interaction\",\"topics\":[\"eqiad.android.create_account_interaction\"]},\"android.install_referrer_event\":{\"schema_title\":\"analytics/mobile_apps/android_install_referrer_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.install_referrer_event\",\"topics\":[\"eqiad.android.install_referrer_event\"]},\"android.breadcrumbs_event\":{\"schema_title\":\"analytics/mobile_apps/android_breadcrumbs_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.breadcrumbs_event\",\"topics\":[\"eqiad.android.breadcrumbs_event\"]},\"android.app_appearance_settings_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_app_appearance_settings_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.app_appearance_settings_interaction\",\"topics\":[\"eqiad.android.app_appearance_settings_interaction\"]},\"android.article_link_preview_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_link_preview_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_link_preview_interaction\",\"topics\":[\"eqiad.android.article_link_preview_interaction\"]},\"android.article_page_scroll_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_page_scroll_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_page_scroll_interaction\",\"topics\":[\"eqiad.android.article_page_scroll_interaction\"]},\"android.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.article_toc_interaction\",\"topics\":[\"eqiad.android.article_toc_interaction\"]},\"android.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.find_in_page_interaction\",\"topics\":[\"eqiad.android.find_in_page_interaction\"]},\"android.image_recommendation_event\":{\"schema_title\":\"analytics/mobile_apps/android_image_recommendation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.image_recommendation_event\",\"topics\":[\"eqiad.android.image_recommendation_event\"]},\"android.reading_list_interaction\":{\"schema_title\":\"analytics/mobile_apps/android_reading_list_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.reading_list_interaction\",\"topics\":[\"eqiad.android.reading_list_interaction\"]},\"android.product_metrics.article_link_preview_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_wikidata_qid\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_link_preview_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_link_preview_interaction\"]},\"android.product_metrics.article_toc_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_article_toc_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toc_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toc_interaction\"]},\"android.product_metrics.article_toolbar_interaction\":{\"schema_title\":\"analytics/product_metrics/app/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.article_toolbar_interaction\",\"topics\":[\"eqiad.android.product_metrics.article_toolbar_interaction\"]},\"android.product_metrics.find_in_page_interaction\":{\"schema_title\":\"analytics/mobile_apps/product_metrics/android_find_in_page_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_app_install_id\",\"agent_app_flavor\",\"agent_app_theme\",\"agent_app_version\",\"agent_device_language\",\"agent_release_status\",\"mediawiki_database\",\"page_id\",\"page_title\",\"page_namespace_id\",\"page_content_language\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language_groups\",\"performer_language_primary\",\"performer_groups\"]}},\"sample\":{\"unit\":\"device\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"android.product_metrics.find_in_page_interaction\",\"topics\":[\"eqiad.android.product_metrics.find_in_page_interaction\"]},\"mediawiki.mediasearch_interaction\":{\"schema_title\":\"analytics/mediawiki/mediasearch_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mediasearch_interaction\",\"topics\":[\"eqiad.mediawiki.mediasearch_interaction\"]},\"mediawiki.searchpreview\":{\"schema_title\":\"analytics/mediawiki/searchpreview\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.searchpreview\",\"topics\":[\"eqiad.mediawiki.searchpreview\"]},\"mediawiki.structured_task.article.link_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/link_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.link_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.link_suggestion_interaction\"]},\"mediawiki.structured_task.article.image_suggestion_interaction\":{\"schema_title\":\"analytics/mediawiki/structured_task/article/image_suggestion_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.structured_task.article.image_suggestion_interaction\",\"topics\":[\"eqiad.mediawiki.structured_task.article.image_suggestion_interaction\"]},\"mediawiki.pref_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.pref_diff\",\"topics\":[\"eqiad.mediawiki.pref_diff\"]},\"mediawiki.skin_diff\":{\"schema_title\":\"analytics/pref_diff\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.skin_diff\",\"topics\":[\"eqiad.mediawiki.skin_diff\"]},\"mediawiki.content_translation_event\":{\"schema_title\":\"analytics/mediawiki/content_translation_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.content_translation_event\",\"topics\":[\"eqiad.mediawiki.content_translation_event\"]},\"mediawiki.reading_depth\":{\"schema_title\":\"analytics/mediawiki/web_ui_reading_depth\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reading_depth\",\"topics\":[\"eqiad.mediawiki.reading_depth\"]},\"mediawiki.web_ab_test_enrollment\":{\"schema_title\":\"analytics/mediawiki/web_ab_test_enrollment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ab_test_enrollment\",\"topics\":[\"eqiad.mediawiki.web_ab_test_enrollment\"]},\"mediawiki.web_ui_actions\":{\"schema_title\":\"analytics/mediawiki/product_metrics/web_ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"page_namespace_id\",\"performer_is_logged_in\",\"performer_session_id\",\"performer_pageview_id\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\",\"mediawiki_skin\",\"mediawiki_database\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_actions\",\"topics\":[\"eqiad.mediawiki.web_ui_actions\"]},\"mediawiki.web_ui_scroll\":{\"schema_title\":\"analytics/mediawiki/web_ui_scroll\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll\"]},\"mediawiki.web_ui_scroll_migrated\":{\"schema_title\":\"analytics/product_metrics/web/base\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"performer_is_bot\",\"mediawiki_database\",\"mediawiki_skin\",\"performer_session_id\",\"page_id\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.web_ui_scroll_migrated\",\"topics\":[\"eqiad.mediawiki.web_ui_scroll_migrated\"]},\"mediawiki.ipinfo_interaction\":{\"schema_title\":\"analytics/mediawiki/ipinfo_interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.ipinfo_interaction\",\"topics\":[\"eqiad.mediawiki.ipinfo_interaction\"]},\"wd_propertysuggester.client_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/client_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.client_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.client_side_property_request\"]},\"wd_propertysuggester.server_side_property_request\":{\"schema_title\":\"analytics/mediawiki/wd_propertysuggester/server_side_property_request\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wd_propertysuggester.server_side_property_request\",\"topics\":[\"eqiad.wd_propertysuggester.server_side_property_request\"]},\"mediawiki.mentor_dashboard.visit\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/visit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.visit\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.visit\"]},\"mediawiki.mentor_dashboard.personalized_praise\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/personalized_praise\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.personalized_praise\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.personalized_praise\"]},\"mediawiki.mentor_dashboard.interaction\":{\"schema_title\":\"analytics/mediawiki/mentor_dashboard/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.mentor_dashboard.interaction\",\"topics\":[\"eqiad.mediawiki.mentor_dashboard.interaction\"]},\"mediawiki.welcomesurvey.interaction\":{\"schema_title\":\"analytics/mediawiki/welcomesurvey/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.welcomesurvey.interaction\",\"topics\":[\"eqiad.mediawiki.welcomesurvey.interaction\"]},\"mediawiki.editgrowthconfig\":{\"schema_title\":\"analytics/mediawiki/editgrowthconfig\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editgrowthconfig\",\"topics\":[\"eqiad.mediawiki.editgrowthconfig\"]},\"mediawiki.accountcreation_block\":{\"schema_title\":\"analytics/mediawiki/accountcreation/block\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.accountcreation_block\",\"topics\":[\"eqiad.mediawiki.accountcreation_block\"]},\"mediawiki.editattempt_block\":{\"schema_title\":\"analytics/mediawiki/editattemptsblocked\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.editattempt_block\",\"topics\":[\"eqiad.mediawiki.editattempt_block\"]},\"mediawiki.talk_page_edit\":{\"stream\":\"mediawiki.talk_page_edit\",\"schema_title\":\"analytics/mediawiki/talk_page_edit\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"topics\":[\"eqiad.mediawiki.talk_page_edit\"]},\"mwcli.command_execute\":{\"schema_title\":\"analytics/mwcli/command_execute\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mwcli.command_execute\",\"topics\":[\"eqiad.mwcli.command_execute\"]},\"mediawiki.reference_previews\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"ext.cite.baseline\"],\"provide_values\":[\"mediawiki_database\",\"mediawiki_skin\",\"page_namespace\",\"performer_edit_count_bucket\",\"performer_is_logged_in\"]}},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.reference_previews\",\"topics\":[\"eqiad.mediawiki.reference_previews\"]},\"mediawiki.wikistories_consumption_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_consumption_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_consumption_event\",\"topics\":[\"eqiad.mediawiki.wikistories_consumption_event\"]},\"mediawiki.wikistories_contribution_event\":{\"schema_title\":\"analytics/mediawiki/wikistories_contribution_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.wikistories_contribution_event\",\"topics\":[\"eqiad.mediawiki.wikistories_contribution_event\"]},\"development.network.probe\":{\"schema_title\":\"development/network/probe\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"development.network.probe\",\"topics\":[\"eqiad.development.network.probe\"]},\"mediawiki.page_content_change.v1\":{\"schema_title\":\"mediawiki/page/change\",\"message_key_fields\":{\"wiki_id\":\"wiki_id\",\"page_id\":\"page.page_id\"},\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.page_content_change.v1\",\"topics\":[\"eqiad.mediawiki.page_content_change.v1\"]},\"mediawiki.maps_interaction\":{\"schema_title\":\"analytics/mediawiki/maps/interaction\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.maps_interaction\",\"topics\":[\"eqiad.mediawiki.maps_interaction\"]},\"eventgate-analytics-external.test.event\":{\"schema_title\":\"test/event\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.test.event\",\"topics\":[\"eqiad.eventgate-analytics-external.test.event\"]},\"eventgate-analytics-external.error.validation\":{\"schema_title\":\"error\",\"destination_event_service\":\"eventgate-analytics-external\",\"canary_events_enabled\":false,\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"eventgate-analytics-external.error.validation\",\"topics\":[\"eqiad.eventgate-analytics-external.error.validation\"]},\"inuka.wiki_highlights_experiment\":{\"schema_title\":\"analytics/external/wiki_highlights_experiment\",\"destination_event_service\":\"eventgate-analytics-external\",\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"inuka.wiki_highlights_experiment\",\"topics\":[\"eqiad.inuka.wiki_highlights_experiment\"]},\"wikifunctions.ui\":{\"schema_title\":\"analytics/mediawiki/client/metrics_event\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"events\":[\"wf.ui.\"],\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"wikifunctions.ui\",\"topics\":[\"eqiad.wikifunctions.ui\"]},\"mediawiki.product_metrics.wikifunctions_ui\":{\"schema_title\":\"analytics/mediawiki/product_metrics/wikilambda/ui_actions\",\"destination_event_service\":\"eventgate-analytics-external\",\"producers\":{\"metrics_platform_client\":{\"provide_values\":[\"agent_client_platform_family\",\"page_id\",\"page_title\",\"page_revision_id\",\"performer_is_logged_in\",\"performer_id\",\"performer_name\",\"performer_session_id\",\"performer_active_browsing_session_token\",\"performer_pageview_id\",\"performer_language\",\"performer_language_variant\",\"performer_edit_count\",\"performer_edit_count_bucket\",\"performer_groups\",\"performer_is_bot\"]}},\"sample\":{\"unit\":\"pageview\",\"rate\":1},\"topic_prefixes\":[\"eqiad.\"],\"stream\":\"mediawiki.product_metrics.wikifunctions_ui\",\"topics\":[\"eqiad.mediawiki.product_metrics.wikifunctions_ui\"]}}}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://meta.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"facb6ba3-ce45-4dfe-8771-8e6a1e6916e4","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:10:46.19500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Illinois_Appellate_Court%2C_Springfield.jpg/640px-Illinois_Appellate_Court%2C_Springfield.jpg","method":"get","status_code":200,"start_time":107609,"end_time":107679,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"12648","content-disposition":"inline;filename*=UTF-8''Illinois_Appellate_Court%2C_Springfield.jpg","content-length":"99486","content-type":"image/jpeg","date":"Mon, 20 May 2024 05:39:58 GMT","etag":"5edf12a5b6a8f9e0d7014d2329f45281","last-modified":"Tue, 13 Sep 2022 08:56:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/780","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fcae5c91-78cd-493c-b148-0dc182eacbb7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:01.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":22269,"java_free_heap":2945,"total_pss":89433,"rss":152904,"native_total_heap":45592,"native_free_heap":12775,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json index 35c735f85..45a3b7996 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d0be6d67-9f94-42af-8bb9-dfcb7feada57.json @@ -1 +1 @@ -[{"id":"00002d49-c8a7-496a-85ef-ec1d7d37bc36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"00dd59fb-a977-42b1-be34-e3fbdcf27a17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"025d8096-e3b7-4f02-8857-53826f67d96d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.65800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/70px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":335391,"end_time":335477,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"46378","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"2834","content-type":"image/webp","date":"Sun, 19 May 2024 20:08:44 GMT","etag":"81b2c7cc5c9d55a3bdc7efd899291bbc","last-modified":"Fri, 08 Sep 2023 16:29:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17163","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0388533a-325d-45ba-8885-8512e61b12b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"03c6e324-554a-4dac-8c31-500c46878a6f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a3aea92-98c6-4b30-bb82-b5df3f1c0500","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/MediaWiki-2020-icon.svg/70px-MediaWiki-2020-icon.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335398,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2917","content-disposition":"inline;filename*=UTF-8''MediaWiki-2020-icon.svg.webp","content-length":"4418","content-type":"image/webp","date":"Mon, 20 May 2024 08:13:05 GMT","etag":"926f26e2e4931dd3338401f294b6a656","last-modified":"Wed, 04 May 2022 16:45:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1514","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0b2b26db-8b8a-4a56-a9d4-645df4e71faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.79700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/favicon/wikipedia.ico","method":"get","status_code":200,"start_time":335566,"end_time":335616,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"62358","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"1035","content-type":"image/vnd.microsoft.icon","date":"Sun, 19 May 2024 15:42:24 GMT","etag":"W/\"aae-617c8293c9c40\"","expires":"Mon, 19 May 2025 01:33:54 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1765602","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d892b2c-bbe2-4ebd-9d14-31959ca4ec5d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.66500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":149.9414,"touch_down_time":338386,"touch_up_time":338482},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1bf73967-3b19-456c-9959-c4ffe99fdee0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":3278,"total_pss":125446,"rss":216108,"native_total_heap":64512,"native_free_heap":8079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f420910-cd29-47a2-a7de-f7a80998616b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/102px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":335399,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"83025","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"6134","content-type":"image/webp","date":"Sun, 19 May 2024 09:57:57 GMT","etag":"dc4818699536a14345dcf9f070d6b363","last-modified":"Wed, 24 May 2023 13:47:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/33009","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"25395aa1-b491-447f-bf79-6d80599a4da6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:43.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17349,"java_free_heap":5991,"total_pss":157071,"rss":249108,"native_total_heap":72704,"native_free_heap":10085,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a009fbe-210b-4a77-a22c-6d58527d9e52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"30b6f1fe-2278-4441-b900-f111df794b70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.68900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg","method":"get","status_code":200,"start_time":337248,"end_time":337508,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Trace_Adkins_2011_%28cropped%29.jpg","content-length":"17847","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"eccc362d7d41607d3ee973226a980fdf","last-modified":"Fri, 29 Oct 2021 06:37:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31aafcd5-19a1-489a-aab3-a0f7d8a20c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg/600px-NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg","method":"get","status_code":200,"start_time":335098,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg.webp","content-length":"101392","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"68e381231db778c003edf6387210fc97","last-modified":"Mon, 20 May 2024 00:03:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22632","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3335aacc-b190-4df2-bf7c-da7a615f6882","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4247e82b-d6a3-47c7-b815-69a6759c3f24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4527dbae-6271-4e01-bef8-08ed1e1e7149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":335485,"end_time":335529,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76028","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"858","content-type":"image/webp","date":"Sun, 19 May 2024 11:54:34 GMT","etag":"2b49d95bfd3ff0b9ebf17e29941d28f3","last-modified":"Fri, 04 Aug 2023 00:38:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/32839","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cd53b69-efaa-4917-b7ae-52f31eb2c2e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.91000000Z","type":"http","http":{"url":"https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script\u0026wikiid=enwiki\u0026mobile=1\u0026mobile=1","method":"get","status_code":200,"start_time":335564,"end_time":335729,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"login.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"275","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-length":"207","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 08:57:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.eqiad.main-5bb8644857-q58xb","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/6004","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"545b9905-9b8a-43f9-917f-d9edaf3d3a96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55437eb2-2da8-4325-ba86-e40c5e757968","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"559642d5-494f-4040-b132-eca7dd895345","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"610660fe-a016-436f-9eab-5dc50362ac04","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.37000000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":66.97266,"y":168.98438,"touch_down_time":337089,"touch_up_time":337186},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"739b21e5-cf28-4c99-8fd3-6c0086a47ae2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=menu\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335292,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''menu.svg","content-encoding":"gzip","content-length":"199","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:41:42 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 05:41:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/223061","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ab50181-95c5-4763-886b-9873a8e9227a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8017b320-ab39-49d0-95d4-cf2899632f09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.23800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":339011,"end_time":339057,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"31739","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg","content-length":"27048","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:12:48 GMT","etag":"532226c726bc4784b6de65095da97cf9","last-modified":"Thu, 03 Jun 2021 20:02:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/60","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"818f6360-b15f-4248-9b16-9e36157880bd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"89d83fae-7bd7-4bf2-83f5-ad52ba24bb09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":335396,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50064","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"256","content-type":"image/webp","date":"Sun, 19 May 2024 19:07:18 GMT","etag":"dc0fbe756f6c20bbb4b2e6502c6b8d93","last-modified":"Thu, 04 Jan 2024 04:19:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fed42c8-0d39-433f-afe5-36cf0003e8c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.88200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg","method":"get","status_code":200,"start_time":337251,"end_time":337701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"25791","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"b40874266cea3519947f7c1703983ecc","last-modified":"Tue, 11 Dec 2018 22:02:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9adbb5b7-4a59-44f7-a2c9-8e590f884cbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Calvin_1993-07-06_1831Z.png/280px-Calvin_1993-07-06_1831Z.png","method":"get","status_code":200,"start_time":335055,"end_time":335349,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Calvin_1993-07-06_1831Z.png.webp","content-length":"93458","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"c6eaa7bba98bd1ac40cf8c3c8db5a25a","last-modified":"Mon, 20 May 2024 00:03:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22700","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b251137c-c444-4ba1-a00a-a85c655dc633","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/238px-Schlosskirche_Weimar_1660.jpg","method":"get","status_code":200,"start_time":335054,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Schlosskirche_Weimar_1660.jpg.webp","content-length":"37142","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"ea61033b16cc202a2cfdb27234ac2416","last-modified":"Mon, 20 May 2024 00:03:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22742","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3592198-653d-490b-b6e1-52c91ce61517","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/70px-Wikispecies-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335524,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"3246","content-disposition":"inline;filename*=UTF-8''Wikispecies-logo.svg.webp","content-length":"5442","content-type":"image/webp","date":"Mon, 20 May 2024 08:07:36 GMT","etag":"85dc48aa591946853764893667e96f42","last-modified":"Thu, 03 Aug 2023 23:09:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1798","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f12ba7-608e-481b-956d-78bdb17fda62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.22200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f6bf91-c5c6-41aa-b2dc-056ae671cfa7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337216,"end_time":337560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"386","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c34f3fb0-bc13-49da-be81-2ae9572b3e26","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/82px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":335480,"end_time":335526,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"80480","content-length":"916","content-type":"image/webp","date":"Sun, 19 May 2024 10:40:22 GMT","etag":"6110b293e5bffd57d56a06bd076ca96f","last-modified":"Sat, 12 Dec 2020 13:25:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/28427","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c7ab0679-47a5-4d73-a4ac-9e11ea57cb55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=settings\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335291,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''settings.svg","content-encoding":"gzip","content-length":"314","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:54:50 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 05:54:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/206645","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c97c50b6-ec67-4dee-998a-bd6e0522235c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=mapPin\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335296,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''mapPin.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:39:31 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:39:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/157656","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cbdce010-cf05-4659-aa4f-343360270000","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70900000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026version=wtz5o","method":"get","status_code":200,"start_time":335105,"end_time":335528,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"194789","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 00:19:18 GMT","etag":"W/\"wtz5o\"","expires":"Wed, 19 Jun 2024 00:19:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-5fd47cfb8c-bv65j","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=wtz5o","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/312","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce35a05e-990e-4ffc-a98c-d535a34a65da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d60d816e-d243-4bb7-97fa-c7ac67c7e91d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.58000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/70px-Wikimedia_Community_Logo.svg.png","method":"get","status_code":200,"start_time":335349,"end_time":335399,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58084","content-disposition":"inline;filename*=UTF-8''Wikimedia_Community_Logo.svg.webp","content-length":"3010","content-type":"image/webp","date":"Sun, 19 May 2024 16:53:38 GMT","etag":"e881cbcfab5fa3858d43fd28dcf8dbab","last-modified":"Sat, 02 Mar 2024 13:24:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/22539","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d940b582-30f3-4823-af95-9fc573c1bb1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.89800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ded7ed13-7c19-40d5-84af-e36e788753c3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337218,"end_time":337561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e076782c-127a-4062-a9c7-8090fb383ad4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":336976,"utime":349,"cutime":0,"cstime":0,"stime":277,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e13be4ef-49f0-4795-86d2-169df684bc6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/70px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":335434,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36746","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"2964","content-type":"image/webp","date":"Sun, 19 May 2024 22:49:16 GMT","etag":"7878462d0cf1af96f988386bb2273e47","last-modified":"Thu, 08 Jun 2023 05:42:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14972","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1bee547-a43e-43a5-84ff-cf109f77b1a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/70px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335525,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71339","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"3108","content-type":"image/webp","date":"Sun, 19 May 2024 13:12:43 GMT","etag":"4a5f64a8591e9e5f16a1d351fa37279e","last-modified":"Sun, 06 Aug 2023 03:18:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29108","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2dc94c0-33d8-4bbc-936d-9015261af1b4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/70px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":335487,"end_time":335537,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44771","content-length":"2716","content-type":"image/webp","date":"Sun, 19 May 2024 20:35:31 GMT","etag":"ea255af81e6cee85a20ca2653440b36f","last-modified":"Fri, 21 Jun 2019 08:13:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14103","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1030304-d329-4018-8bce-db6500bb4e8d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/62px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64144","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1874","content-type":"image/webp","date":"Sun, 19 May 2024 15:12:38 GMT","etag":"89d68591754da30aadbf4fa239146915","last-modified":"Sat, 16 Mar 2024 06:17:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/24712","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1a210a4-d0d6-4197-ba95-1b3a92040419","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f41b3876-853d-4434-80bf-f6d199226050","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.48300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg","method":"get","status_code":200,"start_time":337252,"end_time":337302,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9389","content-disposition":"inline;filename*=UTF-8''Tracy_Chapman_3.jpg","content-length":"36867","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:15 GMT","etag":"1737000a811db04110a0e0c9690bc051","last-modified":"Sat, 17 Jul 2021 22:41:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fb9689cc-8f38-46db-8bac-dc79fdb62092","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.69400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg","method":"get","status_code":200,"start_time":337250,"end_time":337513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Tracy_Ullman_by_John_Mathew_Smith.jpg","content-length":"34400","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"ac97f11c80670ba39aeac4eecc86f3b1","last-modified":"Thu, 21 Mar 2024 03:12:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf0d2ab-0d89-416e-9cc7-c6dc1249d67f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337217,"end_time":337562,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"00002d49-c8a7-496a-85ef-ec1d7d37bc36","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"00dd59fb-a977-42b1-be34-e3fbdcf27a17","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"025d8096-e3b7-4f02-8857-53826f67d96d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.65800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/70px-Wikibooks-logo.svg.png","method":"get","status_code":200,"start_time":335391,"end_time":335477,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"46378","content-disposition":"inline;filename*=UTF-8''Wikibooks-logo.svg.webp","content-length":"2834","content-type":"image/webp","date":"Sun, 19 May 2024 20:08:44 GMT","etag":"81b2c7cc5c9d55a3bdc7efd899291bbc","last-modified":"Fri, 08 Sep 2023 16:29:45 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17163","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0388533a-325d-45ba-8885-8512e61b12b6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"03c6e324-554a-4dac-8c31-500c46878a6f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.15700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0a3aea92-98c6-4b30-bb82-b5df3f1c0500","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/MediaWiki-2020-icon.svg/70px-MediaWiki-2020-icon.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335398,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2917","content-disposition":"inline;filename*=UTF-8''MediaWiki-2020-icon.svg.webp","content-length":"4418","content-type":"image/webp","date":"Mon, 20 May 2024 08:13:05 GMT","etag":"926f26e2e4931dd3338401f294b6a656","last-modified":"Wed, 04 May 2022 16:45:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1514","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0b2b26db-8b8a-4a56-a9d4-645df4e71faa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.79700000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/static/favicon/wikipedia.ico","method":"get","status_code":200,"start_time":335566,"end_time":335616,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"62358","cache-control":"max-age=31536000","content-encoding":"gzip","content-length":"1035","content-type":"image/vnd.microsoft.icon","date":"Sun, 19 May 2024 15:42:24 GMT","etag":"W/\"aae-617c8293c9c40\"","expires":"Mon, 19 May 2025 01:33:54 GMT","last-modified":"Mon, 06 May 2024 12:25:13 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/1765602","x-cache-status":"hit-front","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0d892b2c-bbe2-4ebd-9d14-31959ca4ec5d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.66500000Z","type":"gesture_click","gesture_click":{"target":"android.widget.LinearLayout","target_id":"search_container","width":1080,"height":990,"x":80.980225,"y":149.9414,"touch_down_time":338386,"touch_up_time":338482},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1bf73967-3b19-456c-9959-c4ffe99fdee0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:45.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17320,"java_free_heap":3278,"total_pss":125446,"rss":216108,"native_total_heap":64512,"native_free_heap":8079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"1f420910-cd29-47a2-a7de-f7a80998616b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/102px-Wikinews-logo.svg.png","method":"get","status_code":200,"start_time":335399,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"83025","content-disposition":"inline;filename*=UTF-8''Wikinews-logo.svg.webp","content-length":"6134","content-type":"image/webp","date":"Sun, 19 May 2024 09:57:57 GMT","etag":"dc4818699536a14345dcf9f070d6b363","last-modified":"Wed, 24 May 2023 13:47:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/33009","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"25395aa1-b491-447f-bf79-6d80599a4da6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:43.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":17349,"java_free_heap":5991,"total_pss":157071,"rss":249108,"native_total_heap":72704,"native_free_heap":10085,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2a009fbe-210b-4a77-a22c-6d58527d9e52","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"30b6f1fe-2278-4441-b900-f111df794b70","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.68900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Trace_Adkins_2011_%28cropped%29.jpg/320px-Trace_Adkins_2011_%28cropped%29.jpg","method":"get","status_code":200,"start_time":337248,"end_time":337508,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Trace_Adkins_2011_%28cropped%29.jpg","content-length":"17847","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"eccc362d7d41607d3ee973226a980fdf","last-modified":"Fri, 29 Oct 2021 06:37:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-local\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 miss","x-cache-status":"hit-local","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"31aafcd5-19a1-489a-aab3-a0f7d8a20c83","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg/600px-NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg","method":"get","status_code":200,"start_time":335098,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''NPG_2010_112_Lucia_Chamberlain_by_Zaida_Ben-Yusuf.jpg.webp","content-length":"101392","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"68e381231db778c003edf6387210fc97","last-modified":"Mon, 20 May 2024 00:03:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22632","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3335aacc-b190-4df2-bf7c-da7a615f6882","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.page.PageFragment","parent_activity":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4247e82b-d6a3-47c7-b815-69a6759c3f24","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.16000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4527dbae-6271-4e01-bef8-08ed1e1e7149","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png","method":"get","status_code":200,"start_time":335485,"end_time":335529,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"76028","content-disposition":"inline;filename*=UTF-8''Wikivoyage-Logo-v3-icon.svg.webp","content-length":"858","content-type":"image/webp","date":"Sun, 19 May 2024 11:54:34 GMT","etag":"2b49d95bfd3ff0b9ebf17e29941d28f3","last-modified":"Fri, 04 Aug 2023 00:38:25 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/32839","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4cd53b69-efaa-4917-b7ae-52f31eb2c2e4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.91000000Z","type":"http","http":{"url":"https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script\u0026wikiid=enwiki\u0026mobile=1\u0026mobile=1","method":"get","status_code":200,"start_time":335564,"end_time":335729,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"login.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ch":"","accept-ranges":"bytes","age":"275","cache-control":"private, s-maxage=0, max-age=0, must-revalidate","content-encoding":"gzip","content-length":"207","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 08:57:07 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.eqiad.main-5bb8644857-q58xb","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"WMF-Last-Access=20-May-2024;Path=/;HttpOnly;secure;Expires=Fri, 21 Jun 2024 00:00:00 GMT, NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding,Cookie,Authorization","x-cache":"cp5023 miss, cp5023 hit/6004","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"545b9905-9b8a-43f9-917f-d9edaf3d3a96","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"55437eb2-2da8-4325-ba86-e40c5e757968","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.39400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"559642d5-494f-4040-b132-eca7dd895345","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.RecentSearchesFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"610660fe-a016-436f-9eab-5dc50362ac04","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.37000000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":66.97266,"y":168.98438,"touch_down_time":337089,"touch_up_time":337186},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"739b21e5-cf28-4c99-8fd3-6c0086a47ae2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.icons.wikimedia\u0026image=menu\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=15h3t","method":"get","status_code":200,"start_time":335292,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''menu.svg","content-encoding":"gzip","content-length":"199","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:41:42 GMT","etag":"W/\"15h3t\"","expires":"Wed, 19 Jun 2024 05:41:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/223061","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ab50181-95c5-4763-886b-9873a8e9227a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8017b320-ab39-49d0-95d4-cf2899632f09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.23800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/City_Building_Champaign_Illinois_from_west.jpg/320px-City_Building_Champaign_Illinois_from_west.jpg","method":"get","status_code":200,"start_time":339011,"end_time":339057,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"31739","content-disposition":"inline;filename*=UTF-8''City_Building_Champaign_Illinois_from_west.jpg","content-length":"27048","content-type":"image/jpeg","date":"Mon, 20 May 2024 00:12:48 GMT","etag":"532226c726bc4784b6de65095da97cf9","last-modified":"Thu, 03 Jun 2021 20:02:57 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/60","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"818f6360-b15f-4248-9b16-9e36157880bd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.tabs.TabActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"89d83fae-7bd7-4bf2-83f5-ad52ba24bb09","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png","method":"get","status_code":200,"start_time":335396,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"50064","content-disposition":"inline;filename*=UTF-8''Wikidata-logo.svg.webp","content-length":"256","content-type":"image/webp","date":"Sun, 19 May 2024 19:07:18 GMT","etag":"dc0fbe756f6c20bbb4b2e6502c6b8d93","last-modified":"Thu, 04 Jan 2024 04:19:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/18455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8fed42c8-0d39-433f-afe5-36cf0003e8c6","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.88200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/b/be/TraceeEllisRossbyErikMelvin.jpg/320px-TraceeEllisRossbyErikMelvin.jpg","method":"get","status_code":200,"start_time":337251,"end_time":337701,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-length":"25791","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"b40874266cea3519947f7c1703983ecc","last-modified":"Tue, 11 Dec 2018 22:02:27 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9adbb5b7-4a59-44f7-a2c9-8e590f884cbd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.53000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Calvin_1993-07-06_1831Z.png/280px-Calvin_1993-07-06_1831Z.png","method":"get","status_code":200,"start_time":335055,"end_time":335349,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Calvin_1993-07-06_1831Z.png.webp","content-length":"93458","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"c6eaa7bba98bd1ac40cf8c3c8db5a25a","last-modified":"Mon, 20 May 2024 00:03:42 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22700","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b251137c-c444-4ba1-a00a-a85c655dc633","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.52600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Schlosskirche_Weimar_1660.jpg/238px-Schlosskirche_Weimar_1660.jpg","method":"get","status_code":200,"start_time":335054,"end_time":335345,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"32205","content-disposition":"inline;filename*=UTF-8''Schlosskirche_Weimar_1660.jpg.webp","content-length":"37142","content-type":"image/webp","date":"Mon, 20 May 2024 00:04:57 GMT","etag":"ea61033b16cc202a2cfdb27234ac2416","last-modified":"Mon, 20 May 2024 00:03:30 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/22742","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"b3592198-653d-490b-b6e1-52c91ce61517","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/70px-Wikispecies-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335524,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"3246","content-disposition":"inline;filename*=UTF-8''Wikispecies-logo.svg.webp","content-length":"5442","content-type":"image/webp","date":"Mon, 20 May 2024 08:07:36 GMT","etag":"85dc48aa591946853764893667e96f42","last-modified":"Thu, 03 Aug 2023 23:09:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1798","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f12ba7-608e-481b-956d-78bdb17fda62","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.22200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c0f6bf91-c5c6-41aa-b2dc-056ae671cfa7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337216,"end_time":337560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"386","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c34f3fb0-bc13-49da-be81-2ae9572b3e26","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/82px-Wikiversity_logo_2017.svg.png","method":"get","status_code":200,"start_time":335480,"end_time":335526,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"80480","content-length":"916","content-type":"image/webp","date":"Sun, 19 May 2024 10:40:22 GMT","etag":"6110b293e5bffd57d56a06bd076ca96f","last-modified":"Sat, 12 Dec 2020 13:25:11 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/28427","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c7ab0679-47a5-4d73-a4ac-9e11ea57cb55","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=settings\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335291,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''settings.svg","content-encoding":"gzip","content-length":"314","content-type":"image/svg+xml","date":"Mon, 20 May 2024 05:54:50 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 05:54:50 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/206645","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c97c50b6-ec67-4dee-998a-bd6e0522235c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57500000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?modules=skins.minerva.mainMenu.icons\u0026image=mapPin\u0026format=original\u0026lang=en\u0026skin=minerva\u0026version=7llsp","method":"get","status_code":200,"start_time":335296,"end_time":335394,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.base.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons.wikimedia%7Cskins.minerva.mainMenu.icons%2Cstyles%7Cskins.minerva.mainPage.styles\u0026only=styles\u0026skin=minerva","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-disposition":"inline;filename*=UTF-8''mapPin.svg","content-encoding":"gzip","content-length":"247","content-type":"image/svg+xml","date":"Mon, 20 May 2024 06:39:31 GMT","etag":"W/\"7llsp\"","expires":"Wed, 19 Jun 2024 06:39:31 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/157656","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"cbdce010-cf05-4659-aa4f-343360270000","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70900000Z","type":"http","http":{"url":"https://en.m.wikipedia.org/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026version=wtz5o","method":"get","status_code":200,"start_time":335105,"end_time":335528,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"*/*","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"en.m.wikipedia.org","referer":"https://en.m.wikipedia.org/wiki/Main_Page","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","age":"0","cache-control":"public, max-age=2592000, s-maxage=2592000, stale-while-revalidate=60","content-encoding":"gzip","content-length":"194789","content-type":"text/javascript; charset=utf-8","date":"Mon, 20 May 2024 00:19:18 GMT","etag":"W/\"wtz5o\"","expires":"Wed, 19 Jun 2024 00:19:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"mw-web.codfw.main-5fd47cfb8c-bv65j","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","sourcemap":"/w/load.php?lang=en\u0026modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cx.entrypoints.languagesearcher.init%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%2Cweb2017-polyfills%7Cjquery.client%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctemplate%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmediawiki.template.mustache%7Cmobile.codex.styles%7Cmobile.init%2Cstartup%7Cmobile.pagelist.styles%7Cmobile.pagesummary.styles%7Cmw.cx.SiteMapper%7Cmw.externalguidance.init%7Cskins.minerva.messageBox.styles%7Cskins.minerva.scripts\u0026skin=minerva\u0026sourcemap=1\u0026version=wtz5o","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/312","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ce35a05e-990e-4ffc-a98c-d535a34a65da","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.41400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.search.SearchResultsFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d60d816e-d243-4bb7-97fa-c7ac67c7e91d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.58000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/70px-Wikimedia_Community_Logo.svg.png","method":"get","status_code":200,"start_time":335349,"end_time":335399,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"58084","content-disposition":"inline;filename*=UTF-8''Wikimedia_Community_Logo.svg.webp","content-length":"3010","content-type":"image/webp","date":"Sun, 19 May 2024 16:53:38 GMT","etag":"e881cbcfab5fa3858d43fd28dcf8dbab","last-modified":"Sat, 02 Mar 2024 13:24:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/22539","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d940b582-30f3-4823-af95-9fc573c1bb1c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.89800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"org.wikipedia.page.PageActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ded7ed13-7c19-40d5-84af-e36e788753c3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74200000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337218,"end_time":337561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"354","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e076782c-127a-4062-a9c7-8090fb383ad4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":336976,"utime":349,"cutime":0,"cstime":0,"stime":277,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e13be4ef-49f0-4795-86d2-169df684bc6d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.66100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/70px-Wikiquote-logo.svg.png","method":"get","status_code":200,"start_time":335434,"end_time":335479,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"36746","content-disposition":"inline;filename*=UTF-8''Wikiquote-logo.svg.webp","content-length":"2964","content-type":"image/webp","date":"Sun, 19 May 2024 22:49:16 GMT","etag":"7878462d0cf1af96f988386bb2273e47","last-modified":"Thu, 08 Jun 2023 05:42:54 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14972","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e1bee547-a43e-43a5-84ff-cf109f77b1a3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.70600000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/70px-Wikisource-logo.svg.png","method":"get","status_code":200,"start_time":335441,"end_time":335525,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"71339","content-disposition":"inline;filename*=UTF-8''Wikisource-logo.svg.webp","content-length":"3108","content-type":"image/webp","date":"Sun, 19 May 2024 13:12:43 GMT","etag":"4a5f64a8591e9e5f16a1d351fa37279e","last-modified":"Sun, 06 Aug 2023 03:18:47 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/29108","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e2dc94c0-33d8-4bbc-936d-9015261af1b4","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.71800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/70px-Wiktionary-logo-v2.svg.png","method":"get","status_code":200,"start_time":335487,"end_time":335537,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"44771","content-length":"2716","content-type":"image/webp","date":"Sun, 19 May 2024 20:35:31 GMT","etag":"ea255af81e6cee85a20ca2653440b36f","last-modified":"Fri, 21 Jun 2019 08:13:17 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/14103","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1030304-d329-4018-8bce-db6500bb4e8d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:42.57700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/62px-Commons-logo.svg.png","method":"get","status_code":200,"start_time":335347,"end_time":335396,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"image/webp,image/apng,image/*,*/*;q=0.8","accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","referer":"https://en.m.wikipedia.org/","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-title":"Main_Page","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"64144","content-disposition":"inline;filename*=UTF-8''Commons-logo.svg.webp","content-length":"1874","content-type":"image/webp","date":"Sun, 19 May 2024 15:12:38 GMT","etag":"89d68591754da30aadbf4fa239146915","last-modified":"Sat, 16 Mar 2024 06:17:28 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/24712","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"TaskSchedulerFo","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f1a210a4-d0d6-4197-ba95-1b3a92040419","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:46.14800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.search.SearchFragment","parent_activity":"org.wikipedia.search.SearchActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f41b3876-853d-4434-80bf-f6d199226050","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.48300000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Tracy_Chapman_3.jpg/320px-Tracy_Chapman_3.jpg","method":"get","status_code":200,"start_time":337252,"end_time":337302,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9389","content-disposition":"inline;filename*=UTF-8''Tracy_Chapman_3.jpg","content-length":"36867","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:25:15 GMT","etag":"1737000a811db04110a0e0c9690bc051","last-modified":"Sat, 17 Jul 2021 22:41:26 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-2","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fb9689cc-8f38-46db-8bac-dc79fdb62092","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.69400000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tracy_Ullman_by_John_Mathew_Smith.jpg/320px-Tracy_Ullman_by_John_Mathew_Smith.jpg","method":"get","status_code":200,"start_time":337250,"end_time":337513,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"2","content-disposition":"inline;filename*=UTF-8''Tracy_Ullman_by_John_Mathew_Smith.jpg","content-length":"34400","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:01:44 GMT","etag":"ac97f11c80670ba39aeac4eecc86f3b1","last-modified":"Thu, 21 Mar 2024 03:12:46 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"fdf0d2ab-0d89-416e-9cc7-c6dc1249d67f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:01:44.74300000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":337217,"end_time":337562,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"1057","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:01:44 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json index 088869f03..a3c650c6f 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/d739b906-a193-4659-801e-654570f5f1b4.json @@ -1 +1 @@ -[{"id":"00431bcf-3a77-4a4b-b39c-4930e7f58c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0718d2c8-d768-4581-a472-959963f259c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.49100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","method":"get","status_code":200,"start_time":363249,"end_time":363310,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15736","content-disposition":"inline;filename*=UTF-8''Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","content-length":"340167","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:39:54 GMT","etag":"99c8e496cef63000e3cd8971a95f8129","last-modified":"Thu, 07 Sep 2023 13:29:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/291","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0951a8b7-2511-454e-a27d-0fb6f2ce6c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":369975,"utime":556,"cutime":0,"cstime":0,"stime":590,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17224cbe-4469-4039-8c30-dcea82eb689c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.19500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2411,"total_pss":146103,"rss":226528,"native_total_heap":76800,"native_free_heap":9584,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21997fdc-d459-4e9f-827a-e8210cb8221e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27ca49cf-69f5-4b33-bfd0-89fd99241d6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b0c4ccc-0245-4b14-aace-8166b5cae08c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.49400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":364266,"end_time":364313,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36493","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"377229a3-993f-4e85-a999-3fb66040514d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.34500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":364117,"end_time":364164,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45507","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fe49ca9-f32e-4149-bba4-1e5d42c84b3a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:07.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2755,"total_pss":145821,"rss":225892,"native_total_heap":76800,"native_free_heap":10075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ffd8b2a-6ae6-4873-afaf-ffc6665b63d8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.30200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358823,"end_time":359121,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"104718","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"43a54e4f-52d9-4b2c-93f9-866508e68526","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.90400000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":649.9512,"y":1236.9141,"touch_down_time":367605,"touch_up_time":367720},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44e18ca8-c7b2-473b-b2d2-8484b480d2c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.95200000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":358721,"end_time":358771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36488","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20452","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4ef2a2d1-0b3e-488a-b5e2-a9c70a4607d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.54100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364315,"end_time":364360,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bbeb3c211a8b5fc824010e5100bf3ec4","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39077","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5548abcf-749a-4cb3-9f7c-9b1551527ec3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5670e3dc-d6db-4670-9144-f70e3ffe5f3f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.69800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":363469,"end_time":363516,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9605","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/24","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bdbef72-9715-4140-ac42-14fb6813f794","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:08.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":360976,"utime":494,"cutime":0,"cstime":0,"stime":519,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e0a7d39-f688-4e08-9d7e-7e85fb059679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.39600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":483.96973,"y":1411.9336,"end_x":578.9575,"end_y":759.96094,"direction":"up","touch_down_time":363015,"touch_up_time":363214},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e4ded0a-eebc-4aae-aadf-98b7224a881a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.20200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":304,"start_time":363968,"end_time":364021,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9361","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62b64a5c-2f8d-4e07-8f80-1753a1f7dba0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367780,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63824","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","content-length":"32816","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:18:30 GMT","etag":"eda7318d44ebe04db6f3236f5cff3d42","last-modified":"Mon, 30 Oct 2023 00:29:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/65","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6460a1a3-dd05-4c32-8fa3-3c88d60e63de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"695a0945-e6b5-4d87-ad56-2b870063ae23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":5677,"total_pss":150951,"rss":231932,"native_total_heap":85504,"native_free_heap":12501,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6bf86568-199b-4e81-b4f6-c4cd1990e00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367775,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9627","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"13011","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/27","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Raisi's_helicopter_leaving_Khudafarin_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a1a27-45f3-4198-806f-226b735e5585","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.01100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG","method":"get","status_code":200,"start_time":367777,"end_time":367830,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63535","content-disposition":"inline;filename*=UTF-8''Gol-Akhoor_waterfall.JPG","content-length":"62729","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:23:21 GMT","etag":"2a7e216843971489011a8a386fc6b51c","last-modified":"Mon, 12 Jun 2023 06:59:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/64","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7080f330-2851-4933-891e-2b6242163afd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"74524ed1-019d-4319-842d-4b691976cde3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.26000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":304,"start_time":364025,"end_time":364079,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4700","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"759530fb-09ea-4fdf-953b-fadb7abb9ae9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.53100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":153.98438,"touch_down_time":370262,"touch_up_time":370348},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7b5474ec-b8df-49e2-9e13-0c6bc4c2fdab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.99000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":563.9612,"y":953.96484,"touch_down_time":363639,"touch_up_time":363807},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ca39c1a-99ab-4559-9159-4f3063831ce7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80659031-e0d5-4d6f-9e3e-6a71220a9348","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.63500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":304,"start_time":364411,"end_time":364454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"17f15e754551c0f96ef3af69e6bc00f6","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"648","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a5a3e69-29d2-4b98-8b12-d59e121d3cba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8c4a677b-b606-49bf-972f-ea077b727e65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.25100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":304,"start_time":364024,"end_time":364070,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"7","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d35ccc9-570a-4116-a329-aa8e2aff9c3b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.27200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":364067,"end_time":364091,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"172000","content-type":"multipart/form-data; boundary=ad24492e-e4c7-4f2a-b995-85a54e1e0993","host":"10.0.2.2:8080","msr-req-id":"5f604642-8ee6-41d5-9b51-dfef9b2b2fce","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f1da93c-87c7-41c2-ac07-00e3d594bd90","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.44400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":364216,"end_time":364263,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39511","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21526","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d82b47-ac5d-4f53-a999-0a054005d9fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.83200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":1032.9675,"y":702.9492,"touch_down_time":364561,"touch_up_time":364648},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ee1db8c-e603-47e4-a5b3-471499fb5485","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.58700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364362,"end_time":364406,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"4722bf973b3f7bfaf91a20ac20db270f","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"5","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a3f3531c-ed3e-412c-8142-35b199e6291e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.15800000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":366977,"utime":539,"cutime":0,"cstime":0,"stime":567,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a69be404-d9fa-43cb-9277-7596c18d4cbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac762fb3-5d61-4076-b71d-5a12cfd8474c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.00200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358774,"end_time":358821,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39071","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"59770","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acc3074a-b2d9-4bad-ac5b-237cedae60e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20290,"java_free_heap":4913,"total_pss":148197,"rss":228728,"native_total_heap":81408,"native_free_heap":11576,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bfdd8dde-ae3b-4aab-b8aa-7e351edd0c31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c67624b0-1549-471d-aaad-526ff22fa1f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":30382,"uptime":363976,"utime":518,"cutime":0,"cstime":0,"stime":543,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c6a5bd5f-8662-4e7c-bb53-fc1952d80392","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.42000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":200,"start_time":359125,"end_time":359239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"642","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-length":"735969","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c8f62cda-de61-4ba6-9174-3715cac5b9ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d160a812-aef6-48e3-b260-f9593e523894","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5105184-9027-4b35-9cdb-759e6363c1d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7a23a36-8a48-4153-a26e-3573fa721942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.21800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":367735,"end_time":368037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"5890","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9b52a7-5e29-4a1d-819a-43d397d9503f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.93500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ed0f5052-aa15-4392-a2ca-923c14cd5859","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22806,"java_free_heap":2470,"total_pss":152163,"rss":232552,"native_total_heap":81408,"native_free_heap":10292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec06ab6-4b8d-4a65-92f1-6adabd6d76c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":6111,"total_pss":153982,"rss":234564,"native_total_heap":85504,"native_free_heap":12040,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0c2c74b-15dc-45b7-a0d1-e0e6b569b23d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.39500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":364167,"end_time":364214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38602","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11208","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file +[{"id":"00431bcf-3a77-4a4b-b39c-4930e7f58c87","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0718d2c8-d768-4581-a472-959963f259c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.49100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg/640px-Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","method":"get","status_code":200,"start_time":363249,"end_time":363310,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"15736","content-disposition":"inline;filename*=UTF-8''Lukmanierpass%2C_Passo_del_Lucomagno._20-09-2022._%28actm.%29_29.jpg","content-length":"340167","content-type":"image/jpeg","date":"Mon, 20 May 2024 04:39:54 GMT","etag":"99c8e496cef63000e3cd8971a95f8129","last-modified":"Thu, 07 Sep 2023 13:29:21 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/291","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"0951a8b7-2511-454e-a27d-0fb6f2ce6c41","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":369975,"utime":556,"cutime":0,"cstime":0,"stime":590,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"17224cbe-4469-4039-8c30-dcea82eb689c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.19500000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2411,"total_pss":146103,"rss":226528,"native_total_heap":76800,"native_free_heap":9584,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"21997fdc-d459-4e9f-827a-e8210cb8221e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"27ca49cf-69f5-4b33-bfd0-89fd99241d6a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"2b0c4ccc-0245-4b14-aace-8166b5cae08c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.49400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":364266,"end_time":364313,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36493","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20455","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"377229a3-993f-4e85-a999-3fb66040514d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.34500000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","method":"get","status_code":304,"start_time":364117,"end_time":364164,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"45507","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/base","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 20:23:44 GMT","etag":"W/\"-37742026003/9b6e3830-1555-11ef-a704-b184b408f6c9\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21414","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3fe49ca9-f32e-4149-bba4-1e5d42c84b3a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:07.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20880,"java_free_heap":2755,"total_pss":145821,"rss":225892,"native_total_heap":76800,"native_free_heap":10075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"3ffd8b2a-6ae6-4873-afaf-ffc6665b63d8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.30200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358823,"end_time":359121,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"0","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"104718","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"miss\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 miss","x-cache-status":"miss","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"43a54e4f-52d9-4b2c-93f9-866508e68526","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.90400000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":649.9512,"y":1236.9141,"touch_down_time":367605,"touch_up_time":367720},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"44e18ca8-c7b2-473b-b2d2-8484b480d2c8","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:05.95200000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","method":"get","status_code":304,"start_time":358721,"end_time":358771,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"36488","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/javascript/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/javascript; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/JavaScript/1.0.0\"","date":"Sun, 19 May 2024 22:53:57 GMT","etag":"W/\"94926621046/56bd9ba0-156d-11ef-ba11-93bf3f1be90b\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/20452","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"4ef2a2d1-0b3e-488a-b5e2-a9c70a4607d3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.54100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364315,"end_time":364360,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"bbeb3c211a8b5fc824010e5100bf3ec4","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39077","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5548abcf-749a-4cb3-9f7c-9b1551527ec3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5670e3dc-d6db-4670-9144-f70e3ffe5f3f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.69800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/800px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":363469,"end_time":363516,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9605","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"43974","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:22:05 GMT","etag":"4faade9a227940eed96ed562b66464bc","last-modified":"Mon, 20 May 2024 06:21:38 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/24","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5bdbef72-9715-4140-ac42-14fb6813f794","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:08.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":360976,"utime":494,"cutime":0,"cstime":0,"stime":519,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e0a7d39-f688-4e08-9d7e-7e85fb059679","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.39600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":483.96973,"y":1411.9336,"end_x":578.9575,"end_y":759.96094,"direction":"up","touch_down_time":363015,"touch_up_time":363214},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"5e4ded0a-eebc-4aae-aadf-98b7224a881a","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.20200000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","method":"get","status_code":304,"start_time":363968,"end_time":364021,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.2.0\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-analytics":"preview=1","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"9361","cache-control":"s-maxage=1209600, max-age=300","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/summary/Xander_Schauffele","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Summary/1.5.0\"","date":"Mon, 20 May 2024 06:26:09 GMT","etag":"W/\"1224744235/5ea8a920-166e-11ef-8786-2926ee30bc2c\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2033","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/17","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"type\":\"standard\",\"title\":\"Xander Schauffele\",\"displaytitle\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\",\"namespace\":{\"id\":0,\"text\":\"\"},\"wikibase_item\":\"Q27306341\",\"titles\":{\"canonical\":\"Xander_Schauffele\",\"normalized\":\"Xander Schauffele\",\"display\":\"\u003cspan class=\\\"mw-page-title-main\\\"\u003eXander Schauffele\u003c/span\u003e\"},\"pageid\":51911552,\"thumbnail\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/320px-Xander_Schauffele_-_2021.jpg\",\"width\":320,\"height\":480},\"originalimage\":{\"source\":\"https://upload.wikimedia.org/wikipedia/commons/2/20/Xander_Schauffele_-_2021.jpg\",\"width\":1200,\"height\":1800},\"lang\":\"en\",\"dir\":\"ltr\",\"revision\":\"1224744235\",\"tid\":\"5c264476-166e-11ef-a5f5-6668f5e36d65\",\"timestamp\":\"2024-05-20T06:01:12Z\",\"description\":\"American professional golfer (born 1993)\",\"description_source\":\"local\",\"content_urls\":{\"desktop\":{\"page\":\"https://en.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=history\",\"edit\":\"https://en.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.wikipedia.org/wiki/Talk:Xander_Schauffele\"},\"mobile\":{\"page\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele\",\"revisions\":\"https://en.m.wikipedia.org/wiki/Special:History/Xander_Schauffele\",\"edit\":\"https://en.m.wikipedia.org/wiki/Xander_Schauffele?action=edit\",\"talk\":\"https://en.m.wikipedia.org/wiki/Talk:Xander_Schauffele\"}},\"extract\":\"Alexander Victor Schauffele is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\",\"extract_html\":\"\u003cp\u003e\u003cb\u003eAlexander Victor Schauffele\u003c/b\u003e is an American professional golfer who plays on the PGA Tour. He won the Tour Championship in 2017, and won the gold medal at the men's individual golf event of the 2020 Summer Olympics. He also won the 2024 PGA Championship to claim his first major championship title.\u003c/p\u003e\"}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"62b64a5c-2f8d-4e07-8f80-1753a1f7dba0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00900000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg/320px-Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367780,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63824","content-disposition":"inline;filename*=UTF-8''Fumio_Kishida_and_Hossein_Amir-Abdollahian_at_the_Kantei_2023_%281%29_%28cropped%29.jpg","content-length":"32816","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:18:30 GMT","etag":"eda7318d44ebe04db6f3236f5cff3d42","last-modified":"Mon, 30 Oct 2023 00:29:02 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/65","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-1","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6460a1a3-dd05-4c32-8fa3-3c88d60e63de","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"695a0945-e6b5-4d87-ad56-2b870063ae23","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.15600000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":5677,"total_pss":150951,"rss":231932,"native_total_heap":85504,"native_free_heap":12501,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6bf86568-199b-4e81-b4f6-c4cd1990e00d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.00800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg/320px-Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","method":"get","status_code":200,"start_time":367775,"end_time":367827,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"9627","content-disposition":"inline;filename*=UTF-8''Raisi%27s_helicopter_leaving_Khudafarin_%28cropped%29.jpg","content-length":"13011","content-type":"image/jpeg","date":"Mon, 20 May 2024 06:21:49 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"Thumbor/7.3.2","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/27","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff","xkey":"File:Raisi's_helicopter_leaving_Khudafarin_(cropped).jpg"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-0","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"6d5a1a27-45f3-4198-806f-226b735e5585","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.01100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Gol-Akhoor_waterfall.JPG/320px-Gol-Akhoor_waterfall.JPG","method":"get","status_code":200,"start_time":367777,"end_time":367830,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"63535","content-disposition":"inline;filename*=UTF-8''Gol-Akhoor_waterfall.JPG","content-length":"62729","content-type":"image/jpeg","date":"Sun, 19 May 2024 15:23:21 GMT","etag":"2a7e216843971489011a8a386fc6b51c","last-modified":"Mon, 12 Jun 2023 06:59:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/64","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"glide-source-thread-3","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7080f330-2851-4933-891e-2b6242163afd","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:09.22600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.readinglist.MoveToReadingListDialog","parent_activity":"org.wikipedia.main.MainActivity","tag":"bottom_sheet_fragment"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"74524ed1-019d-4319-842d-4b691976cde3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.26000000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","method":"get","status_code":304,"start_time":364025,"end_time":364079,"failure_reason":null,"failure_description":null,"request_headers":{"accept":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.1\"","accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"4700","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-language":"en","content-location":"https://en.wikipedia.org/api/rest_v1/page/mobile-html/Xander_Schauffele","content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","content-type":"text/html; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/Mobile-HTML/1.2.2\"","date":"Mon, 20 May 2024 07:43:52 GMT","etag":"W/\"1224744235/5ea74990-166e-11ef-8aad-52721f5efd1d\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/6","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; connect-src app://*.wikipedia.org https://*.wikipedia.org; media-src app://upload.wikimedia.org https://upload.wikimedia.org 'self'; img-src app://*.wikimedia.org https://*.wikimedia.org app://wikimedia.org https://wikimedia.org 'self' data:; object-src 'none'; script-src app://meta.wikimedia.org https://meta.wikimedia.org 'unsafe-inline'; style-src app://meta.wikimedia.org https://meta.wikimedia.org app://*.wikipedia.org https://*.wikipedia.org 'self' 'unsafe-inline'; frame-ancestors 'self'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"759530fb-09ea-4fdf-953b-fadb7abb9ae9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:17.53100000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageButton","target_id":null,"width":147,"height":147,"x":71.98242,"y":153.98438,"touch_down_time":370262,"touch_up_time":370348},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7b5474ec-b8df-49e2-9e13-0c6bc4c2fdab","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:10.99000000Z","type":"gesture_click","gesture_click":{"target":"org.wikipedia.feed.news.NewsItemView","target_id":null,"width":996,"height":788,"x":563.9612,"y":953.96484,"touch_down_time":363639,"touch_up_time":363807},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"7ca39c1a-99ab-4559-9159-4f3063831ce7","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.02400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"80659031-e0d5-4d6f-9e3e-6a71220a9348","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.63500000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":304,"start_time":364411,"end_time":364454,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"17f15e754551c0f96ef3af69e6bc00f6","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"648","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/2","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8a5a3e69-29d2-4b98-8b12-d59e121d3cba","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03400000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8c4a677b-b606-49bf-972f-ea077b727e65","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.25100000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","method":"get","status_code":304,"start_time":364024,"end_time":364070,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"7","cache-control":"s-maxage=1209600, max-age=0","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/page/media-list/Xander_Schauffele/1224744235","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"application/json; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/MediaList/1.1.0\"","date":"Mon, 20 May 2024 09:02:05 GMT","etag":"W/\"1224744235/5c265378-166e-11ef-98bc-08f7912748e4\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"restbase2025","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 miss, cp5023 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":"{\"revision\":\"1224744235\",\"tid\":\"5c265378-166e-11ef-98bc-08f7912748e4\",\"items\":[{\"title\":\"File:Xander_Schauffele_-_2021.jpg\",\"leadImage\":true,\"section_id\":0,\"type\":\"image\",\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg\",\"scale\":\"1.5x\"}]},{\"title\":\"File:Xander_Schauffele_2020_Farmers_Open.jpg\",\"leadImage\":false,\"section_id\":8,\"type\":\"image\",\"caption\":{\"html\":\"Schauffele at the 2020 \u003ca rel=\\\"mw:WikiLink\\\" href=\\\"./Farmers_Insurance_Open\\\" title=\\\"Farmers Insurance Open\\\" id=\\\"mwtA\\\"\u003eFarmers Insurance Open\u003c/a\u003e\",\"text\":\"Schauffele at the 2020 Farmers Insurance Open\"},\"showInGallery\":true,\"srcset\":[{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/640px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/960px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"1.5x\"},{\"src\":\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg\",\"scale\":\"2x\"}]}]}","client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8d35ccc9-570a-4116-a329-aa8e2aff9c3b","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.27200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":364067,"end_time":364091,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"172000","content-type":"multipart/form-data; boundary=ad24492e-e4c7-4f2a-b995-85a54e1e0993","host":"10.0.2.2:8080","msr-req-id":"5f604642-8ee6-41d5-9b51-dfef9b2b2fce","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:02:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"8f1da93c-87c7-41c2-ac07-00e3d594bd90","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.44400000Z","type":"http","http":{"url":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","method":"get","status_code":304,"start_time":364216,"end_time":364263,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"meta.wikimedia.org","if-none-match":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"39511","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://meta.wikimedia.org/api/rest_v1/data/css/mobile/pcs","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:03:40 GMT","etag":"W/\"110717315500/29ed0d60-156b-11ef-a65f-721c1059b7f1\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/21526","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"92d82b47-ac5d-4f53-a999-0a054005d9fa","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.83200000Z","type":"gesture_click","gesture_click":{"target":"androidx.appcompat.widget.AppCompatImageView","target_id":"view_list_card_header_menu","width":126,"height":126,"x":1032.9675,"y":702.9492,"touch_down_time":364561,"touch_up_time":364648},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"9ee1db8c-e603-47e4-a5b3-471499fb5485","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.58700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/960px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":304,"start_time":364362,"end_time":364406,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","if-none-match":"4722bf973b3f7bfaf91a20ac20db270f","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"5","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-type":"image/jpeg","date":"Mon, 20 May 2024 09:02:06 GMT","etag":"4722bf973b3f7bfaf91a20ac20db270f","last-modified":"Mon, 13 Nov 2023 14:56:18 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 miss, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a3f3531c-ed3e-412c-8142-35b199e6291e","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.15800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":366977,"utime":539,"cutime":0,"cstime":0,"stime":567,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"a69be404-d9fa-43cb-9277-7596c18d4cbf","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.91400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ac762fb3-5d61-4076-b71d-5a12cfd8474c","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.00200000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Xander_Schauffele_-_2021.jpg/640px-Xander_Schauffele_-_2021.jpg","method":"get","status_code":200,"start_time":358774,"end_time":358821,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"39071","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_-_2021.jpg","content-length":"59770","content-type":"image/jpeg","date":"Sun, 19 May 2024 22:10:54 GMT","etag":"bbeb3c211a8b5fc824010e5100bf3ec4","last-modified":"Sun, 23 Jul 2023 11:14:39 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"envoy","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/16","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"acc3074a-b2d9-4bad-ac5b-237cedae60e3","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":20290,"java_free_heap":4913,"total_pss":148197,"rss":228728,"native_total_heap":81408,"native_free_heap":11576,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"bfdd8dde-ae3b-4aab-b8aa-7e351edd0c31","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c67624b0-1549-471d-aaad-526ff22fa1f9","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.15700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":30382,"uptime":363976,"utime":518,"cutime":0,"cstime":0,"stime":543,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c6a5bd5f-8662-4e7c-bb53-fc1952d80392","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:06.42000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Xander_Schauffele_2020_Farmers_Open.jpg/1280px-Xander_Schauffele_2020_Farmers_Open.jpg","method":"get","status_code":200,"start_time":359125,"end_time":359239,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","access-control-expose-headers":"Age, Date, Content-Length, Content-Range, X-Content-Duration, X-Cache","age":"642","content-disposition":"inline;filename*=UTF-8''Xander_Schauffele_2020_Farmers_Open.jpg","content-length":"735969","content-type":"image/jpeg","date":"Mon, 20 May 2024 08:51:23 GMT","etag":"17f15e754551c0f96ef3af69e6bc00f6","last-modified":"Fri, 30 Jul 2021 20:10:34 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5031\"","strict-transport-security":"max-age=106384710; includeSubDomains; preload","timing-allow-origin":"*","x-cache":"cp5031 hit, cp5031 hit/1","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-type-options":"nosniff"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"c8f62cda-de61-4ba6-9174-3715cac5b9ad","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d160a812-aef6-48e3-b260-f9593e523894","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:18.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"d5105184-9027-4b35-9cdb-759e6363c1d2","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.94000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.news.NewsFragment","parent_activity":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"e7a23a36-8a48-4153-a26e-3573fa721942","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.21800000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":367735,"end_time":368037,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"5890","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:02:15 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ec9b52a7-5e29-4a1d-819a-43d397d9503f","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:14.93500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"org.wikipedia.feed.news.NewsActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"ed0f5052-aa15-4392-a2ca-923c14cd5859","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:13.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22806,"java_free_heap":2470,"total_pss":152163,"rss":232552,"native_total_heap":81408,"native_free_heap":10292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"eec06ab6-4b8d-4a65-92f1-6adabd6d76c0","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:15.15700000Z","type":"memory_usage","memory_usage":{"java_max_heap":49152,"java_total_heap":22160,"java_free_heap":6111,"total_pss":153982,"rss":234564,"native_total_heap":85504,"native_free_heap":12040,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}},{"id":"f0c2c74b-15dc-45b7-a0d1-e0e6b569b23d","session_id":"b459d1d6-beee-4b74-b6e9-1706ee62cd62","timestamp":"2024-05-20T09:02:11.39500000Z","type":"http","http":{"url":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","method":"get","status_code":304,"start_time":364167,"end_time":364214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","cache-control":"max-age=0","connection":"Keep-Alive","cookie":"WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001; WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.96:77.59:v4","host":"en.wikipedia.org","if-none-match":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 9; Phone; Android SDK built for arm64 Build/PSR1.210301.009.B1) Developer Channel","x-offline-lang":"en","x-offline-save":"save","x-offline-title":"Xander_Schauffele","x-wmf-uuid":"2754a8d3-20a0-495b-b10e-c15a3509c693"},"response_headers":{"access-control-allow-headers":"accept, content-type, content-length, cache-control, accept-language, api-user-agent, if-match, if-modified-since, if-none-match, dnt, accept-encoding","access-control-allow-methods":"GET,HEAD","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"38602","cache-control":"public, max-age=86400, s-maxage=86400","content-encoding":"gzip","content-location":"https://en.wikipedia.org/api/rest_v1/data/css/mobile/site","content-security-policy":"default-src 'none'; frame-ancestors 'none'","content-type":"text/css; charset=utf-8; profile=\"https://www.mediawiki.org/wiki/Specs/CSS/2.0.0\"","date":"Sun, 19 May 2024 22:18:48 GMT","etag":"W/\"-72688450754/a2f2df70-1569-11ef-a086-265bc8db7358\"","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","referrer-policy":"origin-when-cross-origin","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"hit-front\", host;desc=\"cp5023\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","strict-transport-security":"max-age=106384710; includeSubDomains; preload","vary":"Accept-Encoding","x-cache":"cp5023 hit, cp5023 hit/11208","x-cache-status":"hit-front","x-client-ip":"122.171.23.147","x-content-security-policy":"default-src 'none'; frame-ancestors 'none'","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-webkit-csp":"default-src 'none'; frame-ancestors 'none'","x-xss-protection":"1; mode=block"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://en.wikipedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":1794,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"28","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"c4d51b21-f7a9-4f50-8683-280f1a6d6477","network_type":"cellular","network_generation":"unknown","network_provider_name":"Android"}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json index 80bd0a42f..88a256b57 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/dc0da1f0-6091-45ae-a71e-b6a48195cdc7.json @@ -1 +1 @@ -[{"id":"032b085d-46f3-4b11-8fab-ecbc661251b3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"04bd5edd-5c81-491a-bfed-f146faee8810","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.43600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":401.96777,"y":1969.9219,"end_x":401.96777,"end_y":1583.1761,"direction":"up","touch_down_time":192751,"touch_up_time":192919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0bd1abee-e440-46ea-b44c-c2520e1bf578","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18276c70-949d-4538-a4e9-1c6cf4b7d63b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":201276,"end_time":201302,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"261d641e-c831-4a4e-89bb-f5517c702e28","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.15700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193589,"end_time":193641,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aaee5ff-55ce-4c81-b134-5828f3570728","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:00.46000000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":181945,"utime":280,"cutime":0,"cstime":0,"stime":131,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3365b390-8bce-4d39-af99-2c0ddf8d845d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193645,"end_time":195111,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36518dd7-85fd-46a4-a59d-a8c1a409821c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:21.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30739,"java_free_heap":3550,"total_pss":107604,"rss":172304,"native_total_heap":52276,"native_free_heap":21451,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3d56a234-d87d-40c9-8470-4d8aa7915ffb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"41443545-4502-4127-a24f-8a964f5403a7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28207,"java_free_heap":1996,"total_pss":104512,"rss":169580,"native_total_heap":49399,"native_free_heap":23305,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"418141a2-9896-4be8-8627-68879b8880df","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4392b0d7-a19c-43b0-b75b-66ed37e6f071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1394,"total_pss":108463,"rss":172300,"native_total_heap":51028,"native_free_heap":19627,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4418a731-f9e2-4dce-9dc6-554468f84394","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":184939,"utime":282,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"46d03a38-1f56-4457-aefb-23a9e4aa1614","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"505951ad-adf6-40c9-90fb-9a2a7d8330ce","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":178939,"utime":268,"cutime":0,"cstime":0,"stime":128,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"516dcaae-4eb1-4570-ab3a-a46bf1574692","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5634cdb1-a688-41ae-a31e-a40aecfbbecd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":201270,"utime":322,"cutime":0,"cstime":0,"stime":144,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f9503c2-cad4-4eac-b72f-efd98efaf531","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":193939,"utime":309,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6421714b-b5f1-4c74-8187-114cdafb9fc2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"646d0813-8594-4405-b866-f9ffdb5196d9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":190939,"utime":290,"cutime":0,"cstime":0,"stime":135,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"66b755c1-a4a5-4b00-b6ca-c7885777dfd7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:59.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1898,"total_pss":110319,"rss":174372,"native_total_heap":50436,"native_free_heap":20219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6aa77de6-5ce9-4f54-a69b-6884426dc099","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:05.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1500,"total_pss":108407,"rss":172300,"native_total_heap":50737,"native_free_heap":19918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"723a0918-d50b-456e-b250-98a6af4d576b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:17.48800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":188961,"end_time":198973,"failure_reason":"java.net.SocketException","failure_description":"recvfrom failed: EBADF (Bad file number)","request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"377696","content-type":"multipart/form-data; boundary=17358cbb-c31c-47a1-becd-f825804e67e9","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"75ac9bbf-4595-406b-94e9-d489bc71204d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.75100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":178905,"end_time":179236,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"698","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:58 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"78e98aa5-902d-48c7-8215-b70782ce2688","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7c9234b0-a0b3-4c8f-9d7f-75c38a5a751d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e9d31ff-b68f-4575-8ed6-e96b5a0452f7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:06.45500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":187940,"utime":284,"cutime":0,"cstime":0,"stime":133,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"872748c1-6c85-4dbd-81da-8d00de7446c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":3666,"total_pss":110125,"rss":174120,"native_total_heap":49922,"native_free_heap":21757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89d7be22-b91b-4991-987e-847b03a35406","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.83300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":201275,"on_next_draw_uptime":201316,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f8401f5-122f-423e-bcc3-fd893f7e4802","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":201282,"end_time":201303,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"355139","content-type":"multipart/form-data; boundary=844339aa-0812-4125-973a-59486f762140","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:12:20 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"90927d5a-0ac7-4f13-92b5-f632b676985a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.16000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193352,"end_time":193644,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a01dcb00-71fd-4684-a360-3f05b008421d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":201276,"end_time":201296,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a1083b98-2343-42b3-9fee-28e1bcd24559","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a25a2959-3c97-48f6-af44-c97cacd425b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a60407cf-872c-44a3-bda5-82cce70a9542","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.52300000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":178931,"on_next_draw_uptime":179008,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b09d6fb9-ed37-473e-9dbb-aa2ce91ed56f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46f582b-5327-4855-a0ff-92fdc6d9672c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4f6fbfb-03c4-4c74-830f-cdd157d0d0c6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9d0011b-962d-4544-a529-c71eeec48ae9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb3d7bef-812f-4221-a3dc-46aa2ade7811","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:01.45800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1797,"total_pss":110382,"rss":174400,"native_total_heap":50695,"native_free_heap":19960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be035dc2-32fc-4559-bac1-ebf51d47eede","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":2556,"total_pss":111294,"rss":175264,"native_total_heap":50689,"native_free_heap":20990,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6735d23-f3e7-4b3d-bc90-e0ccbead83cb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d0e25e9a-475f-48df-a25f-eb67f835a670","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":31347,"java_free_heap":3860,"total_pss":110954,"rss":175216,"native_total_heap":51135,"native_free_heap":21568,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d4bba0ef-fc95-4b61-9ab8-c45f29523313","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1564,"total_pss":108383,"rss":172300,"native_total_heap":50911,"native_free_heap":19744,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"de113023-ac9e-4eaa-b0d7-5d1a85f37015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.36500000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":581.9568,"y":1528.9307,"end_x":210.97046,"end_y":1528.9307,"direction":"left","touch_down_time":203718,"touch_up_time":203849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e762c0ff-96ed-48b8-beb8-433e02ba78ec","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8bba1ff-e38a-4043-aefc-e957b5a1ca99","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8f9fd11-6130-43b9-b9cd-739dd30822c0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30220,"java_free_heap":0,"total_pss":114214,"rss":176812,"native_total_heap":50108,"native_free_heap":20547,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"eefe1601-415f-4b49-bd11-956e7ca72c1c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4d069d3-0678-4c91-9b40-b2cde0496645","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193646,"end_time":195112,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"032b085d-46f3-4b11-8fab-ecbc661251b3","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"04bd5edd-5c81-491a-bfed-f146faee8810","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.43600000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":401.96777,"y":1969.9219,"end_x":401.96777,"end_y":1583.1761,"direction":"up","touch_down_time":192751,"touch_up_time":192919},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"0bd1abee-e440-46ea-b44c-c2520e1bf578","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"18276c70-949d-4538-a4e9-1c6cf4b7d63b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":201276,"end_time":201302,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"261d641e-c831-4a4e-89bb-f5517c702e28","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.15700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193589,"end_time":193641,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"2aaee5ff-55ce-4c81-b134-5828f3570728","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:00.46000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":181945,"utime":280,"cutime":0,"cstime":0,"stime":131,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3365b390-8bce-4d39-af99-2c0ddf8d845d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62700000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Auribeau_by_JM_Rosier.JPG/320px-Auribeau_by_JM_Rosier.JPG","method":"get","status_code":null,"start_time":193645,"end_time":195111,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"36518dd7-85fd-46a4-a59d-a8c1a409821c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:21.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30739,"java_free_heap":3550,"total_pss":107604,"rss":172304,"native_total_heap":52276,"native_free_heap":21451,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"3d56a234-d87d-40c9-8470-4d8aa7915ffb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"41443545-4502-4127-a24f-8a964f5403a7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":28207,"java_free_heap":1996,"total_pss":104512,"rss":169580,"native_total_heap":49399,"native_free_heap":23305,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"418141a2-9896-4be8-8627-68879b8880df","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4392b0d7-a19c-43b0-b75b-66ed37e6f071","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1394,"total_pss":108463,"rss":172300,"native_total_heap":51028,"native_free_heap":19627,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"4418a731-f9e2-4dce-9dc6-554468f84394","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":184939,"utime":282,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"46d03a38-1f56-4457-aefb-23a9e4aa1614","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"505951ad-adf6-40c9-90fb-9a2a7d8330ce","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":178939,"utime":268,"cutime":0,"cstime":0,"stime":128,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"516dcaae-4eb1-4570-ab3a-a46bf1574692","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5634cdb1-a688-41ae-a31e-a40aecfbbecd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":201270,"utime":322,"cutime":0,"cstime":0,"stime":144,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5f9503c2-cad4-4eac-b72f-efd98efaf531","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.45500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":193939,"utime":309,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6421714b-b5f1-4c74-8187-114cdafb9fc2","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"646d0813-8594-4405-b866-f9ffdb5196d9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":190939,"utime":290,"cutime":0,"cstime":0,"stime":135,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"66b755c1-a4a5-4b00-b6ca-c7885777dfd7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:59.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1898,"total_pss":110319,"rss":174372,"native_total_heap":50436,"native_free_heap":20219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6aa77de6-5ce9-4f54-a69b-6884426dc099","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:05.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1500,"total_pss":108407,"rss":172300,"native_total_heap":50737,"native_free_heap":19918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"723a0918-d50b-456e-b250-98a6af4d576b","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:17.48800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":188961,"end_time":198973,"failure_reason":"java.net.SocketException","failure_description":"recvfrom failed: EBADF (Bad file number)","request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"377696","content-type":"multipart/form-data; boundary=17358cbb-c31c-47a1-becd-f825804e67e9","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"75ac9bbf-4595-406b-94e9-d489bc71204d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.75100000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":178905,"end_time":179236,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"698","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:58 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"78e98aa5-902d-48c7-8215-b70782ce2688","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.48700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7c9234b0-a0b3-4c8f-9d7f-75c38a5a751d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62600000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7e9d31ff-b68f-4575-8ed6-e96b5a0452f7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:06.45500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":187940,"utime":284,"cutime":0,"cstime":0,"stime":133,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"872748c1-6c85-4dbd-81da-8d00de7446c8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:09.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":3666,"total_pss":110125,"rss":174120,"native_total_heap":49922,"native_free_heap":21757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"89d7be22-b91b-4991-987e-847b03a35406","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.83300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":201275,"on_next_draw_uptime":201316,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f8401f5-122f-423e-bcc3-fd893f7e4802","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":201282,"end_time":201303,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"355139","content-type":"multipart/form-data; boundary=844339aa-0812-4125-973a-59486f762140","host":"10.0.2.2:8080","msr-req-id":"3906b2c4-bf14-45fc-bfe8-6f1a555e638b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:12:20 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"90927d5a-0ac7-4f13-92b5-f632b676985a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:12.16000000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193352,"end_time":193644,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a01dcb00-71fd-4684-a360-3f05b008421d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.81100000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":201276,"end_time":201296,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a1083b98-2343-42b3-9fee-28e1bcd24559","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48800000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.history.HistoryFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f2"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a25a2959-3c97-48f6-af44-c97cacd425b8","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a60407cf-872c-44a3-bda5-82cce70a9542","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.52300000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":178931,"on_next_draw_uptime":179008,"launched_activity":"org.wikipedia.main.MainActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b09d6fb9-ed37-473e-9dbb-aa2ce91ed56f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b46f582b-5327-4855-a0ff-92fdc6d9672c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b4f6fbfb-03c4-4c74-830f-cdd157d0d0c6","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:07.48900000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"detached","class_name":"org.wikipedia.suggestededits.SuggestedEditsTasksFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f3"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"b9d0011b-962d-4544-a529-c71eeec48ae9","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.78400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"bb3d7bef-812f-4221-a3dc-46aa2ade7811","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:01.45800000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1797,"total_pss":110382,"rss":174400,"native_total_heap":50695,"native_free_heap":19960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"be035dc2-32fc-4559-bac1-ebf51d47eede","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:11.45600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":29008,"java_free_heap":2556,"total_pss":111294,"rss":175264,"native_total_heap":50689,"native_free_heap":20990,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"c6735d23-f3e7-4b3d-bc90-e0ccbead83cb","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:19.79500000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"resumed","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d0e25e9a-475f-48df-a25f-eb67f835a670","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":31347,"java_free_heap":3860,"total_pss":110954,"rss":175216,"native_total_heap":51135,"native_free_heap":21568,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d4bba0ef-fc95-4b61-9ab8-c45f29523313","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:03.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":26940,"java_free_heap":1564,"total_pss":108383,"rss":172300,"native_total_heap":50911,"native_free_heap":19744,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"de113023-ac9e-4eaa-b0d7-5d1a85f37015","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.36500000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl","target_id":null,"x":581.9568,"y":1528.9307,"end_x":210.97046,"end_y":1528.9307,"direction":"left","touch_down_time":203718,"touch_up_time":203849},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e762c0ff-96ed-48b8-beb8-433e02ba78ec","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:22.38700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"paused","class_name":"org.wikipedia.main.MainFragment","parent_activity":"org.wikipedia.main.MainActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8bba1ff-e38a-4043-aefc-e957b5a1ca99","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e8f9fd11-6130-43b9-b9cd-739dd30822c0","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.45500000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":30220,"java_free_heap":0,"total_pss":114214,"rss":176812,"native_total_heap":50108,"native_free_heap":20547,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"eefe1601-415f-4b49-bd11-956e7ca72c1c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:57.44700000Z","type":"lifecycle_fragment","lifecycle_fragment":{"type":"attached","class_name":"org.wikipedia.feed.FeedFragment","parent_activity":"org.wikipedia.main.MainActivity","tag":"f0"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"f4d069d3-0678-4c91-9b40-b2cde0496645","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:12:13.62800000Z","type":"http","http":{"url":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Seal_of_the_United_States_Supreme_Court.svg/320px-Seal_of_the_United_States_Supreme_Court.svg.png","method":"get","status_code":null,"start_time":193646,"end_time":195112,"failure_reason":"okhttp3.internal.http2.StreamResetException","failure_description":"stream was reset: CANCEL","request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"upload.wikimedia.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://upload.wikimedia.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json index c3fe941bb..541095e25 100644 --- a/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json +++ b/self-host/session-data/org.wikipedia.dev/2.7.50488-dev-2024-05-20/fcc3dc9c-d2a8-466e-bb07-977fcc5149d7.json @@ -1 +1 @@ -[{"id":"07dcd62f-40cd-41b9-bd9d-84283e60c721","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":134610,"utime":78,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"13d5a1d4-e035-40a3-bbf3-ecc790dfd7cd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:10.12200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":131606,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25809c78-6509-43e9-87ea-3a337c625f37","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3543,"total_pss":90977,"rss":154332,"native_total_heap":45329,"native_free_heap":13038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39721749-2554-4739-a6e1-58300def847a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3884,"total_pss":92189,"rss":155264,"native_total_heap":45289,"native_free_heap":13078,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"459b3b7a-35e5-43f9-a159-1921d519932a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3023,"total_pss":91169,"rss":154904,"native_total_heap":45152,"native_free_heap":13215,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"501ea7d3-d617-40e2-85b6-b2ade9bab48e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:09.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3813,"total_pss":90845,"rss":153904,"native_total_heap":45297,"native_free_heap":13070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"55d803ca-2e4c-45af-8a68-08730a4548af","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:17.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3282,"total_pss":91049,"rss":154640,"native_total_heap":45114,"native_free_heap":13253,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d690d7e-ad94-4676-8784-13cc3b40b61d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.73000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":136883,"end_time":137214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"345","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:16 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c756271-1ba8-431d-9f63-6d5bd9f52093","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.29000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":124734,"end_time":124775,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"478384","content-type":"multipart/form-data; boundary=7c8b5250-1a16-4ed9-ba91-2a079d47749c","host":"10.0.2.2:8080","msr-req-id":"c7340029-e1f6-46eb-8dbd-c37da561fd7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6f58a219-526c-4213-afdc-e8971624f165","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:22.12500000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":143609,"utime":82,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7ccc67c3-5c9b-4e45-a485-5bf1b64f6aba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:04.12100000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":125606,"utime":76,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8bda4da4-68a0-4a4a-88dc-19d51eabcbf7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:05.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3972,"total_pss":92165,"rss":155264,"native_total_heap":45257,"native_free_heap":13110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f980a68-578e-4dce-8aef-f3b5fea8bc3f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":140610,"utime":81,"cutime":0,"cstime":0,"stime":42,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9b734be7-1cff-47a1-8f4c-2859a723ca70","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:21.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3123,"total_pss":91121,"rss":154904,"native_total_heap":45146,"native_free_heap":13221,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a708acb4-175f-4bab-b550-6eb8e5d2de7d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:11.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3713,"total_pss":90897,"rss":153904,"native_total_heap":45301,"native_free_heap":13066,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ac4f5652-7760-44ac-a286-6b14edd39f31","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3625,"total_pss":90949,"rss":154068,"native_total_heap":45321,"native_free_heap":13046,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1730f1e-fadc-4621-8117-57de6194920c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:16.12600000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":137611,"utime":81,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e6a29790-dd80-4e12-921d-186a2757d841","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3184,"total_pss":91097,"rss":154904,"native_total_heap":45138,"native_free_heap":13229,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc0a86ca-76b2-4adf-b6b7-8494d5284f8d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"cpu_usage","cpu_usage":{"num_cores":4,"clock_speed":100,"start_time":10448,"uptime":128606,"utime":77,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"07dcd62f-40cd-41b9-bd9d-84283e60c721","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":134610,"utime":78,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"13d5a1d4-e035-40a3-bbf3-ecc790dfd7cd","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:10.12200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":131606,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"25809c78-6509-43e9-87ea-3a337c625f37","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3543,"total_pss":90977,"rss":154332,"native_total_heap":45329,"native_free_heap":13038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"39721749-2554-4739-a6e1-58300def847a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3884,"total_pss":92189,"rss":155264,"native_total_heap":45289,"native_free_heap":13078,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"459b3b7a-35e5-43f9-a159-1921d519932a","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:23.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3023,"total_pss":91169,"rss":154904,"native_total_heap":45152,"native_free_heap":13215,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"501ea7d3-d617-40e2-85b6-b2ade9bab48e","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:09.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3813,"total_pss":90845,"rss":153904,"native_total_heap":45297,"native_free_heap":13070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"55d803ca-2e4c-45af-8a68-08730a4548af","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:17.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3282,"total_pss":91049,"rss":154640,"native_total_heap":45114,"native_free_heap":13253,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"5d690d7e-ad94-4676-8784-13cc3b40b61d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:15.73000000Z","type":"http","http":{"url":"https://intake-analytics.wikimedia.beta.wmflabs.org/v1/events","method":"post","status_code":201,"start_time":136883,"end_time":137214,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","accept-language":"en","connection":"Keep-Alive","content-length":"345","content-type":"application/json; charset=utf-8","cookie":"WMF-Last-Access-Global=20-May-2024; GeoIP=IN:KA:Bengaluru:12.98:77.58:v4; WMF-Last-Access=20-May-2024; NetworkProbeLimit=0.001","host":"intake-analytics.wikimedia.beta.wmflabs.org","user-agent":"WikipediaApp/2.7.50488-dev-2024-05-20 (Android 5.0.2; Phone; Android SDK built for arm64 Build/LSY66K) Developer Channel","x-wmf-uuid":"146f3699-1413-4cfb-9d62-f6a07328ac4c"},"response_headers":{"access-control-allow-headers":"accept, x-requested-with, content-type","access-control-allow-methods":"post","access-control-allow-origin":"*","access-control-expose-headers":"etag","age":"0","content-length":"0","date":"Mon, 20 May 2024 09:11:16 GMT","nel":"{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}","report-to":"{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error\u0026schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }","server":"ATS/9.1.4","server-timing":"cache;desc=\"pass\", host;desc=\"deployment-cache-text08\"","set-cookie":"NetworkProbeLimit=0.001;Path=/;Secure;Max-Age=3600","x-cache":"deployment-cache-text08 miss, deployment-cache-text08 pass","x-cache-status":"pass","x-client-ip":"122.171.23.147"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://intake-analytics.wikimedia.beta.wmflabs.org/...","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6c756271-1ba8-431d-9f63-6d5bd9f52093","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:03.29000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":124734,"end_time":124775,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer test-api-key","connection":"Keep-Alive","content-length":"478384","content-type":"multipart/form-data; boundary=7c8b5250-1a16-4ed9-ba91-2a079d47749c","host":"10.0.2.2:8080","msr-req-id":"c7340029-e1f6-46eb-8dbd-c37da561fd7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 20 May 2024 09:11:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"6f58a219-526c-4213-afdc-e8971624f165","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:22.12500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":143609,"utime":82,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"7ccc67c3-5c9b-4e45-a485-5bf1b64f6aba","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:04.12100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":125606,"utime":76,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8bda4da4-68a0-4a4a-88dc-19d51eabcbf7","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:05.12300000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3972,"total_pss":92165,"rss":155264,"native_total_heap":45257,"native_free_heap":13110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"8f980a68-578e-4dce-8aef-f3b5fea8bc3f","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":140610,"utime":81,"cutime":0,"cstime":0,"stime":42,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"9b734be7-1cff-47a1-8f4c-2859a723ca70","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:21.12200000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3123,"total_pss":91121,"rss":154904,"native_total_heap":45146,"native_free_heap":13221,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"a708acb4-175f-4bab-b550-6eb8e5d2de7d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:11.12400000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3713,"total_pss":90897,"rss":153904,"native_total_heap":45301,"native_free_heap":13066,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"ac4f5652-7760-44ac-a286-6b14edd39f31","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:13.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3625,"total_pss":90949,"rss":154068,"native_total_heap":45321,"native_free_heap":13046,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e1730f1e-fadc-4621-8117-57de6194920c","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:16.12600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":137611,"utime":81,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"e6a29790-dd80-4e12-921d-186a2757d841","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:19.12600000Z","type":"memory_usage","memory_usage":{"java_max_heap":393216,"java_total_heap":23983,"java_free_heap":3184,"total_pss":91097,"rss":154904,"native_total_heap":45138,"native_free_heap":13229,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"fc0a86ca-76b2-4adf-b6b7-8494d5284f8d","session_id":"efb063c2-5471-4665-8d19-ec0e1098b20f","timestamp":"2024-05-20T09:11:07.12200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":4,"clock_speed":100,"start_time":10448,"uptime":128606,"utime":77,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"generic_arm64","device_model":"Android SDK built for arm64","device_manufacturer":"unknown","device_type":"phone","device_is_foldable":false,"device_is_physical":false,"device_density_dpi":420,"device_width_px":1080,"device_height_px":2274,"device_density":2.625,"device_locale":"en-US","os_name":"android","os_version":"21","platform":"android","app_version":"2.7.50488-dev-2024-05-20","app_build":"50488","app_unique_id":"org.wikipedia.dev","measure_sdk_version":"0.1.0","installation_id":"1c44df59-15cc-4414-9189-b03388d39372","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json b/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json index cce2acba8..6cbdbdd32 100644 --- a/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json +++ b/self-host/session-data/sh.measure.sample/1.0/07f7d909-727c-46f2-9d83-1a0d8a0b8c2b.json @@ -1 +1 @@ -[{"id":"22210bce-39aa-4016-82e5-8bd0c09ba571","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.63600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22cb2555-6832-4d5f-bbff-2ca8101e0df4","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:47:01.84300000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14715"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41f3b6a6-82d3-4955-9bd9-98318bbd4457","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.78600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5695510,"process_start_requested_uptime":5695447,"content_provider_attach_uptime":5695526,"on_next_draw_uptime":5695744,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4541be1d-4057-478c-8220-d2a25eb38d62","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184896,"total_pss":30561,"rss":140080,"native_total_heap":22268,"native_free_heap":1090,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8ba47a40-2864-42f5-9992-27f8026beb4b","session_id":"8ffa23ce-13b7-4b31-b45a-a23bc82f53ca","timestamp":"2024-04-29T11:47:04.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2c2e6d2-1a85-4901-bd54-2d224755297d","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2e50c40-f135-471e-b341-930e3ab37600","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5695821,"end_time":5695850,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"14765","content-type":"multipart/form-data; boundary=f0544bac-8108-4896-a327-c31ad7afddbc","host":"10.0.2.2:8080","msr-req-id":"495fae08-a7e7-4555-b0ce-d078179f036a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:47:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1c79a59-e7c8-43ab-8cf5-f09382f3d041","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.61100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":569545,"uptime":5695569,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"22210bce-39aa-4016-82e5-8bd0c09ba571","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.63600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22cb2555-6832-4d5f-bbff-2ca8101e0df4","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:47:01.84300000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14715"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41f3b6a6-82d3-4955-9bd9-98318bbd4457","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.78600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5695510,"process_start_requested_uptime":5695447,"content_provider_attach_uptime":5695526,"on_next_draw_uptime":5695744,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4541be1d-4057-478c-8220-d2a25eb38d62","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184896,"total_pss":30561,"rss":140080,"native_total_heap":22268,"native_free_heap":1090,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8ba47a40-2864-42f5-9992-27f8026beb4b","session_id":"8ffa23ce-13b7-4b31-b45a-a23bc82f53ca","timestamp":"2024-04-29T11:47:04.71000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2c2e6d2-1a85-4901-bd54-2d224755297d","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.62400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2e50c40-f135-471e-b341-930e3ab37600","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5695821,"end_time":5695850,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"14765","content-type":"multipart/form-data; boundary=f0544bac-8108-4896-a327-c31ad7afddbc","host":"10.0.2.2:8080","msr-req-id":"495fae08-a7e7-4555-b0ce-d078179f036a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:47:04 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1c79a59-e7c8-43ab-8cf5-f09382f3d041","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.61100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":569545,"uptime":5695569,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json b/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json index b12a86343..ab1ae1169 100644 --- a/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json +++ b/self-host/session-data/sh.measure.sample/1.0/08e7e57e-8f1b-4659-9bea-8f1563329ca7.json @@ -1 +1 @@ -[{"id":"05832c7e-5ba0-4cbc-9f0e-4a1473b10e4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.39000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542431,"end_time":542442,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0905248d-35ea-414b-b22f-a47e92641ed2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4264,"total_pss":35964,"rss":109128,"native_total_heap":25016,"native_free_heap":2840,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1165042d-38e1-47c6-a522-241af0136ccd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:24.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":573229,"utime":73,"cutime":0,"cstime":0,"stime":81,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16a36143-1641-4cba-8ebf-555bb61587b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2144,"total_pss":37589,"rss":110888,"native_total_heap":25016,"native_free_heap":2450,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22419ce1-aec3-4a36-895e-b68a850098f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4336,"total_pss":36503,"rss":108920,"native_total_heap":25016,"native_free_heap":2876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227fa2b5-c5be-4167-a4ed-5232a93609e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":544,"total_pss":38604,"rss":110728,"native_total_heap":25016,"native_free_heap":2195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c8828a-7f11-41c4-ad09-59d27b5b89e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552398,"end_time":552413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4344e037-4559-43d9-8910-50a0c3d130d0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.39200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572430,"end_time":572444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"451609b7-7637-4fbc-9b05-9b4851092d07","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582399,"end_time":582420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47fa3f2e-2b72-4b3f-95a9-fe1922620518","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:06.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":555227,"utime":60,"cutime":0,"cstime":0,"stime":69,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5093c557-490c-4264-9e23-03bf95e3d824","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":558227,"utime":61,"cutime":0,"cstime":0,"stime":71,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55199df2-ea13-4ebd-9d28-551f8e2a2b50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1108,"total_pss":35179,"rss":104748,"native_total_heap":25016,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"572a50c6-1664-4fc4-8709-d9c2deefb7ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:31.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1196,"total_pss":35131,"rss":104748,"native_total_heap":25016,"native_free_heap":2294,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5825b610-6c6b-466b-a2d0-e59178a2151c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552420,"end_time":552433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c48fd7-1538-43af-9e7b-f925b6febccf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":668,"total_pss":38429,"rss":110664,"native_total_heap":25016,"native_free_heap":2196,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a82f197-5e64-4be3-a45b-2d43cf8f104f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2356,"total_pss":37464,"rss":110888,"native_total_heap":25016,"native_free_heap":2535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d1bf543-1bcb-4ffd-9c64-babc190b7b4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3144,"total_pss":36681,"rss":109920,"native_total_heap":25016,"native_free_heap":2636,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6302fee3-5c2b-45fd-bfc8-c57be4f0e101","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":579228,"utime":77,"cutime":0,"cstime":0,"stime":86,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b6744e-7ac6-48c8-88ef-b1df3f3a2126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2392,"total_pss":37436,"rss":110888,"native_total_heap":25016,"native_free_heap":2551,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b87bb3f-7694-4a9a-93a9-b695a6c53a06","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3444,"total_pss":36682,"rss":109716,"native_total_heap":25016,"native_free_heap":2757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"748da28a-e73d-4b13-a876-cfdc3b50511e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1408,"total_pss":34523,"rss":103736,"native_total_heap":25016,"native_free_heap":2383,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7642a293-5b60-417f-b97b-65c0b324d4da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":552228,"utime":57,"cutime":0,"cstime":0,"stime":64,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78120433-29f9-40c1-bce7-c34d63c761c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4176,"total_pss":36016,"rss":109128,"native_total_heap":25016,"native_free_heap":2808,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"798c872c-dbbe-41f6-b14e-4dbabc98060b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1268,"total_pss":35079,"rss":104748,"native_total_heap":25016,"native_free_heap":2330,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95507c-a032-435d-8c91-9f88a670ad96","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":540227,"utime":47,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8446df5b-0efd-4305-ae2b-53a1aa4526e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2252,"total_pss":37513,"rss":110888,"native_total_heap":25016,"native_free_heap":2498,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d36c09a-5663-4186-a133-368713c85c56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":564228,"utime":66,"cutime":0,"cstime":0,"stime":74,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c537a5b-79f2-4559-880b-947c6fea5c6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4388,"total_pss":36553,"rss":108920,"native_total_heap":25016,"native_free_heap":2892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d0dd65c-7272-41b9-8b5a-c5de40988f36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":549227,"utime":56,"cutime":0,"cstime":0,"stime":63,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a05156bf-2a56-4e0e-bf4b-e89bda565de1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3232,"total_pss":36635,"rss":109920,"native_total_heap":25016,"native_free_heap":2672,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a18b2746-fa23-49f5-84c7-55272e15818e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572398,"end_time":572417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae7911ff-c672-4670-ac7c-af70d6681b23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.38400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582429,"end_time":582436,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b38158d6-6a0e-4eed-a87a-f40818f19fdf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562398,"end_time":562415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3870db9-70e1-444b-a634-9fe099ffd6c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":570227,"utime":70,"cutime":0,"cstime":0,"stime":77,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3f71f83-1699-4b21-9e75-7649b7e9cf17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3356,"total_pss":36728,"rss":109716,"native_total_heap":25016,"native_free_heap":2720,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b80e9bb6-75bb-4d68-a6e2-c6a6a4d2c8c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2180,"total_pss":37565,"rss":110888,"native_total_heap":25016,"native_free_heap":2466,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc11cefa-de53-4d6e-b947-dd5a6dd00fda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4476,"total_pss":36501,"rss":108752,"native_total_heap":25016,"native_free_heap":2924,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3eccd8-51ac-48f5-b73f-a20a8affbc40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3252,"total_pss":36698,"rss":109716,"native_total_heap":25016,"native_free_heap":2688,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd4318dc-4b03-44e0-bb82-968be8a497ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":576228,"utime":74,"cutime":0,"cstime":0,"stime":82,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c5652824-1414-4bd2-a231-a4f8e74d6606","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542403,"end_time":542422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d214fb92-053b-45fe-8c7d-8ebf2bea87ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":567228,"utime":69,"cutime":0,"cstime":0,"stime":76,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b20f95-3e0e-499e-9045-6ea66a6c570a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:47.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":756,"total_pss":37572,"rss":109640,"native_total_heap":25016,"native_free_heap":2208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2da7036-f9f2-4ecf-b206-e939a6e56bf8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":546228,"utime":53,"cutime":0,"cstime":0,"stime":61,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4edb639-67cb-451c-a2d6-02579c62996f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":537227,"utime":46,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e94ed82f-5b95-4a46-a512-cadfda1ac169","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1320,"total_pss":34669,"rss":104076,"native_total_heap":25016,"native_free_heap":2342,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f55cf5-6c43-400e-844e-5330e9661e17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":561228,"utime":64,"cutime":0,"cstime":0,"stime":72,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f41b00ef-21a1-46ac-b6c6-2991bdd8f0e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":582228,"utime":78,"cutime":0,"cstime":0,"stime":88,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f661ddc6-f150-4536-a9c5-4720c950b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562427,"end_time":562437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73a7648-f56b-4dac-a446-3438f004a390","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":543228,"utime":52,"cutime":0,"cstime":0,"stime":59,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73f0206-c718-4320-8904-30aced2bd682","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":596,"total_pss":38680,"rss":110728,"native_total_heap":25016,"native_free_heap":2191,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"05832c7e-5ba0-4cbc-9f0e-4a1473b10e4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.39000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542431,"end_time":542442,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0905248d-35ea-414b-b22f-a47e92641ed2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4264,"total_pss":35964,"rss":109128,"native_total_heap":25016,"native_free_heap":2840,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1165042d-38e1-47c6-a522-241af0136ccd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:24.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":573229,"utime":73,"cutime":0,"cstime":0,"stime":81,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16a36143-1641-4cba-8ebf-555bb61587b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2144,"total_pss":37589,"rss":110888,"native_total_heap":25016,"native_free_heap":2450,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22419ce1-aec3-4a36-895e-b68a850098f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4336,"total_pss":36503,"rss":108920,"native_total_heap":25016,"native_free_heap":2876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227fa2b5-c5be-4167-a4ed-5232a93609e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":544,"total_pss":38604,"rss":110728,"native_total_heap":25016,"native_free_heap":2195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c8828a-7f11-41c4-ad09-59d27b5b89e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552398,"end_time":552413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4344e037-4559-43d9-8910-50a0c3d130d0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.39200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572430,"end_time":572444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"451609b7-7637-4fbc-9b05-9b4851092d07","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582399,"end_time":582420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47fa3f2e-2b72-4b3f-95a9-fe1922620518","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:06.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":555227,"utime":60,"cutime":0,"cstime":0,"stime":69,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5093c557-490c-4264-9e23-03bf95e3d824","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":558227,"utime":61,"cutime":0,"cstime":0,"stime":71,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55199df2-ea13-4ebd-9d28-551f8e2a2b50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1108,"total_pss":35179,"rss":104748,"native_total_heap":25016,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"572a50c6-1664-4fc4-8709-d9c2deefb7ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:31.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1196,"total_pss":35131,"rss":104748,"native_total_heap":25016,"native_free_heap":2294,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5825b610-6c6b-466b-a2d0-e59178a2151c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":552420,"end_time":552433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c48fd7-1538-43af-9e7b-f925b6febccf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":668,"total_pss":38429,"rss":110664,"native_total_heap":25016,"native_free_heap":2196,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a82f197-5e64-4be3-a45b-2d43cf8f104f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2356,"total_pss":37464,"rss":110888,"native_total_heap":25016,"native_free_heap":2535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d1bf543-1bcb-4ffd-9c64-babc190b7b4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3144,"total_pss":36681,"rss":109920,"native_total_heap":25016,"native_free_heap":2636,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6302fee3-5c2b-45fd-bfc8-c57be4f0e101","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:30.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":579228,"utime":77,"cutime":0,"cstime":0,"stime":86,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b6744e-7ac6-48c8-88ef-b1df3f3a2126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2392,"total_pss":37436,"rss":110888,"native_total_heap":25016,"native_free_heap":2551,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b87bb3f-7694-4a9a-93a9-b695a6c53a06","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3444,"total_pss":36682,"rss":109716,"native_total_heap":25016,"native_free_heap":2757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"748da28a-e73d-4b13-a876-cfdc3b50511e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1408,"total_pss":34523,"rss":103736,"native_total_heap":25016,"native_free_heap":2383,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7642a293-5b60-417f-b97b-65c0b324d4da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":552228,"utime":57,"cutime":0,"cstime":0,"stime":64,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78120433-29f9-40c1-bce7-c34d63c761c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4176,"total_pss":36016,"rss":109128,"native_total_heap":25016,"native_free_heap":2808,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"798c872c-dbbe-41f6-b14e-4dbabc98060b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1268,"total_pss":35079,"rss":104748,"native_total_heap":25016,"native_free_heap":2330,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95507c-a032-435d-8c91-9f88a670ad96","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":540227,"utime":47,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8446df5b-0efd-4305-ae2b-53a1aa4526e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2252,"total_pss":37513,"rss":110888,"native_total_heap":25016,"native_free_heap":2498,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d36c09a-5663-4186-a133-368713c85c56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:15.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":564228,"utime":66,"cutime":0,"cstime":0,"stime":74,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c537a5b-79f2-4559-880b-947c6fea5c6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4388,"total_pss":36553,"rss":108920,"native_total_heap":25016,"native_free_heap":2892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d0dd65c-7272-41b9-8b5a-c5de40988f36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:00.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":549227,"utime":56,"cutime":0,"cstime":0,"stime":63,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a05156bf-2a56-4e0e-bf4b-e89bda565de1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3232,"total_pss":36635,"rss":109920,"native_total_heap":25016,"native_free_heap":2672,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a18b2746-fa23-49f5-84c7-55272e15818e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:23.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":572398,"end_time":572417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae7911ff-c672-4670-ac7c-af70d6681b23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.38400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":582429,"end_time":582436,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b38158d6-6a0e-4eed-a87a-f40818f19fdf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562398,"end_time":562415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3870db9-70e1-444b-a634-9fe099ffd6c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":570227,"utime":70,"cutime":0,"cstime":0,"stime":77,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3f71f83-1699-4b21-9e75-7649b7e9cf17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3356,"total_pss":36728,"rss":109716,"native_total_heap":25016,"native_free_heap":2720,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b80e9bb6-75bb-4d68-a6e2-c6a6a4d2c8c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2180,"total_pss":37565,"rss":110888,"native_total_heap":25016,"native_free_heap":2466,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc11cefa-de53-4d6e-b947-dd5a6dd00fda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":4476,"total_pss":36501,"rss":108752,"native_total_heap":25016,"native_free_heap":2924,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3eccd8-51ac-48f5-b73f-a20a8affbc40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:09.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3252,"total_pss":36698,"rss":109716,"native_total_heap":25016,"native_free_heap":2688,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd4318dc-4b03-44e0-bb82-968be8a497ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":576228,"utime":74,"cutime":0,"cstime":0,"stime":82,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c5652824-1414-4bd2-a231-a4f8e74d6606","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:53.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":542403,"end_time":542422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d214fb92-053b-45fe-8c7d-8ebf2bea87ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:18.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":567228,"utime":69,"cutime":0,"cstime":0,"stime":76,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b20f95-3e0e-499e-9045-6ea66a6c570a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:47.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":756,"total_pss":37572,"rss":109640,"native_total_heap":25016,"native_free_heap":2208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2da7036-f9f2-4ecf-b206-e939a6e56bf8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:57.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":546228,"utime":53,"cutime":0,"cstime":0,"stime":61,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4edb639-67cb-451c-a2d6-02579c62996f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:48.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":537227,"utime":46,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e94ed82f-5b95-4a46-a512-cadfda1ac169","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1320,"total_pss":34669,"rss":104076,"native_total_heap":25016,"native_free_heap":2342,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f55cf5-6c43-400e-844e-5330e9661e17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:12.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":561228,"utime":64,"cutime":0,"cstime":0,"stime":72,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f41b00ef-21a1-46ac-b6c6-2991bdd8f0e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:33.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":582228,"utime":78,"cutime":0,"cstime":0,"stime":88,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f661ddc6-f150-4536-a9c5-4720c950b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":562427,"end_time":562437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73a7648-f56b-4dac-a446-3438f004a390","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:54.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":543228,"utime":52,"cutime":0,"cstime":0,"stime":59,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f73f0206-c718-4320-8904-30aced2bd682","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":596,"total_pss":38680,"rss":110728,"native_total_heap":25016,"native_free_heap":2191,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json b/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json index 399932987..def76847c 100644 --- a/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json +++ b/self-host/session-data/sh.measure.sample/1.0/0c0a90a6-64f9-47a5-a722-02f1d8f04142.json @@ -1 +1 @@ -[{"id":"061ff45e-e396-45a3-9dd3-c82c3c728fbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782397,"end_time":782411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ec49653-b21f-416d-a31f-e7fd25726809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":804228,"utime":225,"cutime":0,"cstime":0,"stime":252,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12cfffe1-9c32-4ea0-9013-5e48b3ba2cf0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":786228,"utime":215,"cutime":0,"cstime":0,"stime":238,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16b7bdaa-03a7-4110-bd1c-b7e584bf1048","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":195,"total_pss":35885,"rss":107748,"native_total_heap":25528,"native_free_heap":2708,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b3ec857-dc44-4581-bdf5-cfbc5a897c41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":792227,"utime":218,"cutime":0,"cstime":0,"stime":243,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c31656-5c41-4efb-b733-83ba8537b56e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2277,"total_pss":34361,"rss":106148,"native_total_heap":25528,"native_free_heap":3115,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28be498a-7602-483e-affc-c06fb06ad74e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":993,"total_pss":35385,"rss":107340,"native_total_heap":25784,"native_free_heap":2831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29447d4d-4321-4bb4-9076-8f4d2d3a09bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1153,"total_pss":35281,"rss":107340,"native_total_heap":25784,"native_free_heap":2899,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2bc3b734-b05c-4680-9a98-193f5a7d67c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:00.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":789232,"utime":217,"cutime":0,"cstime":0,"stime":241,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cda87af-d8bd-49a8-a159-6cdc4a9461f9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792398,"end_time":792406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e085620-bc0d-4ef6-b3f6-598924638f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":813227,"utime":230,"cutime":0,"cstime":0,"stime":260,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33fa59b2-4cc2-4291-bac5-502e4fb0ee6e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4061,"total_pss":32825,"rss":104804,"native_total_heap":25528,"native_free_heap":3372,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34f5a4fc-f9e5-4756-9601-9292cf68f246","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.37900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812419,"end_time":812431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"427f87a2-5eec-40ad-acae-18b1d7128269","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3225,"total_pss":33553,"rss":105640,"native_total_heap":25528,"native_free_heap":3284,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"547015de-5274-4d6d-b872-91bf09f7e0cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2241,"total_pss":34385,"rss":106148,"native_total_heap":25528,"native_free_heap":3099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57471c65-cf1d-45d9-a315-5653b5b1a542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":783228,"utime":214,"cutime":0,"cstime":0,"stime":237,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f72a0d4-bf59-4b0f-b5b2-2b7bb22ca49a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822418,"end_time":822423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65639017-1c9a-413b-8195-c66f67100218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3029,"total_pss":33681,"rss":105640,"native_total_heap":25528,"native_free_heap":3200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65b921b9-bd52-420b-94d5-757b37633d40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4133,"total_pss":32769,"rss":104552,"native_total_heap":25528,"native_free_heap":3408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"674d6633-b420-4a5c-ba91-c005d0a261cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":819227,"utime":233,"cutime":0,"cstime":0,"stime":263,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a8524d7-9865-4790-b0ea-4e4a1ae1d512","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3137,"total_pss":33605,"rss":105640,"native_total_heap":25528,"native_free_heap":3252,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84182723-db0c-4aae-91ad-fe9dc9e493c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1205,"total_pss":35253,"rss":107084,"native_total_heap":25784,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86467bfa-c797-4be3-b54d-a34ac9a5bcb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1195,"total_pss":35017,"rss":106936,"native_total_heap":25528,"native_free_heap":2875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a02349e-3b13-4805-a6f0-307ba3ceaf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782417,"end_time":782428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f5c6903-2718-4db4-93cc-3ed4198fdcbc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":822229,"utime":235,"cutime":0,"cstime":0,"stime":264,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fc3cb35-2966-43d1-b4f6-475bdf1d9121","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":810227,"utime":227,"cutime":0,"cstime":0,"stime":256,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c61c0f4-6d9a-4f13-8804-96a35e03b0ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822398,"end_time":822411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9dbea8c4-25bc-4155-b3e0-76509e77a9b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":798228,"utime":222,"cutime":0,"cstime":0,"stime":246,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636850f-3de6-455d-a68c-e7aee6c1ef40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":816228,"utime":231,"cutime":0,"cstime":0,"stime":261,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac37c42a-bbf7-4640-8f29-f93da29c6128","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1293,"total_pss":35205,"rss":107084,"native_total_heap":25784,"native_free_heap":2952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aea78c83-c620-475b-ab8a-553d77d5f396","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1081,"total_pss":35333,"rss":107340,"native_total_heap":25784,"native_free_heap":2863,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b59083bc-fceb-4b34-82e1-9d1900952144","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2153,"total_pss":34441,"rss":106148,"native_total_heap":25528,"native_free_heap":3062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7717476-1d70-41c3-9a6b-440e5296a62a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":807227,"utime":226,"cutime":0,"cstime":0,"stime":255,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b88c6de6-6fc8-4cf9-b788-525662542b13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3313,"total_pss":33501,"rss":105420,"native_total_heap":25528,"native_free_heap":3320,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9b0d4df-3bbe-4e26-95b8-2b209680749d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:55.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":335,"total_pss":35773,"rss":107748,"native_total_heap":25528,"native_free_heap":2756,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba7a59a7-2fa3-4af4-80fb-8ba61a7ebf13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1071,"total_pss":35093,"rss":107144,"native_total_heap":25528,"native_free_heap":2823,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca6fd4-55a8-4f9a-8c1c-dfaf9bc1d3bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.36200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812399,"end_time":812414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb04cbb1-49fb-44c2-a11d-a5d52d3a18b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":231,"total_pss":35841,"rss":107748,"native_total_heap":25528,"native_free_heap":2724,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b00bf6-e251-43db-876c-c9297e3d129d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1123,"total_pss":35069,"rss":107144,"native_total_heap":25528,"native_free_heap":2843,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d97a1e-fcf6-4db1-9fbb-518530dc9a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802426,"end_time":802435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3065b94-3bc2-4d21-8d57-7b437005a0b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":801227,"utime":223,"cutime":0,"cstime":0,"stime":249,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3292b3f-f95c-419c-9f56-ce37265242d5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802400,"end_time":802419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb9cd9e-46de-42f7-a5c1-05fb79c96736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:35.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":293,"total_pss":36045,"rss":107940,"native_total_heap":25784,"native_free_heap":2762,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ad8d76-ff80-41fe-9ca2-4acc80b259b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2065,"total_pss":34493,"rss":106360,"native_total_heap":25528,"native_free_heap":3030,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb3c9f1d-e22f-4ed5-a434-efb51b46ebfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792412,"end_time":792421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe24197-4373-4f50-9400-fcf1b11ee764","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3101,"total_pss":33629,"rss":105640,"native_total_heap":25528,"native_free_heap":3236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f623fb60-f8b3-408e-9185-fd9f5d32d88b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2029,"total_pss":34517,"rss":106360,"native_total_heap":25528,"native_free_heap":3014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7b5686f-cf97-4d23-b834-c0f23d2bdf23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":825228,"utime":237,"cutime":0,"cstime":0,"stime":268,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe99b159-1a91-43b2-84d1-1ad4434ff3e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":780227,"utime":211,"cutime":0,"cstime":0,"stime":235,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fefec6de-591e-4b21-a60f-b4338ed52e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":795228,"utime":221,"cutime":0,"cstime":0,"stime":244,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"061ff45e-e396-45a3-9dd3-c82c3c728fbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782397,"end_time":782411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ec49653-b21f-416d-a31f-e7fd25726809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":804228,"utime":225,"cutime":0,"cstime":0,"stime":252,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12cfffe1-9c32-4ea0-9013-5e48b3ba2cf0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":786228,"utime":215,"cutime":0,"cstime":0,"stime":238,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16b7bdaa-03a7-4110-bd1c-b7e584bf1048","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":195,"total_pss":35885,"rss":107748,"native_total_heap":25528,"native_free_heap":2708,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b3ec857-dc44-4581-bdf5-cfbc5a897c41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":792227,"utime":218,"cutime":0,"cstime":0,"stime":243,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c31656-5c41-4efb-b733-83ba8537b56e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2277,"total_pss":34361,"rss":106148,"native_total_heap":25528,"native_free_heap":3115,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28be498a-7602-483e-affc-c06fb06ad74e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":993,"total_pss":35385,"rss":107340,"native_total_heap":25784,"native_free_heap":2831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29447d4d-4321-4bb4-9076-8f4d2d3a09bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1153,"total_pss":35281,"rss":107340,"native_total_heap":25784,"native_free_heap":2899,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2bc3b734-b05c-4680-9a98-193f5a7d67c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:00.18000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":789232,"utime":217,"cutime":0,"cstime":0,"stime":241,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cda87af-d8bd-49a8-a159-6cdc4a9461f9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792398,"end_time":792406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e085620-bc0d-4ef6-b3f6-598924638f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:24.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":813227,"utime":230,"cutime":0,"cstime":0,"stime":260,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33fa59b2-4cc2-4291-bac5-502e4fb0ee6e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4061,"total_pss":32825,"rss":104804,"native_total_heap":25528,"native_free_heap":3372,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34f5a4fc-f9e5-4756-9601-9292cf68f246","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.37900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812419,"end_time":812431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"427f87a2-5eec-40ad-acae-18b1d7128269","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3225,"total_pss":33553,"rss":105640,"native_total_heap":25528,"native_free_heap":3284,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"547015de-5274-4d6d-b872-91bf09f7e0cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2241,"total_pss":34385,"rss":106148,"native_total_heap":25528,"native_free_heap":3099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57471c65-cf1d-45d9-a315-5653b5b1a542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:54.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":783228,"utime":214,"cutime":0,"cstime":0,"stime":237,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f72a0d4-bf59-4b0f-b5b2-2b7bb22ca49a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822418,"end_time":822423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65639017-1c9a-413b-8195-c66f67100218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3029,"total_pss":33681,"rss":105640,"native_total_heap":25528,"native_free_heap":3200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65b921b9-bd52-420b-94d5-757b37633d40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4133,"total_pss":32769,"rss":104552,"native_total_heap":25528,"native_free_heap":3408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"674d6633-b420-4a5c-ba91-c005d0a261cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:30.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":819227,"utime":233,"cutime":0,"cstime":0,"stime":263,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a8524d7-9865-4790-b0ea-4e4a1ae1d512","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3137,"total_pss":33605,"rss":105640,"native_total_heap":25528,"native_free_heap":3252,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84182723-db0c-4aae-91ad-fe9dc9e493c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1205,"total_pss":35253,"rss":107084,"native_total_heap":25784,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86467bfa-c797-4be3-b54d-a34ac9a5bcb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1195,"total_pss":35017,"rss":106936,"native_total_heap":25528,"native_free_heap":2875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a02349e-3b13-4805-a6f0-307ba3ceaf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":782417,"end_time":782428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f5c6903-2718-4db4-93cc-3ed4198fdcbc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":822229,"utime":235,"cutime":0,"cstime":0,"stime":264,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fc3cb35-2966-43d1-b4f6-475bdf1d9121","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":810227,"utime":227,"cutime":0,"cstime":0,"stime":256,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c61c0f4-6d9a-4f13-8804-96a35e03b0ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:33.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":822398,"end_time":822411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9dbea8c4-25bc-4155-b3e0-76509e77a9b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:09.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":798228,"utime":222,"cutime":0,"cstime":0,"stime":246,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636850f-3de6-455d-a68c-e7aee6c1ef40","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:27.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":816228,"utime":231,"cutime":0,"cstime":0,"stime":261,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac37c42a-bbf7-4640-8f29-f93da29c6128","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1293,"total_pss":35205,"rss":107084,"native_total_heap":25784,"native_free_heap":2952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aea78c83-c620-475b-ab8a-553d77d5f396","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1081,"total_pss":35333,"rss":107340,"native_total_heap":25784,"native_free_heap":2863,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b59083bc-fceb-4b34-82e1-9d1900952144","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2153,"total_pss":34441,"rss":106148,"native_total_heap":25528,"native_free_heap":3062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7717476-1d70-41c3-9a6b-440e5296a62a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:18.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":807227,"utime":226,"cutime":0,"cstime":0,"stime":255,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b88c6de6-6fc8-4cf9-b788-525662542b13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3313,"total_pss":33501,"rss":105420,"native_total_heap":25528,"native_free_heap":3320,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9b0d4df-3bbe-4e26-95b8-2b209680749d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:55.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":335,"total_pss":35773,"rss":107748,"native_total_heap":25528,"native_free_heap":2756,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba7a59a7-2fa3-4af4-80fb-8ba61a7ebf13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1071,"total_pss":35093,"rss":107144,"native_total_heap":25528,"native_free_heap":2823,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca6fd4-55a8-4f9a-8c1c-dfaf9bc1d3bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.36200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":812399,"end_time":812414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb04cbb1-49fb-44c2-a11d-a5d52d3a18b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:57.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":231,"total_pss":35841,"rss":107748,"native_total_heap":25528,"native_free_heap":2724,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b00bf6-e251-43db-876c-c9297e3d129d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1123,"total_pss":35069,"rss":107144,"native_total_heap":25528,"native_free_heap":2843,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d97a1e-fcf6-4db1-9fbb-518530dc9a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802426,"end_time":802435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3065b94-3bc2-4d21-8d57-7b437005a0b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:12.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":801227,"utime":223,"cutime":0,"cstime":0,"stime":249,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3292b3f-f95c-419c-9f56-ce37265242d5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":802400,"end_time":802419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb9cd9e-46de-42f7-a5c1-05fb79c96736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:35.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":293,"total_pss":36045,"rss":107940,"native_total_heap":25784,"native_free_heap":2762,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ad8d76-ff80-41fe-9ca2-4acc80b259b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:21.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2065,"total_pss":34493,"rss":106360,"native_total_heap":25528,"native_free_heap":3030,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb3c9f1d-e22f-4ed5-a434-efb51b46ebfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":792412,"end_time":792421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe24197-4373-4f50-9400-fcf1b11ee764","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3101,"total_pss":33629,"rss":105640,"native_total_heap":25528,"native_free_heap":3236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f623fb60-f8b3-408e-9185-fd9f5d32d88b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2029,"total_pss":34517,"rss":106360,"native_total_heap":25528,"native_free_heap":3014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7b5686f-cf97-4d23-b834-c0f23d2bdf23","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:36.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":825228,"utime":237,"cutime":0,"cstime":0,"stime":268,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe99b159-1a91-43b2-84d1-1ad4434ff3e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:51.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":780227,"utime":211,"cutime":0,"cstime":0,"stime":235,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fefec6de-591e-4b21-a60f-b4338ed52e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:06.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":795228,"utime":221,"cutime":0,"cstime":0,"stime":244,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json b/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json index 185ae4738..7489ce13d 100644 --- a/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json +++ b/self-host/session-data/sh.measure.sample/1.0/0ef223a2-3619-4f56-a9ec-733f52751537.json @@ -1 +1 @@ -[{"id":"0330e740-e542-4a0a-8e38-b284d19a2f1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922423,"end_time":922432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05d532a9-d05c-447c-83fe-e32e81c8334b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2287,"total_pss":34585,"rss":106860,"native_total_heap":25784,"native_free_heap":3117,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06040cc0-81c8-424c-aba7-f179dc16ee92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962397,"end_time":962411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"074fecb4-9bd0-4c76-959b-6d325ebbaa36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932398,"end_time":932410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"187ca111-0516-45ca-b3c4-fcf06e0b71b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932415,"end_time":932423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a5f4422-6410-4286-97ed-9f32a08ac244","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3395,"total_pss":33669,"rss":105768,"native_total_heap":25784,"native_free_heap":3337,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274df3e0-458e-45eb-8172-a135dcf77f5a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":963228,"utime":319,"cutime":0,"cstime":0,"stime":358,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bb5f23b-b684-4e34-8ce5-579faa60272c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:19.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2268,"total_pss":34369,"rss":106460,"native_total_heap":25784,"native_free_heap":3082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d62c0b3-6070-4cba-aa92-5bdca7576ef1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1196,"total_pss":35249,"rss":107532,"native_total_heap":25784,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ff5933b-f45a-4396-949f-885afae07043","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2199,"total_pss":34637,"rss":106860,"native_total_heap":25784,"native_free_heap":3085,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"434d0a9f-b079-491f-9e0e-3d1e82cded66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":972228,"utime":323,"cutime":0,"cstime":0,"stime":362,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4c285831-6ef4-4dcb-acc7-23924a3bce99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1284,"total_pss":35197,"rss":107280,"native_total_heap":25784,"native_free_heap":2910,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f3ea8f0-e427-4073-ad7d-d343d90f7689","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2356,"total_pss":34319,"rss":106460,"native_total_heap":25784,"native_free_heap":3118,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b344ee-2e34-4a18-956e-993663fdee3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1124,"total_pss":35305,"rss":107532,"native_total_heap":25784,"native_free_heap":2841,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5348b22b-2b1d-42ac-be45-264804a18add","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2392,"total_pss":34295,"rss":106460,"native_total_heap":25784,"native_free_heap":3134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b9d9607-7f02-4046-ad46-3ce299c7da89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":948227,"utime":310,"cutime":0,"cstime":0,"stime":347,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"619d0a00-3195-44c4-8914-415611c4da8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":942228,"utime":307,"cutime":0,"cstime":0,"stime":342,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69f390b8-2b98-4774-8fc6-2d87fa49e0ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1408,"total_pss":35122,"rss":107280,"native_total_heap":25784,"native_free_heap":2962,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ba5e118-d1f2-4463-a3d3-e8926f8aa8df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2180,"total_pss":34425,"rss":106460,"native_total_heap":25784,"native_free_heap":3050,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dd283c4-0dc4-497a-a4e7-6e471b4bf0d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":196,"total_pss":36105,"rss":108356,"native_total_heap":25784,"native_free_heap":2706,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76ceade3-c6a1-4a7d-8b8e-2a91835024d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":927228,"utime":298,"cutime":0,"cstime":0,"stime":335,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7734ce09-3b0c-4432-a7a5-55b2112825c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":936227,"utime":303,"cutime":0,"cstime":0,"stime":340,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78eac305-61ed-4b82-9a8d-ee65e2a8356f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3343,"total_pss":33697,"rss":105768,"native_total_heap":25784,"native_free_heap":3321,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81cbe2e4-a293-4282-8db3-2201c9361e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1336,"total_pss":35174,"rss":107280,"native_total_heap":25784,"native_free_heap":2926,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8468ea59-5be2-44c0-948c-ded9a655ad43","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":336,"total_pss":36021,"rss":108144,"native_total_heap":25784,"native_free_heap":2758,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86a71cec-09f4-42b3-91ab-73bd6886f046","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:42.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":951232,"utime":311,"cutime":0,"cstime":0,"stime":350,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9be4fd-22fc-4d57-85d6-b29a51108111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4179,"total_pss":32961,"rss":105136,"native_total_heap":25784,"native_free_heap":3422,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96758924-c8c1-493a-837c-46e35dd2a2b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3183,"total_pss":33797,"rss":105768,"native_total_heap":25784,"native_free_heap":3252,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4e09b84-bfc8-452f-bd75-43b84ce066e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942413,"end_time":942418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab6755b8-2b3f-45b1-8154-f29f291935ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2144,"total_pss":34453,"rss":106460,"native_total_heap":25784,"native_free_heap":3034,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2b2e25-a5fe-43cc-9ff5-432472758740","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3131,"total_pss":33825,"rss":105768,"native_total_heap":25784,"native_free_heap":3237,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b32d0dea-c387-4a2c-8eaf-b7b5095ac7fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":969227,"utime":322,"cutime":0,"cstime":0,"stime":361,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b42ae6fa-d115-488d-be82-0b753e6eeb51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2323,"total_pss":34561,"rss":106860,"native_total_heap":25784,"native_free_heap":3133,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b67f2e3c-ba55-4f91-a92b-8c6d5325a4c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":954227,"utime":314,"cutime":0,"cstime":0,"stime":352,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8838df-8284-41f3-8dec-ea5c6b2016b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":232,"total_pss":36077,"rss":108356,"native_total_heap":25784,"native_free_heap":2722,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c382e9c9-885e-4d84-856d-997d235737b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952397,"end_time":952409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c480a26f-7540-4bf8-bf5a-d3cfb0aafa16","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":966227,"utime":320,"cutime":0,"cstime":0,"stime":359,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c749d7bd-be48-4628-8691-53f64a77803c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":924227,"utime":297,"cutime":0,"cstime":0,"stime":333,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7c0adc1-2fc8-4c69-8af8-55d60ad82be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942397,"end_time":942408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cbc1fcfb-8fc9-45c8-89b0-996c161beb86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2411,"total_pss":34509,"rss":106860,"native_total_heap":25784,"native_free_heap":3169,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf4bbad0-1d01-4897-a922-b099ab3f496a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":960228,"utime":316,"cutime":0,"cstime":0,"stime":356,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df2cccc5-37da-421d-9657-b470227d9b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":930227,"utime":299,"cutime":0,"cstime":0,"stime":336,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e457fb1e-7ff0-4132-976e-c42554ef39c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952413,"end_time":952421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f0e05f-a1a2-4466-9681-f6746895e166","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3271,"total_pss":33745,"rss":105768,"native_total_heap":25784,"native_free_heap":3289,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec26984e-be38-4e8c-9bd2-f736715c5fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":957227,"utime":316,"cutime":0,"cstime":0,"stime":354,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed0d5bae-9f25-4d50-bca0-0eb9966503da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":933228,"utime":302,"cutime":0,"cstime":0,"stime":339,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6a231-381b-4ef8-9eac-e12f2b14fe5c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":945227,"utime":309,"cutime":0,"cstime":0,"stime":346,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edfacf9e-1f4c-49d2-bf75-0499902370a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":408,"total_pss":35969,"rss":108144,"native_total_heap":25784,"native_free_heap":2790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe11f317-a038-4b7d-8827-ef70096f0409","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962417,"end_time":962424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fecb6c21-ebac-4560-9bc6-72fc3d4e3907","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":939227,"utime":305,"cutime":0,"cstime":0,"stime":342,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0330e740-e542-4a0a-8e38-b284d19a2f1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922423,"end_time":922432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05d532a9-d05c-447c-83fe-e32e81c8334b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2287,"total_pss":34585,"rss":106860,"native_total_heap":25784,"native_free_heap":3117,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06040cc0-81c8-424c-aba7-f179dc16ee92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962397,"end_time":962411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"074fecb4-9bd0-4c76-959b-6d325ebbaa36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932398,"end_time":932410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"187ca111-0516-45ca-b3c4-fcf06e0b71b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":932415,"end_time":932423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a5f4422-6410-4286-97ed-9f32a08ac244","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3395,"total_pss":33669,"rss":105768,"native_total_heap":25784,"native_free_heap":3337,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274df3e0-458e-45eb-8172-a135dcf77f5a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:54.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":963228,"utime":319,"cutime":0,"cstime":0,"stime":358,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bb5f23b-b684-4e34-8ce5-579faa60272c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:19.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2268,"total_pss":34369,"rss":106460,"native_total_heap":25784,"native_free_heap":3082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d62c0b3-6070-4cba-aa92-5bdca7576ef1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1196,"total_pss":35249,"rss":107532,"native_total_heap":25784,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ff5933b-f45a-4396-949f-885afae07043","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2199,"total_pss":34637,"rss":106860,"native_total_heap":25784,"native_free_heap":3085,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"434d0a9f-b079-491f-9e0e-3d1e82cded66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":972228,"utime":323,"cutime":0,"cstime":0,"stime":362,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4c285831-6ef4-4dcb-acc7-23924a3bce99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1284,"total_pss":35197,"rss":107280,"native_total_heap":25784,"native_free_heap":2910,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f3ea8f0-e427-4073-ad7d-d343d90f7689","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2356,"total_pss":34319,"rss":106460,"native_total_heap":25784,"native_free_heap":3118,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b344ee-2e34-4a18-956e-993663fdee3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1124,"total_pss":35305,"rss":107532,"native_total_heap":25784,"native_free_heap":2841,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5348b22b-2b1d-42ac-be45-264804a18add","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2392,"total_pss":34295,"rss":106460,"native_total_heap":25784,"native_free_heap":3134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b9d9607-7f02-4046-ad46-3ce299c7da89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":948227,"utime":310,"cutime":0,"cstime":0,"stime":347,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"619d0a00-3195-44c4-8914-415611c4da8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":942228,"utime":307,"cutime":0,"cstime":0,"stime":342,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69f390b8-2b98-4774-8fc6-2d87fa49e0ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1408,"total_pss":35122,"rss":107280,"native_total_heap":25784,"native_free_heap":2962,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ba5e118-d1f2-4463-a3d3-e8926f8aa8df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2180,"total_pss":34425,"rss":106460,"native_total_heap":25784,"native_free_heap":3050,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dd283c4-0dc4-497a-a4e7-6e471b4bf0d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":196,"total_pss":36105,"rss":108356,"native_total_heap":25784,"native_free_heap":2706,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76ceade3-c6a1-4a7d-8b8e-2a91835024d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:18.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":927228,"utime":298,"cutime":0,"cstime":0,"stime":335,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7734ce09-3b0c-4432-a7a5-55b2112825c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":936227,"utime":303,"cutime":0,"cstime":0,"stime":340,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"78eac305-61ed-4b82-9a8d-ee65e2a8356f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3343,"total_pss":33697,"rss":105768,"native_total_heap":25784,"native_free_heap":3321,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81cbe2e4-a293-4282-8db3-2201c9361e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1336,"total_pss":35174,"rss":107280,"native_total_heap":25784,"native_free_heap":2926,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8468ea59-5be2-44c0-948c-ded9a655ad43","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":336,"total_pss":36021,"rss":108144,"native_total_heap":25784,"native_free_heap":2758,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86a71cec-09f4-42b3-91ab-73bd6886f046","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:42.18000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":951232,"utime":311,"cutime":0,"cstime":0,"stime":350,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9be4fd-22fc-4d57-85d6-b29a51108111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4179,"total_pss":32961,"rss":105136,"native_total_heap":25784,"native_free_heap":3422,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96758924-c8c1-493a-837c-46e35dd2a2b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3183,"total_pss":33797,"rss":105768,"native_total_heap":25784,"native_free_heap":3252,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4e09b84-bfc8-452f-bd75-43b84ce066e6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942413,"end_time":942418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab6755b8-2b3f-45b1-8154-f29f291935ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2144,"total_pss":34453,"rss":106460,"native_total_heap":25784,"native_free_heap":3034,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2b2e25-a5fe-43cc-9ff5-432472758740","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3131,"total_pss":33825,"rss":105768,"native_total_heap":25784,"native_free_heap":3237,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b32d0dea-c387-4a2c-8eaf-b7b5095ac7fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:00.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":969227,"utime":322,"cutime":0,"cstime":0,"stime":361,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b42ae6fa-d115-488d-be82-0b753e6eeb51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2323,"total_pss":34561,"rss":106860,"native_total_heap":25784,"native_free_heap":3133,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b67f2e3c-ba55-4f91-a92b-8c6d5325a4c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:45.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":954227,"utime":314,"cutime":0,"cstime":0,"stime":352,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8838df-8284-41f3-8dec-ea5c6b2016b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":232,"total_pss":36077,"rss":108356,"native_total_heap":25784,"native_free_heap":2722,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c382e9c9-885e-4d84-856d-997d235737b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952397,"end_time":952409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c480a26f-7540-4bf8-bf5a-d3cfb0aafa16","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:57.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":966227,"utime":320,"cutime":0,"cstime":0,"stime":359,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c749d7bd-be48-4628-8691-53f64a77803c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:15.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":924227,"utime":297,"cutime":0,"cstime":0,"stime":333,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7c0adc1-2fc8-4c69-8af8-55d60ad82be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:33.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":942397,"end_time":942408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cbc1fcfb-8fc9-45c8-89b0-996c161beb86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2411,"total_pss":34509,"rss":106860,"native_total_heap":25784,"native_free_heap":3169,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf4bbad0-1d01-4897-a922-b099ab3f496a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:51.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":960228,"utime":316,"cutime":0,"cstime":0,"stime":356,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df2cccc5-37da-421d-9657-b470227d9b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:21.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":930227,"utime":299,"cutime":0,"cstime":0,"stime":336,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e457fb1e-7ff0-4132-976e-c42554ef39c5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:43.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":952413,"end_time":952421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9f0e05f-a1a2-4466-9681-f6746895e166","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3271,"total_pss":33745,"rss":105768,"native_total_heap":25784,"native_free_heap":3289,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec26984e-be38-4e8c-9bd2-f736715c5fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:48.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":957227,"utime":316,"cutime":0,"cstime":0,"stime":354,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed0d5bae-9f25-4d50-bca0-0eb9966503da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:24.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":933228,"utime":302,"cutime":0,"cstime":0,"stime":339,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6a231-381b-4ef8-9eac-e12f2b14fe5c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:36.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":945227,"utime":309,"cutime":0,"cstime":0,"stime":346,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edfacf9e-1f4c-49d2-bf75-0499902370a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":408,"total_pss":35969,"rss":108144,"native_total_heap":25784,"native_free_heap":2790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe11f317-a038-4b7d-8827-ef70096f0409","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:53.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":962417,"end_time":962424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fecb6c21-ebac-4560-9bc6-72fc3d4e3907","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:30.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":939227,"utime":305,"cutime":0,"cstime":0,"stime":342,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json b/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json index a55c7d2cb..63f9722c1 100644 --- a/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json +++ b/self-host/session-data/sh.measure.sample/1.0/1590899d-3a2e-49ef-aae5-966eac419e80.json @@ -1 +1 @@ -[{"id":"5775c06b-507a-484c-a145-570dfc048ee8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.80700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"799676b2-c2f2-4786-8a7f-5bcd78ec204c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.89900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d54b57a9-47d6-46e5-9dad-fa3d0fc72092","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2823445,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d77f48c1-4e4e-44d3-a1ce-15d6b7a02e65","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184195,"total_pss":22147,"rss":102472,"native_total_heap":11096,"native_free_heap":1228,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"5775c06b-507a-484c-a145-570dfc048ee8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.80700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"799676b2-c2f2-4786-8a7f-5bcd78ec204c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.89900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d54b57a9-47d6-46e5-9dad-fa3d0fc72092","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2823445,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d77f48c1-4e4e-44d3-a1ce-15d6b7a02e65","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:50.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184195,"total_pss":22147,"rss":102472,"native_total_heap":11096,"native_free_heap":1228,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json b/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json index aec792a6c..70f21673f 100644 --- a/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json +++ b/self-host/session-data/sh.measure.sample/1.0/18629179-ac60-4bec-872a-8a93f923ddf3.json @@ -1 +1 @@ -[{"id":"33aa6e63-6e71-4ba1-ba0d-f216d0885257","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.72700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5064224,"utime":45,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3da334-4512-4db6-baf2-ffbd1f8230b6","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.72500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5067222,"utime":48,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e5e1f6e-6bc0-4bb1-94e0-c9fd28e40f63","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.91500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"41e96633-6e46-475f-88d6-a7a7544b27df","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.05600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5057835,"process_start_requested_uptime":5057652,"content_provider_attach_uptime":5058171,"on_next_draw_uptime":5058552,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4497f884-f9cb-4827-b725-5e8719199fcc","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.73200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30608,"total_pss":85817,"rss":180044,"native_total_heap":22780,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45892a85-9467-4e0f-8867-509ae3b201d5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.81000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4cf1f232-6119-43b9-bc8d-60924923c2a5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:11.72800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5061225,"utime":41,"cutime":0,"cstime":0,"stime":15,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"565a574a-507b-492c-8255-1e09789ac6fb","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:16.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30498,"total_pss":85980,"rss":180404,"native_total_heap":23036,"native_free_heap":1108,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58918fe3-8bb0-420f-acc0-edccc51c8325","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"599002b3-57f4-4678-afdc-1bf0f0749949","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.86300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ab900a4-c551-4b5d-b9c5-08e95b118bca","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183766,"total_pss":60312,"rss":152116,"native_total_heap":12376,"native_free_heap":1276,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8aad3d17-121e-42b8-92cc-0e7117c95816","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5058655,"end_time":5058728,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9973","content-type":"multipart/form-data; boundary=049a2cf2-2889-4b8a-b343-f4a73fbfcc9e","host":"10.0.2.2:8080","msr-req-id":"25f9030c-7ad8-46a0-a9df-20a97ddf9ab8","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:33:09 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ce1b591-303e-480f-bb36-378acfdbb12f","session_id":"6338e0bc-ee16-493a-9a5e-4abe0b54bc5a","timestamp":"2024-05-03T23:33:09.21500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (30):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=18 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=28 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_5\" prio=5 tid=29 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_6\" prio=5 tid=30 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"queued-work-looper\" prio=5 tid=31 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"binder:9819_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 9819 -----\n","process_name":"sh.measure.sample","pid":"9819"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"badbb86b-4785-4773-9b4c-6851624b585d","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:12.72600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30714,"total_pss":85251,"rss":179280,"native_total_heap":22780,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3ce1ed-8214-48fb-94b6-56a94f2f2bce","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.85300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c31eb6e9-ed46-4ddd-9895-7889c604cd57","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.93200000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c3c39fe6-96cd-4ff4-abd4-e6eb006ad1c3","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5058242,"utime":18,"cutime":0,"cstime":0,"stime":7,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8b79b18-0515-4321-b57b-9cfbd0cff10f","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:10.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30786,"total_pss":85163,"rss":179280,"native_total_heap":22780,"native_free_heap":1143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efbf004b-4e67-4790-9a3a-af7a55e461bf","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.92700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff04b40e-5d7c-420c-813e-08c18961a378","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.69200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510258,"uptime":5103188,"utime":20,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"33aa6e63-6e71-4ba1-ba0d-f216d0885257","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.72700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5064224,"utime":45,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3da334-4512-4db6-baf2-ffbd1f8230b6","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.72500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5067222,"utime":48,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e5e1f6e-6bc0-4bb1-94e0-c9fd28e40f63","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.91500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"41e96633-6e46-475f-88d6-a7a7544b27df","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.05600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5057835,"process_start_requested_uptime":5057652,"content_provider_attach_uptime":5058171,"on_next_draw_uptime":5058552,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4497f884-f9cb-4827-b725-5e8719199fcc","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:14.73200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30608,"total_pss":85817,"rss":180044,"native_total_heap":22780,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45892a85-9467-4e0f-8867-509ae3b201d5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.81000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4cf1f232-6119-43b9-bc8d-60924923c2a5","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:11.72800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5061225,"utime":41,"cutime":0,"cstime":0,"stime":15,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"565a574a-507b-492c-8255-1e09789ac6fb","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:16.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30498,"total_pss":85980,"rss":180404,"native_total_heap":23036,"native_free_heap":1108,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58918fe3-8bb0-420f-acc0-edccc51c8325","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"599002b3-57f4-4678-afdc-1bf0f0749949","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.86300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ab900a4-c551-4b5d-b9c5-08e95b118bca","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183766,"total_pss":60312,"rss":152116,"native_total_heap":12376,"native_free_heap":1276,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8aad3d17-121e-42b8-92cc-0e7117c95816","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:09.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5058655,"end_time":5058728,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9973","content-type":"multipart/form-data; boundary=049a2cf2-2889-4b8a-b343-f4a73fbfcc9e","host":"10.0.2.2:8080","msr-req-id":"25f9030c-7ad8-46a0-a9df-20a97ddf9ab8","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:33:09 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ce1b591-303e-480f-bb36-378acfdbb12f","session_id":"6338e0bc-ee16-493a-9a5e-4abe0b54bc5a","timestamp":"2024-05-03T23:33:09.21500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (30):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0c4a5963\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x08766960\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0ec64e19\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=18 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x06910ede\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=28 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0bff28bf\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:9819_5\" prio=5 tid=29 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:9819_6\" prio=5 tid=30 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"queued-work-looper\" prio=5 tid=31 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"binder:9819_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 9819 -----\n","process_name":"sh.measure.sample","pid":"9819"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"badbb86b-4785-4773-9b4c-6851624b585d","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:12.72600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30714,"total_pss":85251,"rss":179280,"native_total_heap":22780,"native_free_heap":1135,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd3ce1ed-8214-48fb-94b6-56a94f2f2bce","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.85300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c31eb6e9-ed46-4ddd-9895-7889c604cd57","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:17.93200000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c3c39fe6-96cd-4ff4-abd4-e6eb006ad1c3","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.74600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":505767,"uptime":5058242,"utime":18,"cutime":0,"cstime":0,"stime":7,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8b79b18-0515-4321-b57b-9cfbd0cff10f","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:10.72500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30786,"total_pss":85163,"rss":179280,"native_total_heap":22780,"native_free_heap":1143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efbf004b-4e67-4790-9a3a-af7a55e461bf","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:08.92700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff04b40e-5d7c-420c-813e-08c18961a378","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.69200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":510258,"uptime":5103188,"utime":20,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json b/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json index 6c286fce7..a860b3ef7 100644 --- a/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json +++ b/self-host/session-data/sh.measure.sample/1.0/1c61a2ab-69aa-402a-b9da-b50d021586ce.json @@ -1 +1 @@ -[{"id":"00d72490-2ea5-4ce9-99bb-d9a824274867","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:02.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":137,"total_pss":30417,"rss":83472,"native_total_heap":26296,"native_free_heap":2705,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06e76b3c-1908-43e5-95a8-81c76ad1a70b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.68400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272426,"end_time":1272432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07f5899a-bb54-4f81-a15d-6f8baa5001fe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.05700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282429,"end_time":1282432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e5d240f-c24f-4e1b-bd91-5bce272ce5d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.85400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1293229,"utime":481,"cutime":0,"cstime":0,"stime":539,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ecfbbbe-a5c1-4f21-8a8c-7c22e3c41960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.03300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292399,"end_time":1292408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2801c4c3-caf5-4c69-87e0-76ce8117e183","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:06.85100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1281226,"utime":473,"cutime":0,"cstime":0,"stime":533,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c50c992-6b27-4817-8b53-3f60cc43ff71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:12.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1013,"total_pss":29586,"rss":83724,"native_total_heap":26296,"native_free_heap":2825,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d47d6d5-de9d-404c-86e0-1ba5d9efe602","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:38.66400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":234,"total_pss":31407,"rss":85400,"native_total_heap":26296,"native_free_heap":2717,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"349197c6-90bf-4511-87dc-7f6b1c4f5530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:00.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":209,"total_pss":31399,"rss":85804,"native_total_heap":26296,"native_free_heap":2737,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"360484c3-c0d9-4f91-a11e-72157c1ed7fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.67200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272404,"end_time":1272420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42ce2f32-f320-4199-8a6e-c87a0f9f34b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":146,"total_pss":31381,"rss":86444,"native_total_heap":26296,"native_free_heap":2681,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"493e23a8-8605-4a80-918a-8f6507c1380d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1290228,"utime":478,"cutime":0,"cstime":0,"stime":537,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54118fde-7747-48ad-9d1d-96a00a7da2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:23.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4065,"total_pss":28636,"rss":84560,"native_total_heap":26296,"native_free_heap":3365,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54a7925c-8011-416d-9641-57b76e8c6d7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:17.85200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1945,"total_pss":30275,"rss":84068,"native_total_heap":26296,"native_free_heap":2976,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56220b8c-58ce-4efa-87dc-37edc6b9acf2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.37900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1296227,"utime":482,"cutime":0,"cstime":0,"stime":541,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64ad21ac-e5df-4e9a-967a-7e20398d2de4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:21.60800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4137,"total_pss":28572,"rss":84264,"native_total_heap":26296,"native_free_heap":3402,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"663d2eae-9e6b-4ec4-95ef-c76691231639","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":925,"total_pss":29639,"rss":83748,"native_total_heap":26296,"native_free_heap":2789,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a6da2ce-b220-4d5c-b9ee-05dec2736130","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1278227,"utime":473,"cutime":0,"cstime":0,"stime":531,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b045771-2935-4a97-9f2a-87cf99e74c8f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.86200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2209,"total_pss":31085,"rss":84452,"native_total_heap":26296,"native_free_heap":3077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b9bfd6b-1f8b-46f4-a6dc-7a24fd6a9e85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:37.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1263227,"utime":468,"cutime":0,"cstime":0,"stime":523,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76f11aeb-fc33-4f2b-baba-e4f49c8db92a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:01.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3141,"total_pss":27685,"rss":82348,"native_total_heap":26296,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"772fa0ad-a50f-495a-9143-459f78e0d3c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1997,"total_pss":30248,"rss":84068,"native_total_heap":26296,"native_free_heap":2992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f88e6ae-383b-40b0-9a70-5faeba1ff925","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:05.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3033,"total_pss":26591,"rss":78312,"native_total_heap":26296,"native_free_heap":3198,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fa7eae8-2d87-4308-b08d-ca6e692ab45f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:00.48000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1275228,"utime":472,"cutime":0,"cstime":0,"stime":530,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84804f2c-0f87-4dda-9b84-0c2dc83571f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:11.38100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1299229,"utime":482,"cutime":0,"cstime":0,"stime":542,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d46f4f9-063f-446a-ac8e-18b259d2efc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:12.85300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1287228,"utime":477,"cutime":0,"cstime":0,"stime":536,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9949aff6-ced9-4890-8c17-6908eebf16e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1137,"total_pss":29796,"rss":83892,"native_total_heap":26296,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9aec42aa-a523-4a62-8c06-89db55d4466f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:13.03800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":27982,"rss":82236,"native_total_heap":26296,"native_free_heap":3391,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a033f7ae-c599-4918-b334-5bac9679d76d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.86600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262425,"end_time":1262429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a20e4a69-66f4-42c5-bdda-862255cef4c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.61200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1266231,"utime":469,"cutime":0,"cstime":0,"stime":524,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9c5ad0f-4338-482e-bb0f-f6056291f356","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3069,"total_pss":27781,"rss":81712,"native_total_heap":26296,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa6dbb75-bfea-4cf0-b127-06d153b20aa7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:01.16700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1305230,"utime":485,"cutime":0,"cstime":0,"stime":544,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad1dea31-532f-449a-be23-75ddb19fba8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:07.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2929,"total_pss":28300,"rss":80364,"native_total_heap":26296,"native_free_heap":3162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b655092c-6dcf-40a4-b4ca-48561dbc348a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.57400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302419,"end_time":1302423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b742b2a4-8032-4e41-95b6-e9bd84114dfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:19.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1225,"total_pss":30884,"rss":84736,"native_total_heap":26296,"native_free_heap":2909,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb617c07-7dda-4249-80f4-4044d7636915","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:14.04000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1311228,"utime":488,"cutime":0,"cstime":0,"stime":546,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb8d3856-f2bf-4c52-bea8-c068de59dbba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:59.47800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3245,"total_pss":26592,"rss":82452,"native_total_heap":26296,"native_free_heap":3282,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4b1385e-d73d-4adb-86fa-719798c0cfab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.04600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282404,"end_time":1282421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c63d6816-1981-4a14-bbee-8ddc249f19e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1308227,"utime":487,"cutime":0,"cstime":0,"stime":546,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf260368-e617-455e-81c7-ef51c678d39b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:11.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2157,"total_pss":30853,"rss":84480,"native_total_heap":26296,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf3bfded-8e3e-4dce-87f2-0cb6dce8c2da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4230,"total_pss":27954,"rss":82236,"native_total_heap":26296,"native_free_heap":3407,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d23ed098-7ccc-4967-9bc9-d65d247c4bbe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3977,"total_pss":26236,"rss":81980,"native_total_heap":26296,"native_free_heap":3334,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcc43366-887b-40fe-8df3-ed3dc3380224","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.56500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302399,"end_time":1302413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e438f26c-42b5-4e88-bace-25d70a324213","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1272226,"utime":471,"cutime":0,"cstime":0,"stime":528,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e572eaa8-fe59-4bab-b36b-19c3eb34b48b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:10.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1085,"total_pss":28407,"rss":82740,"native_total_heap":26296,"native_free_heap":2857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebb9bc40-6a61-423c-a7e1-53c9ae773b7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:13.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2069,"total_pss":30715,"rss":84480,"native_total_heap":26296,"native_free_heap":3029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed9cdda9-ba4e-4a9b-b536-dd8f16c149b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.04200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292414,"end_time":1292417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaba9ac-b222-4e0c-b35c-50a61bf73731","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.37900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1302228,"utime":483,"cutime":0,"cstime":0,"stime":543,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0875844-d586-4916-b256-ce22e6cf4220","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:22.60900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1269228,"utime":471,"cutime":0,"cstime":0,"stime":527,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bba3d3-f8a0-4c2d-9ca4-8b2a3594a531","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.85400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1284229,"utime":475,"cutime":0,"cstime":0,"stime":535,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"00d72490-2ea5-4ce9-99bb-d9a824274867","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:02.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":137,"total_pss":30417,"rss":83472,"native_total_heap":26296,"native_free_heap":2705,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06e76b3c-1908-43e5-95a8-81c76ad1a70b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.68400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272426,"end_time":1272432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07f5899a-bb54-4f81-a15d-6f8baa5001fe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.05700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282429,"end_time":1282432,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e5d240f-c24f-4e1b-bd91-5bce272ce5d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.85400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1293229,"utime":481,"cutime":0,"cstime":0,"stime":539,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ecfbbbe-a5c1-4f21-8a8c-7c22e3c41960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.03300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292399,"end_time":1292408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2801c4c3-caf5-4c69-87e0-76ce8117e183","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:06.85100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1281226,"utime":473,"cutime":0,"cstime":0,"stime":533,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c50c992-6b27-4817-8b53-3f60cc43ff71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:12.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1013,"total_pss":29586,"rss":83724,"native_total_heap":26296,"native_free_heap":2825,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d47d6d5-de9d-404c-86e0-1ba5d9efe602","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:38.66400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":234,"total_pss":31407,"rss":85400,"native_total_heap":26296,"native_free_heap":2717,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"349197c6-90bf-4511-87dc-7f6b1c4f5530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:00.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":209,"total_pss":31399,"rss":85804,"native_total_heap":26296,"native_free_heap":2737,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"360484c3-c0d9-4f91-a11e-72157c1ed7fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.67200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1272404,"end_time":1272420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42ce2f32-f320-4199-8a6e-c87a0f9f34b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":146,"total_pss":31381,"rss":86444,"native_total_heap":26296,"native_free_heap":2681,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"493e23a8-8605-4a80-918a-8f6507c1380d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1290228,"utime":478,"cutime":0,"cstime":0,"stime":537,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54118fde-7747-48ad-9d1d-96a00a7da2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:23.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4065,"total_pss":28636,"rss":84560,"native_total_heap":26296,"native_free_heap":3365,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54a7925c-8011-416d-9641-57b76e8c6d7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:17.85200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1945,"total_pss":30275,"rss":84068,"native_total_heap":26296,"native_free_heap":2976,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56220b8c-58ce-4efa-87dc-37edc6b9acf2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.37900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1296227,"utime":482,"cutime":0,"cstime":0,"stime":541,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64ad21ac-e5df-4e9a-967a-7e20398d2de4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:21.60800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4137,"total_pss":28572,"rss":84264,"native_total_heap":26296,"native_free_heap":3402,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"663d2eae-9e6b-4ec4-95ef-c76691231639","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":925,"total_pss":29639,"rss":83748,"native_total_heap":26296,"native_free_heap":2789,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a6da2ce-b220-4d5c-b9ee-05dec2736130","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1278227,"utime":473,"cutime":0,"cstime":0,"stime":531,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b045771-2935-4a97-9f2a-87cf99e74c8f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.86200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2209,"total_pss":31085,"rss":84452,"native_total_heap":26296,"native_free_heap":3077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b9bfd6b-1f8b-46f4-a6dc-7a24fd6a9e85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:37.66500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1263227,"utime":468,"cutime":0,"cstime":0,"stime":523,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"76f11aeb-fc33-4f2b-baba-e4f49c8db92a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:01.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3141,"total_pss":27685,"rss":82348,"native_total_heap":26296,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"772fa0ad-a50f-495a-9143-459f78e0d3c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:15.85600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1997,"total_pss":30248,"rss":84068,"native_total_heap":26296,"native_free_heap":2992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f88e6ae-383b-40b0-9a70-5faeba1ff925","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:05.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3033,"total_pss":26591,"rss":78312,"native_total_heap":26296,"native_free_heap":3198,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fa7eae8-2d87-4308-b08d-ca6e692ab45f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:17:00.48000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1275228,"utime":472,"cutime":0,"cstime":0,"stime":530,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84804f2c-0f87-4dda-9b84-0c2dc83571f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:11.38100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1299229,"utime":482,"cutime":0,"cstime":0,"stime":542,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d46f4f9-063f-446a-ac8e-18b259d2efc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:12.85300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1287228,"utime":477,"cutime":0,"cstime":0,"stime":536,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9949aff6-ced9-4890-8c17-6908eebf16e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:08.38000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1137,"total_pss":29796,"rss":83892,"native_total_heap":26296,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9aec42aa-a523-4a62-8c06-89db55d4466f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:13.03800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":27982,"rss":82236,"native_total_heap":26296,"native_free_heap":3391,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a033f7ae-c599-4918-b334-5bac9679d76d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.86600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262425,"end_time":1262429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a20e4a69-66f4-42c5-bdda-862255cef4c3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:19.61200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1266231,"utime":469,"cutime":0,"cstime":0,"stime":524,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9c5ad0f-4338-482e-bb0f-f6056291f356","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:03.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3069,"total_pss":27781,"rss":81712,"native_total_heap":26296,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa6dbb75-bfea-4cf0-b127-06d153b20aa7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:01.16700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1305230,"utime":485,"cutime":0,"cstime":0,"stime":544,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad1dea31-532f-449a-be23-75ddb19fba8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:07.85300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2929,"total_pss":28300,"rss":80364,"native_total_heap":26296,"native_free_heap":3162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b655092c-6dcf-40a4-b4ca-48561dbc348a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.57400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302419,"end_time":1302423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b742b2a4-8032-4e41-95b6-e9bd84114dfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:19.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1225,"total_pss":30884,"rss":84736,"native_total_heap":26296,"native_free_heap":2909,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb617c07-7dda-4249-80f4-4044d7636915","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:14.04000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1311228,"utime":488,"cutime":0,"cstime":0,"stime":546,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb8d3856-f2bf-4c52-bea8-c068de59dbba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:59.47800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3245,"total_pss":26592,"rss":82452,"native_total_heap":26296,"native_free_heap":3282,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4b1385e-d73d-4adb-86fa-719798c0cfab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:08.04600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1282404,"end_time":1282421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c63d6816-1981-4a14-bbee-8ddc249f19e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1308227,"utime":487,"cutime":0,"cstime":0,"stime":546,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf260368-e617-455e-81c7-ef51c678d39b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:11.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2157,"total_pss":30853,"rss":84480,"native_total_heap":26296,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf3bfded-8e3e-4dce-87f2-0cb6dce8c2da","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:40:04.16300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4230,"total_pss":27954,"rss":82236,"native_total_heap":26296,"native_free_heap":3407,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d23ed098-7ccc-4967-9bc9-d65d247c4bbe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3977,"total_pss":26236,"rss":81980,"native_total_heap":26296,"native_free_heap":3334,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcc43366-887b-40fe-8df3-ed3dc3380224","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.56500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1302399,"end_time":1302413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e438f26c-42b5-4e88-bace-25d70a324213","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:16:57.47800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1272226,"utime":471,"cutime":0,"cstime":0,"stime":528,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e572eaa8-fe59-4bab-b36b-19c3eb34b48b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:10.37800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1085,"total_pss":28407,"rss":82740,"native_total_heap":26296,"native_free_heap":2857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebb9bc40-6a61-423c-a7e1-53c9ae773b7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:13.85100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2069,"total_pss":30715,"rss":84480,"native_total_heap":26296,"native_free_heap":3029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed9cdda9-ba4e-4a9b-b536-dd8f16c149b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:18.04200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1292414,"end_time":1292417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaba9ac-b222-4e0c-b35c-50a61bf73731","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:22:14.37900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1302228,"utime":483,"cutime":0,"cstime":0,"stime":543,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0875844-d586-4916-b256-ce22e6cf4220","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:00:22.60900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1269228,"utime":471,"cutime":0,"cstime":0,"stime":527,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bba3d3-f8a0-4c2d-9ca4-8b2a3594a531","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:18:09.85400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1284229,"utime":475,"cutime":0,"cstime":0,"stime":535,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json b/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json index 0a812c702..0a7caf8f6 100644 --- a/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json +++ b/self-host/session-data/sh.measure.sample/1.0/251d679a-6a8b-42a5-aa2c-066f155d1017.json @@ -1 +1 @@ -[{"id":"0c3b5384-c8de-44f9-90d7-0755bd2f8f6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":144,"total_pss":35813,"rss":107600,"native_total_heap":25528,"native_free_heap":2695,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c818264-8a9d-41f8-94d5-2b651e52cc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":684227,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e25bf70-6cd1-4315-9d21-3363bc0a4d3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712424,"end_time":712434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12ec620d-dc2e-4fdb-a71c-54adbd3d26d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:35.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":304,"total_pss":35677,"rss":107592,"native_total_heap":25528,"native_free_heap":2764,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"197d960d-4f8f-468c-8161-9f87bf95a219","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1336,"total_pss":33949,"rss":105464,"native_total_heap":25528,"native_free_heap":2951,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1df235a4-f1aa-478e-b716-17ce643be831","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2145,"total_pss":34291,"rss":106092,"native_total_heap":25528,"native_free_heap":3088,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e7f5eda-13e4-4ded-8e94-b858286555dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":690229,"utime":150,"cutime":0,"cstime":0,"stime":170,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26f46270-e7f0-4778-9f7f-6fd685940d44","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2300,"total_pss":33234,"rss":104020,"native_total_heap":25528,"native_free_heap":3107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f2c3a1b-dfcb-4eeb-bbf9-f758447113b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":723227,"utime":178,"cutime":0,"cstime":0,"stime":198,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a8f5bc6-e7f1-4bf1-8ed9-2387efa8d3cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3217,"total_pss":33405,"rss":105008,"native_total_heap":25528,"native_free_heap":3292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b00bff1-9468-4e44-b2a8-662af51d8eb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712403,"end_time":712418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"438c961a-50c4-441a-bc97-bc1dc2be31b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702413,"end_time":702422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44071cde-7ba6-4ba1-aafd-74f8149d5621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692401,"end_time":692422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44976875-769c-41c4-b0da-16ce225355ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":720228,"utime":174,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d785677-4bb5-40a8-8f4f-45e9f53fa147","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:19.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2196,"total_pss":33161,"rss":104232,"native_total_heap":25528,"native_free_heap":3071,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5509b232-3911-42d3-a2f5-50dbe587f13c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.40000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692444,"end_time":692452,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5698d1a7-6a19-4dd1-886e-c807aaa2cd0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3005,"total_pss":33533,"rss":105476,"native_total_heap":25528,"native_free_heap":3208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592ed2d6-aa33-4941-a43d-5df23f38c4ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":699227,"utime":156,"cutime":0,"cstime":0,"stime":177,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68726e4c-87ea-4921-9a20-e5b74807d893","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":726228,"utime":179,"cutime":0,"cstime":0,"stime":200,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7921b550-c236-4879-84bc-224312fd6a53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":711228,"utime":167,"cutime":0,"cstime":0,"stime":188,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ed3e23f-3b62-487c-8442-785bce152f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":714228,"utime":171,"cutime":0,"cstime":0,"stime":189,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81b7a5e4-f07f-4235-99ef-8bdfa7bf6b11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4053,"total_pss":32697,"rss":104376,"native_total_heap":25528,"native_free_heap":3394,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8221d3cb-8165-4892-8510-0b416f8b3f57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2124,"total_pss":33208,"rss":104232,"native_total_heap":25528,"native_free_heap":3039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8273e68f-ac99-48c1-bf74-0f8a175e5d8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":696229,"utime":156,"cutime":0,"cstime":0,"stime":175,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86e48f17-c40f-45d4-b7a5-623710d9e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2088,"total_pss":33231,"rss":104232,"native_total_heap":25528,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b742af1-6a71-43cb-86c3-3b392d7bd6f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722400,"end_time":722420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b76cb16-5c8d-44e4-97be-254d97914489","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3057,"total_pss":33509,"rss":105224,"native_total_heap":25528,"native_free_heap":3224,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9215a9-e92c-4de4-81d7-0d1541fc808e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":232,"total_pss":35733,"rss":107600,"native_total_heap":25528,"native_free_heap":2732,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ade6f9d-cd4d-49fe-809b-fcc14a5a6ac9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2336,"total_pss":33898,"rss":104020,"native_total_heap":25528,"native_free_heap":3124,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a63d8d99-17af-42ae-bb65-1389b2f08d97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":687227,"utime":148,"cutime":0,"cstime":0,"stime":170,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6c0dbcc-1a85-4cf6-b774-bdcd984f0e1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:36.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":705230,"utime":163,"cutime":0,"cstime":0,"stime":183,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b866e831-60ba-4a11-ac75-ccb898a3e6f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1020,"total_pss":35677,"rss":107452,"native_total_heap":25528,"native_free_heap":2833,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc399567-a650-43ce-9ba5-70bd690060e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1108,"total_pss":35625,"rss":107452,"native_total_heap":25528,"native_free_heap":2865,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf539aef-e4a2-4f5d-9c39-9ff69d963877","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2197,"total_pss":34273,"rss":106092,"native_total_heap":25528,"native_free_heap":3105,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf9c38a8-690e-4727-be8d-f790238c9df6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1232,"total_pss":35556,"rss":107228,"native_total_heap":25528,"native_free_heap":2918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1a13d04-4fec-45c3-8506-6c515629f2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3253,"total_pss":33381,"rss":105008,"native_total_heap":25528,"native_free_heap":3308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c22bb48f-c52f-4868-85df-207574edea6b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3072,"total_pss":33232,"rss":103416,"native_total_heap":25528,"native_free_heap":3209,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4057041-8bd5-4377-bebb-c268bca2a0e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1180,"total_pss":35584,"rss":107228,"native_total_heap":25528,"native_free_heap":2902,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6af38be-a09d-46d1-bfa8-842e13bf6f66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":708227,"utime":164,"cutime":0,"cstime":0,"stime":184,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca3a506c-914e-4b1b-8bb7-0486022e7c5e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.38800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722429,"end_time":722440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce52f433-9347-4ae7-ae35-ffc5500a0ffb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":693227,"utime":154,"cutime":0,"cstime":0,"stime":173,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d931f7ea-d59d-450a-a5b4-c11fbfdf531c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682399,"end_time":682424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e692b45d-2147-4415-a9c5-b9f236f49fc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4141,"total_pss":32633,"rss":104376,"native_total_heap":25528,"native_free_heap":3412,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8a1ef5b-e09a-449f-ada6-d936b2725726","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":717227,"utime":172,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e90ccd04-fd94-41e6-b2c0-b889bbf8217e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":702227,"utime":157,"cutime":0,"cstime":0,"stime":179,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef05da29-81d6-4cc3-acf3-aad5f44afdad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702396,"end_time":702409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0bc8dc2-54d5-497c-a9d4-aa46c17e01a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2269,"total_pss":34217,"rss":106092,"native_total_heap":25528,"native_free_heap":3141,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f308f1a7-4970-489a-b459-31ec5775732f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3129,"total_pss":33457,"rss":105224,"native_total_heap":25528,"native_free_heap":3260,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7ebd77-1c59-4d80-8074-da58714bd43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":729227,"utime":181,"cutime":0,"cstime":0,"stime":203,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdfcf677-dd3b-485b-81b9-b7b53f2f9eb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.39500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682437,"end_time":682447,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0c3b5384-c8de-44f9-90d7-0755bd2f8f6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":144,"total_pss":35813,"rss":107600,"native_total_heap":25528,"native_free_heap":2695,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c818264-8a9d-41f8-94d5-2b651e52cc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":684227,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e25bf70-6cd1-4315-9d21-3363bc0a4d3b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712424,"end_time":712434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"12ec620d-dc2e-4fdb-a71c-54adbd3d26d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:35.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":304,"total_pss":35677,"rss":107592,"native_total_heap":25528,"native_free_heap":2764,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"197d960d-4f8f-468c-8161-9f87bf95a219","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1336,"total_pss":33949,"rss":105464,"native_total_heap":25528,"native_free_heap":2951,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1df235a4-f1aa-478e-b716-17ce643be831","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2145,"total_pss":34291,"rss":106092,"native_total_heap":25528,"native_free_heap":3088,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e7f5eda-13e4-4ded-8e94-b858286555dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":690229,"utime":150,"cutime":0,"cstime":0,"stime":170,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26f46270-e7f0-4778-9f7f-6fd685940d44","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2300,"total_pss":33234,"rss":104020,"native_total_heap":25528,"native_free_heap":3107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f2c3a1b-dfcb-4eeb-bbf9-f758447113b2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:54.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":723227,"utime":178,"cutime":0,"cstime":0,"stime":198,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a8f5bc6-e7f1-4bf1-8ed9-2387efa8d3cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3217,"total_pss":33405,"rss":105008,"native_total_heap":25528,"native_free_heap":3292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b00bff1-9468-4e44-b2a8-662af51d8eb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":712403,"end_time":712418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"438c961a-50c4-441a-bc97-bc1dc2be31b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702413,"end_time":702422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44071cde-7ba6-4ba1-aafd-74f8149d5621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692401,"end_time":692422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44976875-769c-41c4-b0da-16ce225355ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":720228,"utime":174,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d785677-4bb5-40a8-8f4f-45e9f53fa147","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:19.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2196,"total_pss":33161,"rss":104232,"native_total_heap":25528,"native_free_heap":3071,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5509b232-3911-42d3-a2f5-50dbe587f13c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.40000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":692444,"end_time":692452,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5698d1a7-6a19-4dd1-886e-c807aaa2cd0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3005,"total_pss":33533,"rss":105476,"native_total_heap":25528,"native_free_heap":3208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592ed2d6-aa33-4941-a43d-5df23f38c4ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:30.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":699227,"utime":156,"cutime":0,"cstime":0,"stime":177,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68726e4c-87ea-4921-9a20-e5b74807d893","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":726228,"utime":179,"cutime":0,"cstime":0,"stime":200,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7921b550-c236-4879-84bc-224312fd6a53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:42.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":711228,"utime":167,"cutime":0,"cstime":0,"stime":188,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ed3e23f-3b62-487c-8442-785bce152f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":714228,"utime":171,"cutime":0,"cstime":0,"stime":189,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81b7a5e4-f07f-4235-99ef-8bdfa7bf6b11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4053,"total_pss":32697,"rss":104376,"native_total_heap":25528,"native_free_heap":3394,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8221d3cb-8165-4892-8510-0b416f8b3f57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:21.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2124,"total_pss":33208,"rss":104232,"native_total_heap":25528,"native_free_heap":3039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8273e68f-ac99-48c1-bf74-0f8a175e5d8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":696229,"utime":156,"cutime":0,"cstime":0,"stime":175,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86e48f17-c40f-45d4-b7a5-623710d9e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2088,"total_pss":33231,"rss":104232,"native_total_heap":25528,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b742af1-6a71-43cb-86c3-3b392d7bd6f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722400,"end_time":722420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b76cb16-5c8d-44e4-97be-254d97914489","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:51.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3057,"total_pss":33509,"rss":105224,"native_total_heap":25528,"native_free_heap":3224,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d9215a9-e92c-4de4-81d7-0d1541fc808e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":232,"total_pss":35733,"rss":107600,"native_total_heap":25528,"native_free_heap":2732,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ade6f9d-cd4d-49fe-809b-fcc14a5a6ac9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2336,"total_pss":33898,"rss":104020,"native_total_heap":25528,"native_free_heap":3124,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a63d8d99-17af-42ae-bb65-1389b2f08d97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:18.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":687227,"utime":148,"cutime":0,"cstime":0,"stime":170,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6c0dbcc-1a85-4cf6-b774-bdcd984f0e1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:36.17800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":705230,"utime":163,"cutime":0,"cstime":0,"stime":183,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b866e831-60ba-4a11-ac75-ccb898a3e6f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1020,"total_pss":35677,"rss":107452,"native_total_heap":25528,"native_free_heap":2833,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc399567-a650-43ce-9ba5-70bd690060e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1108,"total_pss":35625,"rss":107452,"native_total_heap":25528,"native_free_heap":2865,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf539aef-e4a2-4f5d-9c39-9ff69d963877","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2197,"total_pss":34273,"rss":106092,"native_total_heap":25528,"native_free_heap":3105,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf9c38a8-690e-4727-be8d-f790238c9df6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:27.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1232,"total_pss":35556,"rss":107228,"native_total_heap":25528,"native_free_heap":2918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1a13d04-4fec-45c3-8506-6c515629f2f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:45.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3253,"total_pss":33381,"rss":105008,"native_total_heap":25528,"native_free_heap":3308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c22bb48f-c52f-4868-85df-207574edea6b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3072,"total_pss":33232,"rss":103416,"native_total_heap":25528,"native_free_heap":3209,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4057041-8bd5-4377-bebb-c268bca2a0e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1180,"total_pss":35584,"rss":107228,"native_total_heap":25528,"native_free_heap":2902,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6af38be-a09d-46d1-bfa8-842e13bf6f66","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:39.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":708227,"utime":164,"cutime":0,"cstime":0,"stime":184,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca3a506c-914e-4b1b-8bb7-0486022e7c5e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:53.38800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":722429,"end_time":722440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce52f433-9347-4ae7-ae35-ffc5500a0ffb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:24.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":693227,"utime":154,"cutime":0,"cstime":0,"stime":173,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d931f7ea-d59d-450a-a5b4-c11fbfdf531c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682399,"end_time":682424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e692b45d-2147-4415-a9c5-b9f236f49fc0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4141,"total_pss":32633,"rss":104376,"native_total_heap":25528,"native_free_heap":3412,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8a1ef5b-e09a-449f-ada6-d936b2725726","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:48.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":717227,"utime":172,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e90ccd04-fd94-41e6-b2c0-b889bbf8217e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":702227,"utime":157,"cutime":0,"cstime":0,"stime":179,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef05da29-81d6-4cc3-acf3-aad5f44afdad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:33.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":702396,"end_time":702409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0bc8dc2-54d5-497c-a9d4-aa46c17e01a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2269,"total_pss":34217,"rss":106092,"native_total_heap":25528,"native_free_heap":3141,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f308f1a7-4970-489a-b459-31ec5775732f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3129,"total_pss":33457,"rss":105224,"native_total_heap":25528,"native_free_heap":3260,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7ebd77-1c59-4d80-8074-da58714bd43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:00.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":729227,"utime":181,"cutime":0,"cstime":0,"stime":203,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdfcf677-dd3b-485b-81b9-b7b53f2f9eb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:13.39500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":682437,"end_time":682447,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json b/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json index af4c428df..68a107ef3 100644 --- a/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json +++ b/self-host/session-data/sh.measure.sample/1.0/2560bf44-6af0-45e7-bc79-36e83a08eb38.json @@ -1 +1 @@ -[{"id":"10d49e8c-196a-4304-aeaf-87886024df4e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":853053,"utime":25,"cutime":0,"cstime":0,"stime":8,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1460fa65-abf9-4e13-a270-6255fdb511a4","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:10.82800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5497"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1835d4eb-1759-4204-833f-340af52311b5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":873459,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"31c1e5f8-c5e9-4931-acb6-2319c7192dbf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:24.69700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4411,"total_pss":77424,"rss":165544,"native_total_heap":22524,"native_free_heap":1433,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"3504e00c-4047-467d-8463-a85db0c5a536","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.53100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"466b8078-35c3-4126-a9d2-ce2f76cadadc","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.20500000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a06fdb6-4ddc-4972-9b3f-34fb671fffb0","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.47100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a1a31a2-1825-4e3b-8100-bb9ad452a97e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:20.63100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15495,"java_free_heap":0,"total_pss":84469,"rss":175956,"native_total_heap":22524,"native_free_heap":1025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4b21fca4-76b5-4bde-a1a3-67a3c2acbf44","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.45700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"54649b74-4273-4c7c-9e5c-7ca54da53ae5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.72100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4163,"total_pss":77485,"rss":165684,"native_total_heap":22524,"native_free_heap":1346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56316d6c-4d6f-4f49-b33c-7d0a4f27577a","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":187032,"total_pss":56993,"rss":148908,"native_total_heap":12376,"native_free_heap":1273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56763fe3-8b7d-462c-8ea5-6f4b385bc195","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.66900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"59e36443-0f3a-44bc-a3de-47e8b1cef511","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.19300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"654ebc02-e645-4166-837d-4b604fc63dd9","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.87800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":873354,"on_next_draw_uptime":873557,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"6886a776-83cd-43f4-b068-f9d6a5cb4bfd","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.65600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":852465,"process_start_requested_uptime":852299,"content_provider_attach_uptime":852939,"on_next_draw_uptime":853326,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"7ae7abd6-cdf3-4500-9763-8eb5d50be9e5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:18.60000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33744,"total_pss":84407,"rss":175816,"native_total_heap":22524,"native_free_heap":1034,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9241e97c-6193-4c57-a5d4-e100a0c90348","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33780,"total_pss":84364,"rss":175816,"native_total_heap":22524,"native_free_heap":1025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"930e2e67-6feb-4728-93cc-d4977cd4186f","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9b9d8da9-6e43-4873-9f8f-71f7d46a7030","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:19.39500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":862074,"utime":59,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9ccb01ef-620b-45ff-b764-dd0b2a10734b","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:25.40800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":868088,"utime":67,"cutime":0,"cstime":0,"stime":29,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"a1118e08-f104-4ffa-b2d8-f67a72359efa","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.66300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4463,"total_pss":77392,"rss":165540,"native_total_heap":22524,"native_free_heap":1449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ac1155ab-4ae2-4524-90fd-c7663dc48aec","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:07.23700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8967,"java_free_heap":674,"total_pss":90375,"rss":177848,"native_total_heap":33284,"native_free_heap":1372,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"c34b91e5-5629-4715-816c-6d15d9f4d2a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.39900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":865078,"utime":62,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cbf0304a-5768-4739-8529-ba04c9207a1d","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:12.52600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33977,"total_pss":83687,"rss":174576,"native_total_heap":22524,"native_free_heap":1062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cf8bcf59-2f63-4fe2-9d5f-ebe1e119d2bf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.79400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"d013a232-0e5a-46ea-b1a7-c7d178225765","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:13.37800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":856058,"utime":52,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ea44eb24-749b-406a-941c-f115a5368c84","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:14.54100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33889,"total_pss":83741,"rss":174908,"native_total_heap":22524,"native_free_heap":1054,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"eb57bc3f-19b9-46d2-9e10-c3efebb5b302","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.38700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":85231,"uptime":859066,"utime":57,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"f9309c28-19f0-4c88-a975-051dec7c99a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.52800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"fa73d224-db06-42ff-886f-e986273e5182","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file +[{"id":"10d49e8c-196a-4304-aeaf-87886024df4e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":85231,"uptime":853053,"utime":25,"cutime":0,"cstime":0,"stime":8,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1460fa65-abf9-4e13-a270-6255fdb511a4","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:10.82800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5497"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"1835d4eb-1759-4204-833f-340af52311b5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":85231,"uptime":873459,"utime":78,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"31c1e5f8-c5e9-4931-acb6-2319c7192dbf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:24.69700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4411,"total_pss":77424,"rss":165544,"native_total_heap":22524,"native_free_heap":1433,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"3504e00c-4047-467d-8463-a85db0c5a536","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.53100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"466b8078-35c3-4126-a9d2-ce2f76cadadc","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.20500000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a06fdb6-4ddc-4972-9b3f-34fb671fffb0","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.47100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4a1a31a2-1825-4e3b-8100-bb9ad452a97e","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:20.63100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15495,"java_free_heap":0,"total_pss":84469,"rss":175956,"native_total_heap":22524,"native_free_heap":1025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4b21fca4-76b5-4bde-a1a3-67a3c2acbf44","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.45700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"54649b74-4273-4c7c-9e5c-7ca54da53ae5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:26.72100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4163,"total_pss":77485,"rss":165684,"native_total_heap":22524,"native_free_heap":1346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56316d6c-4d6f-4f49-b33c-7d0a4f27577a","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.37400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":187032,"total_pss":56993,"rss":148908,"native_total_heap":12376,"native_free_heap":1273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"56763fe3-8b7d-462c-8ea5-6f4b385bc195","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.66900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"59e36443-0f3a-44bc-a3de-47e8b1cef511","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.19300000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"654ebc02-e645-4166-837d-4b604fc63dd9","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.87800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":873354,"on_next_draw_uptime":873557,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"6886a776-83cd-43f4-b068-f9d6a5cb4bfd","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.65600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":852465,"process_start_requested_uptime":852299,"content_provider_attach_uptime":852939,"on_next_draw_uptime":853326,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"7ae7abd6-cdf3-4500-9763-8eb5d50be9e5","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:18.60000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33744,"total_pss":84407,"rss":175816,"native_total_heap":22524,"native_free_heap":1034,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9241e97c-6193-4c57-a5d4-e100a0c90348","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33780,"total_pss":84364,"rss":175816,"native_total_heap":22524,"native_free_heap":1025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"930e2e67-6feb-4728-93cc-d4977cd4186f","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.77700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9b9d8da9-6e43-4873-9f8f-71f7d46a7030","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:19.39500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":85231,"uptime":862074,"utime":59,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"9ccb01ef-620b-45ff-b764-dd0b2a10734b","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:25.40800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":85231,"uptime":868088,"utime":67,"cutime":0,"cstime":0,"stime":29,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"a1118e08-f104-4ffa-b2d8-f67a72359efa","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.66300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9062,"java_free_heap":4463,"total_pss":77392,"rss":165540,"native_total_heap":22524,"native_free_heap":1449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ac1155ab-4ae2-4524-90fd-c7663dc48aec","session_id":"610f1ab1-ba99-4c67-bf8d-2b9086a2bd7f","timestamp":"2024-06-13T13:38:07.23700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8967,"java_free_heap":674,"total_pss":90375,"rss":177848,"native_total_heap":33284,"native_free_heap":1372,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"c34b91e5-5629-4715-816c-6d15d9f4d2a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:22.39900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":85231,"uptime":865078,"utime":62,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cbf0304a-5768-4739-8529-ba04c9207a1d","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:12.52600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33977,"total_pss":83687,"rss":174576,"native_total_heap":22524,"native_free_heap":1062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"cf8bcf59-2f63-4fe2-9d5f-ebe1e119d2bf","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:30.79400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"d013a232-0e5a-46ea-b1a7-c7d178225765","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:13.37800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":85231,"uptime":856058,"utime":52,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"ea44eb24-749b-406a-941c-f115a5368c84","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:14.54100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33889,"total_pss":83741,"rss":174908,"native_total_heap":22524,"native_free_heap":1054,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"eb57bc3f-19b9-46d2-9e10-c3efebb5b302","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:16.38700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":85231,"uptime":859066,"utime":57,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"f9309c28-19f0-4c88-a975-051dec7c99a7","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:10.52800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"fa73d224-db06-42ff-886f-e986273e5182","session_id":"42fcba58-138d-48c9-8684-be6d7901461d","timestamp":"2024-06-13T13:38:27.30500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json b/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json index ce3850004..e1007e1ba 100644 --- a/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json +++ b/self-host/session-data/sh.measure.sample/1.0/25b45a45-20a2-4ed8-b8f5-43148e8ee35e.json @@ -1 +1 @@ -[{"id":"00926847-134e-4014-817c-27245d112ff6","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:15.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5124758,"utime":676,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"02e4674b-5af1-4da7-b8ac-fc8fb33d8435","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.56700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5130063,"utime":54,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0776a2f7-0897-4130-90d2-741c7118906b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.79700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116262,"end_time":5116294,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a25d864-c607-4d14-8e1f-44b91b1fe5fe","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.97900000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5128127,"end_time":5129475,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:34:20 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"148b6929-fa3e-4d9d-9380-c10d9c5cec2d","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:08.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27464,"total_pss":93134,"rss":184640,"native_total_heap":23292,"native_free_heap":1163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21c2f643-b8e3-4ef1-8048-080aab3bffd4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5127088,"utime":17,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"277c9543-b71a-4473-af48-31e21d572927","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a61a915-df6b-4557-bfbe-4dff623af5e8","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:17.93100000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10176_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=19 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000076e9c /system/lib64/libbinder.so (android::IPCThreadState::transact(int, unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+548) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 00000000000769e0 /system/lib64/libbinder.so (android::BpBinder::transact(unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+172) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000d5560 /system/lib64/libgui.so (android::BpSurfaceComposer::setTransactionState(android::FrameTimelineInfo const\u0026, android::Vector\u003candroid::ComposerState\u003e const\u0026, android::Vector\u003candroid::DisplayState\u003e const\u0026, unsigned int, android::sp\u003candroid::IBinder\u003e const\u0026, android::InputWindowCommands const\u0026, long, bool, android::client_cache_t const\u0026, bool, std::__1::vector\u003candroid::ListenerCallbacks, std::__1::allocator\u003candroid::ListenerCallbacks\u003e \u003e const\u0026, unsigned long)+864) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000e11cc /system/lib64/libgui.so (android::SurfaceComposerClient::Transaction::apply(bool, bool)+2000) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000c5268 /system/lib64/libgui.so (android::BLASTBufferQueue::acquireNextBufferLocked(std::__1::optional\u003candroid::SurfaceComposerClient::Transaction*\u003e)+10068) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #07 pc 00000000000f3304 /system/lib64/libgui.so (android::BLASTBufferQueue::onFrameAvailable(android::BufferItem const\u0026)+472) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #08 pc 00000000000a9ae0 /system/lib64/libgui.so (android::ConsumerBase::onFrameAvailable(android::BufferItem const\u0026)+172) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #09 pc 000000000008df88 /system/lib64/libgui.so (android::BufferQueue::ProxyConsumerListener::onFrameAvailable(android::BufferItem const\u0026)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #10 pc 00000000000e72f8 /system/lib64/libgui.so (android::BufferQueueProducer::queueBuffer(int, android::IGraphicBufferProducer::QueueBufferInput const\u0026, android::IGraphicBufferProducer::QueueBufferOutput*)+2200) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #11 pc 000000000012b9c0 /system/lib64/libgui.so (android::Surface::queueBuffer(ANativeWindowBuffer*, int)+1540) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #12 pc 0000000000127c10 /system/lib64/libgui.so (android::Surface::hook_queueBuffer(ANativeWindow*, ANativeWindowBuffer*, int)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #13 pc 000000000000acd4 /vendor/lib64/egl/libEGL_emulation.so (egl_window_surface_t::swapBuffers()+472) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #14 pc 000000000000f524 /vendor/lib64/egl/libEGL_emulation.so (eglSwapBuffers+448) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #15 pc 000000000001fb9c /system/lib64/libEGL.so (android::eglSwapBuffersWithDamageKHRImpl(void*, void*, int*, int)+524) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #16 pc 000000000001c4a8 /system/lib64/libEGL.so (eglSwapBuffersWithDamageKHR+72) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #17 pc 0000000000529984 /system/lib64/libhwui.so (android::uirenderer::skiapipeline::SkiaOpenGLPipeline::swapBuffers(android::uirenderer::renderthread::Frame const\u0026, bool, SkRect const\u0026, android::uirenderer::FrameInfo*, bool*)+244) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #18 pc 0000000000420988 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::draw()+1032) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #19 pc 000000000041ff78 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::prepareAndDraw(android::uirenderer::RenderNode*)+280) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #20 pc 000000000051be64 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::dispatchFrameCallbacks()+156) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #21 pc 000000000057c668 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+644) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #22 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #23 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #24 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=21 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=22 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=23 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"binder:10176_5\" prio=5 tid=28 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10176 -----\n","process_name":"sh.measure.sample","pid":"10176"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e2c20f7-b9ce-47d1-a852-beffdaa2be16","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:21.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25063,"total_pss":94875,"rss":185312,"native_total_heap":24828,"native_free_heap":1452,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"342a7151-80f7-464f-8027-2297e696ff0a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.14300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127606,"end_time":5127639,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ee25a66-92df-46e8-b84d-a2ba62097ce0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137254,"end_time":5137278,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"40a8609b-12d8-40ef-8fd7-af2fef9210fb","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.28900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183782,"total_pss":63383,"rss":158032,"native_total_heap":12376,"native_free_heap":1278,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"435b3cfe-e98c-4bf0-a9ea-a142d0f1f15e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:06.50600000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10135"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43d5852d-7780-442b-9206-7457f469287c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.01200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127443,"end_time":5127508,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44de666b-7798-4dcc-b677-ea6a041dba57","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.56700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5133063,"utime":63,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"470c8c33-1f3a-490e-97fd-146530bb84e8","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127569,"end_time":5127602,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4890105e-999e-4454-8b8f-a9130b324c06","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:10.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27392,"total_pss":93209,"rss":184640,"native_total_heap":23292,"native_free_heap":1119,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dee517a-ea88-4d59-81d6-0414e2987b91","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.60300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"530be7f8-e5d4-4b1d-ae42-7a6d306ba78a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137326,"end_time":5137360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5644d2a2-fbf4-43db-a51d-25ed1f222082","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.98000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":549.9536,"y":1324.8999,"touch_down_time":5130394,"touch_up_time":5130476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"569b08aa-01a6-4176-af9c-3222e904ac49","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:07.43800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_infinite_loop","width":398,"height":132,"x":577.96875,"y":1216.908,"touch_down_time":5116845,"touch_up_time":5116931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59372e03-674a-4142-afb2-50cd62e11078","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27304,"total_pss":93885,"rss":185240,"native_total_heap":23292,"native_free_heap":1148,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dc1b948-b948-473c-8c4b-d102f8942e46","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.93200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137387,"end_time":5137429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f69effc-782e-4d69-986f-e982d0f76b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.82500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5126724,"process_start_requested_uptime":5126623,"content_provider_attach_uptime":5127018,"on_next_draw_uptime":5127321,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e1236ed-387b-4869-90aa-d41a97bb4093","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5121758,"utime":458,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8177760e-7313-4b39-b33d-9c54c7a207a6","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"876bdecc-fc21-457d-8091-269d427eaa69","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.58600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":546.95435,"y":1460.94,"touch_down_time":5128001,"touch_up_time":5128078},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92587b02-8767-4459-a7ab-2f9e4f5ba95b","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c636dbb-3ffd-498c-99a5-bbfbad5e15c5","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":24300,"java_free_heap":0,"total_pss":99105,"rss":191340,"native_total_heap":26620,"native_free_heap":2879,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a312d7ad-f09f-429c-89c1-92bc9a54882a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.06100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127520,"end_time":5127558,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aaec9271-2fe5-4343-b34b-5233bd61ba0c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad241194-3e97-4e4e-b745-d0297e57b0e0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:25.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24923,"total_pss":95587,"rss":185920,"native_total_heap":24828,"native_free_heap":1436,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a7b52f-8519-4606-a0f6-12be3fca42e2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6062492-ab01-4dd2-a57c-274aacd25451","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.64700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8640f17-d75b-4b58-a429-ff1b1babf1b5","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.67600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116125,"end_time":5116172,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9545c0c-85e7-43c6-8ea8-1bee9e6b4b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.17900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127644,"end_time":5127675,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccca3be6-98e6-4160-824c-4be207a9d8b2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.57100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24975,"total_pss":95547,"rss":185920,"native_total_heap":24828,"native_free_heap":1452,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d37ae9dd-60ee-49b5-b8c9-7c867deefd57","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.72200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116178,"end_time":5116219,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3c6e777-8dcc-4da7-9b7a-824a73ebc51b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.50300000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5115343,"process_start_requested_uptime":5115194,"content_provider_attach_uptime":5115704,"on_next_draw_uptime":5115999,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5deeb88-2d33-41a3-b773-b6fa1b72006c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.82400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137295,"end_time":5137321,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d76ffce0-540b-4057-b968-a9550a43bcf2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.61500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dc040ff0-ca59-4153-9bf6-3120b4eae7c3","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116304,"end_time":5116323,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd414050-899c-454f-8fdb-97fd592da7d4","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:14.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27252,"total_pss":94169,"rss":187164,"native_total_heap":25596,"native_free_heap":3243,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddfa33c1-b36b-43eb-9c62-30049efee1cc","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.63700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e043ab2e-0eb5-45fa-934d-0d1fb5309e6e","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183734,"total_pss":63702,"rss":171692,"native_total_heap":21872,"native_free_heap":1299,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5275fff-d53d-4b64-9bc6-4dc8d57bada1","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.96700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137440,"end_time":5137463,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a8988b-67c8-479e-8b5b-fa12e29192cd","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:26.56900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5136066,"utime":65,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb58c908-f66e-4c2d-9876-0441bfa214df","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.76000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116223,"end_time":5116257,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1d2ce6a-3247-444f-9061-6323c0276861","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:09.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5118758,"utime":189,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbb2c897-3dfd-47de-a180-3c293ebdae5d","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25884,"total_pss":96896,"rss":187708,"native_total_heap":24060,"native_free_heap":1171,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"00926847-134e-4014-817c-27245d112ff6","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:15.26200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5124758,"utime":676,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"02e4674b-5af1-4da7-b8ac-fc8fb33d8435","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.56700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5130063,"utime":54,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0776a2f7-0897-4130-90d2-741c7118906b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.79700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116262,"end_time":5116294,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a25d864-c607-4d14-8e1f-44b91b1fe5fe","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.97900000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5128127,"end_time":5129475,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:34:20 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"148b6929-fa3e-4d9d-9380-c10d9c5cec2d","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:08.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27464,"total_pss":93134,"rss":184640,"native_total_heap":23292,"native_free_heap":1163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21c2f643-b8e3-4ef1-8048-080aab3bffd4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.59100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5127088,"utime":17,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"277c9543-b71a-4473-af48-31e21d572927","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a61a915-df6b-4557-bfbe-4dff623af5e8","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:17.93100000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Suspended\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:54)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:37)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda5.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x01beb860\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x04a1f119\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x02bf75de\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10176_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x092303bf\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=19 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000076e9c /system/lib64/libbinder.so (android::IPCThreadState::transact(int, unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+548) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 00000000000769e0 /system/lib64/libbinder.so (android::BpBinder::transact(unsigned int, android::Parcel const\u0026, android::Parcel*, unsigned int)+172) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000d5560 /system/lib64/libgui.so (android::BpSurfaceComposer::setTransactionState(android::FrameTimelineInfo const\u0026, android::Vector\u003candroid::ComposerState\u003e const\u0026, android::Vector\u003candroid::DisplayState\u003e const\u0026, unsigned int, android::sp\u003candroid::IBinder\u003e const\u0026, android::InputWindowCommands const\u0026, long, bool, android::client_cache_t const\u0026, bool, std::__1::vector\u003candroid::ListenerCallbacks, std::__1::allocator\u003candroid::ListenerCallbacks\u003e \u003e const\u0026, unsigned long)+864) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000e11cc /system/lib64/libgui.so (android::SurfaceComposerClient::Transaction::apply(bool, bool)+2000) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000c5268 /system/lib64/libgui.so (android::BLASTBufferQueue::acquireNextBufferLocked(std::__1::optional\u003candroid::SurfaceComposerClient::Transaction*\u003e)+10068) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #07 pc 00000000000f3304 /system/lib64/libgui.so (android::BLASTBufferQueue::onFrameAvailable(android::BufferItem const\u0026)+472) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #08 pc 00000000000a9ae0 /system/lib64/libgui.so (android::ConsumerBase::onFrameAvailable(android::BufferItem const\u0026)+172) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #09 pc 000000000008df88 /system/lib64/libgui.so (android::BufferQueue::ProxyConsumerListener::onFrameAvailable(android::BufferItem const\u0026)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #10 pc 00000000000e72f8 /system/lib64/libgui.so (android::BufferQueueProducer::queueBuffer(int, android::IGraphicBufferProducer::QueueBufferInput const\u0026, android::IGraphicBufferProducer::QueueBufferOutput*)+2200) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #11 pc 000000000012b9c0 /system/lib64/libgui.so (android::Surface::queueBuffer(ANativeWindowBuffer*, int)+1540) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #12 pc 0000000000127c10 /system/lib64/libgui.so (android::Surface::hook_queueBuffer(ANativeWindow*, ANativeWindowBuffer*, int)+92) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #13 pc 000000000000acd4 /vendor/lib64/egl/libEGL_emulation.so (egl_window_surface_t::swapBuffers()+472) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #14 pc 000000000000f524 /vendor/lib64/egl/libEGL_emulation.so (eglSwapBuffers+448) (BuildId: 01d06ed28f3e61881aecee6e352da587)\n native: #15 pc 000000000001fb9c /system/lib64/libEGL.so (android::eglSwapBuffersWithDamageKHRImpl(void*, void*, int*, int)+524) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #16 pc 000000000001c4a8 /system/lib64/libEGL.so (eglSwapBuffersWithDamageKHR+72) (BuildId: f7b27cec8464273f3f930678324abd0d)\n native: #17 pc 0000000000529984 /system/lib64/libhwui.so (android::uirenderer::skiapipeline::SkiaOpenGLPipeline::swapBuffers(android::uirenderer::renderthread::Frame const\u0026, bool, SkRect const\u0026, android::uirenderer::FrameInfo*, bool*)+244) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #18 pc 0000000000420988 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::draw()+1032) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #19 pc 000000000041ff78 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::prepareAndDraw(android::uirenderer::RenderNode*)+280) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #20 pc 000000000051be64 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::dispatchFrameCallbacks()+156) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #21 pc 000000000057c668 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+644) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #22 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #23 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #24 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=21 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=22 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=23 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"binder:10176_5\" prio=5 tid=28 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10176_3\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10176 -----\n","process_name":"sh.measure.sample","pid":"10176"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e2c20f7-b9ce-47d1-a852-beffdaa2be16","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:21.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25063,"total_pss":94875,"rss":185312,"native_total_heap":24828,"native_free_heap":1452,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"342a7151-80f7-464f-8027-2297e696ff0a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.14300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127606,"end_time":5127639,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ee25a66-92df-46e8-b84d-a2ba62097ce0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137254,"end_time":5137278,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"40a8609b-12d8-40ef-8fd7-af2fef9210fb","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.28900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183782,"total_pss":63383,"rss":158032,"native_total_heap":12376,"native_free_heap":1278,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"435b3cfe-e98c-4bf0-a9ea-a142d0f1f15e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:06.50600000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10135"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43d5852d-7780-442b-9206-7457f469287c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.01200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127443,"end_time":5127508,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44de666b-7798-4dcc-b677-ea6a041dba57","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.56700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5133063,"utime":63,"cutime":0,"cstime":0,"stime":24,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"470c8c33-1f3a-490e-97fd-146530bb84e8","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127569,"end_time":5127602,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4890105e-999e-4454-8b8f-a9130b324c06","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:10.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27392,"total_pss":93209,"rss":184640,"native_total_heap":23292,"native_free_heap":1119,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dee517a-ea88-4d59-81d6-0414e2987b91","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.60300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"530be7f8-e5d4-4b1d-ae42-7a6d306ba78a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137326,"end_time":5137360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5644d2a2-fbf4-43db-a51d-25ed1f222082","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.98000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":549.9536,"y":1324.8999,"touch_down_time":5130394,"touch_up_time":5130476},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"569b08aa-01a6-4176-af9c-3222e904ac49","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:07.43800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_infinite_loop","width":398,"height":132,"x":577.96875,"y":1216.908,"touch_down_time":5116845,"touch_up_time":5116931},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59372e03-674a-4142-afb2-50cd62e11078","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27304,"total_pss":93885,"rss":185240,"native_total_heap":23292,"native_free_heap":1148,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dc1b948-b948-473c-8c4b-d102f8942e46","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.93200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137387,"end_time":5137429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f69effc-782e-4d69-986f-e982d0f76b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.82500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5126724,"process_start_requested_uptime":5126623,"content_provider_attach_uptime":5127018,"on_next_draw_uptime":5127321,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e1236ed-387b-4869-90aa-d41a97bb4093","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:12.26200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5121758,"utime":458,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8177760e-7313-4b39-b33d-9c54c7a207a6","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"876bdecc-fc21-457d-8091-269d427eaa69","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.58600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":546.95435,"y":1460.94,"touch_down_time":5128001,"touch_up_time":5128078},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92587b02-8767-4459-a7ab-2f9e4f5ba95b","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c636dbb-3ffd-498c-99a5-bbfbad5e15c5","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":24300,"java_free_heap":0,"total_pss":99105,"rss":191340,"native_total_heap":26620,"native_free_heap":2879,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a312d7ad-f09f-429c-89c1-92bc9a54882a","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.06100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127520,"end_time":5127558,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aaec9271-2fe5-4343-b34b-5233bd61ba0c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:20.04000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad241194-3e97-4e4e-b745-d0297e57b0e0","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:25.56800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24923,"total_pss":95587,"rss":185920,"native_total_heap":24828,"native_free_heap":1436,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a7b52f-8519-4606-a0f6-12be3fca42e2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.74000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6062492-ab01-4dd2-a57c-274aacd25451","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.64700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8640f17-d75b-4b58-a429-ff1b1babf1b5","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.67600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116125,"end_time":5116172,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9545c0c-85e7-43c6-8ea8-1bee9e6b4b33","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.17900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5127644,"end_time":5127675,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccca3be6-98e6-4160-824c-4be207a9d8b2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:23.57100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":24975,"total_pss":95547,"rss":185920,"native_total_heap":24828,"native_free_heap":1452,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d37ae9dd-60ee-49b5-b8c9-7c867deefd57","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.72200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116178,"end_time":5116219,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3c6e777-8dcc-4da7-9b7a-824a73ebc51b","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.50300000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5115343,"process_start_requested_uptime":5115194,"content_provider_attach_uptime":5115704,"on_next_draw_uptime":5115999,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5deeb88-2d33-41a3-b773-b6fa1b72006c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.82400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137295,"end_time":5137321,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d76ffce0-540b-4057-b968-a9550a43bcf2","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.61500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dc040ff0-ca59-4153-9bf6-3120b4eae7c3","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116304,"end_time":5116323,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd414050-899c-454f-8fdb-97fd592da7d4","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:14.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":27252,"total_pss":94169,"rss":187164,"native_total_heap":25596,"native_free_heap":3243,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddfa33c1-b36b-43eb-9c62-30049efee1cc","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:18.63700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e043ab2e-0eb5-45fa-934d-0d1fb5309e6e","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:17.60700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183734,"total_pss":63702,"rss":171692,"native_total_heap":21872,"native_free_heap":1299,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5275fff-d53d-4b64-9bc6-4dc8d57bada1","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:27.96700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137440,"end_time":5137463,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a8988b-67c8-479e-8b5b-fa12e29192cd","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:26.56900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":512663,"uptime":5136066,"utime":65,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb58c908-f66e-4c2d-9876-0441bfa214df","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.76000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5116223,"end_time":5116257,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1d2ce6a-3247-444f-9061-6323c0276861","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:09.26200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5118758,"utime":189,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbb2c897-3dfd-47de-a180-3c293ebdae5d","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:19.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25884,"total_pss":96896,"rss":187708,"native_total_heap":24060,"native_free_heap":1171,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json b/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json index 3e164d522..7fd0d5134 100644 --- a/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json +++ b/self-host/session-data/sh.measure.sample/1.0/2659be34-244e-4870-bebe-309369a3f9c7.json @@ -1 +1 @@ -[{"id":"0738870a-d804-4a9d-a394-9473e684a5f0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":345,"total_pss":27074,"rss":78884,"native_total_heap":23548,"native_free_heap":1832,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e93a633-b0a4-4b3f-87a9-5a29aed90f43","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":326672,"utime":127,"cutime":0,"cstime":0,"stime":153,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1003ef46-4ce8-434c-86ea-7b2d03af77af","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":344676,"utime":139,"cutime":0,"cstime":0,"stime":161,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"154a5e7d-8c83-4c0f-830d-897581b21691","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1329,"total_pss":26599,"rss":79068,"native_total_heap":23548,"native_free_heap":2004,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a19bbcf-4119-4656-9206-db92615cbf24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":350674,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a3290e1-2710-48ab-a2fe-9bd54c767834","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":332672,"utime":130,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23b88315-f146-48cc-9160-40a7e000c498","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2101,"total_pss":26998,"rss":82480,"native_total_heap":23548,"native_free_heap":2087,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"248c5f6a-4442-46b2-b18a-c381439c63e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":634,"total_pss":25984,"rss":77812,"native_total_heap":23292,"native_free_heap":1860,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34c11d07-4118-467c-844a-514369edc3f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:44.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":353673,"utime":144,"cutime":0,"cstime":0,"stime":166,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a0c56bf-ff35-4a87-8aee-2a1f3c0cdd0e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":133,"total_pss":26856,"rss":78436,"native_total_heap":23548,"native_free_heap":1747,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a860fde-5658-4c1b-b8ed-15c357cbe54c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314935,"end_time":314949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d45491c-c32c-4bc9-9364-0df91390703f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":320673,"utime":122,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426a2a9c-686e-4a48-b040-39dae2497ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:21.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2189,"total_pss":27632,"rss":83388,"native_total_heap":23548,"native_free_heap":2124,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"48f60b70-6af2-4dbc-8f57-5258471afe22","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1634,"total_pss":26402,"rss":79172,"native_total_heap":23292,"native_free_heap":2032,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d84469e-b3fc-48e2-b8ae-8b5749c3bcdb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1530,"total_pss":26452,"rss":79412,"native_total_heap":23292,"native_free_heap":1995,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f69fd78-1366-47db-89d2-0e06731e3026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":314675,"utime":114,"cutime":0,"cstime":0,"stime":144,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa18260-bbaf-49a9-a39d-78a14ed2f1d7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1318,"total_pss":25356,"rss":77060,"native_total_heap":23292,"native_free_heap":1911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52592692-6932-4116-a76b-39f096257750","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324906,"end_time":324920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6068d775-a8e9-4b16-8635-6bbd30039b32","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":335674,"utime":132,"cutime":0,"cstime":0,"stime":158,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"651398be-94c4-48f2-b908-d0afb8fa2410","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.89400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344938,"end_time":344946,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"779bfc04-d7b7-4b59-bf26-eb9905b710b2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:02.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":311676,"utime":113,"cutime":0,"cstime":0,"stime":143,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4174bf-a07e-4715-a669-4b4c60dec984","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:38.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":347675,"utime":142,"cutime":0,"cstime":0,"stime":164,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7be23409-6d9e-4af4-b15e-e7ad019d8713","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2261,"total_pss":27582,"rss":83236,"native_total_heap":23548,"native_free_heap":2155,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d6ad8f1-5e66-4b0a-9161-e7d331704d35","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1422,"total_pss":25345,"rss":77060,"native_total_heap":23292,"native_free_heap":1943,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e167da4-a1d3-44c7-8710-0c652bd31875","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334938,"end_time":334943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8153d6bf-4c6b-46a7-b8c3-4e9c77426e5e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344910,"end_time":344927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"853d6b66-49a8-4408-ab78-a3a77765cb0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1225,"total_pss":26290,"rss":77736,"native_total_heap":23548,"native_free_heap":1967,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bff4c2d-c936-4d96-adc8-4571bf375cf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":169,"total_pss":26816,"rss":78196,"native_total_heap":23548,"native_free_heap":1763,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c19db80-cb67-4c50-a349-fb68d3c7406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:08.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":317673,"utime":119,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"908381eb-856c-4bc0-9a85-eb2aa75db312","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":241,"total_pss":27134,"rss":78884,"native_total_heap":23548,"native_free_heap":1800,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"967e5720-c7ef-4a35-8c66-a245da051ef6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1494,"total_pss":25334,"rss":77020,"native_total_heap":23292,"native_free_heap":1979,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b7d60a3-2665-45ba-a90e-4cd6e7427b53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1013,"total_pss":26213,"rss":77736,"native_total_heap":23548,"native_free_heap":1883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0321717-a74e-4acd-b1fa-f820a02b79f4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":323675,"utime":124,"cutime":0,"cstime":0,"stime":149,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7d3f963-e0c6-47ff-93c5-a629f428740d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3145,"total_pss":23040,"rss":74980,"native_total_heap":23292,"native_free_heap":2192,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac1cd526-8718-463c-a06f-44c117a6cc0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":308674,"utime":111,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b00ea233-cbd2-47c5-928c-239ed84b7798","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304936,"end_time":304949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7065567-ebba-4507-aeba-762b9606bec6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334913,"end_time":334930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc2832f8-fa69-4c75-be5f-b59c349ae658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324927,"end_time":324931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c416e3ba-42bb-4214-9486-c9a1b3847830","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3233,"total_pss":22781,"rss":74304,"native_total_heap":23292,"native_free_heap":2233,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8b10c3a-1d2b-4f9d-a622-71c8a3c0cbeb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2313,"total_pss":27710,"rss":83236,"native_total_heap":23548,"native_free_heap":2171,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc0e49b4-56b4-4638-9f89-abf33132b86e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2049,"total_pss":22780,"rss":74068,"native_total_heap":23548,"native_free_heap":2071,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfdcea81-9e29-4006-b101-1ced54196380","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":546,"total_pss":25981,"rss":77852,"native_total_heap":23292,"native_free_heap":1828,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d58046b7-d413-4f3a-b41a-767f95670f7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314909,"end_time":314926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaee431c-2ac3-4428-a93a-992fd949a673","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3285,"total_pss":23625,"rss":75572,"native_total_heap":23292,"native_free_heap":2248,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec8ee5fb-592f-4a4d-ad08-9cf918f8001b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:56.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":305675,"utime":110,"cutime":0,"cstime":0,"stime":138,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f224b14a-3ff9-4645-8292-a170f8c30b10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:32.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":341674,"utime":136,"cutime":0,"cstime":0,"stime":161,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2fc1d2c-4c16-4d45-8f7d-832bc5cded25","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:31.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1189,"total_pss":26316,"rss":77736,"native_total_heap":23548,"native_free_heap":1952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f51d3184-a5f0-4353-8a6c-f26725ba18bb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":329676,"utime":129,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f81454f0-0263-4835-80b2-9cb300fb8026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:33.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1117,"total_pss":26258,"rss":77736,"native_total_heap":23548,"native_free_heap":1920,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8f91ac0-349a-48b6-98a2-8bf88baacffe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":338673,"utime":134,"cutime":0,"cstime":0,"stime":158,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0738870a-d804-4a9d-a394-9473e684a5f0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":345,"total_pss":27074,"rss":78884,"native_total_heap":23548,"native_free_heap":1832,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e93a633-b0a4-4b3f-87a9-5a29aed90f43","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":326672,"utime":127,"cutime":0,"cstime":0,"stime":153,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1003ef46-4ce8-434c-86ea-7b2d03af77af","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":344676,"utime":139,"cutime":0,"cstime":0,"stime":161,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"154a5e7d-8c83-4c0f-830d-897581b21691","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1329,"total_pss":26599,"rss":79068,"native_total_heap":23548,"native_free_heap":2004,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a19bbcf-4119-4656-9206-db92615cbf24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":350674,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1a3290e1-2710-48ab-a2fe-9bd54c767834","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":332672,"utime":130,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23b88315-f146-48cc-9160-40a7e000c498","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2101,"total_pss":26998,"rss":82480,"native_total_heap":23548,"native_free_heap":2087,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"248c5f6a-4442-46b2-b18a-c381439c63e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":634,"total_pss":25984,"rss":77812,"native_total_heap":23292,"native_free_heap":1860,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34c11d07-4118-467c-844a-514369edc3f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:44.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":353673,"utime":144,"cutime":0,"cstime":0,"stime":166,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a0c56bf-ff35-4a87-8aee-2a1f3c0cdd0e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":133,"total_pss":26856,"rss":78436,"native_total_heap":23548,"native_free_heap":1747,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a860fde-5658-4c1b-b8ed-15c357cbe54c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314935,"end_time":314949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d45491c-c32c-4bc9-9364-0df91390703f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":320673,"utime":122,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426a2a9c-686e-4a48-b040-39dae2497ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:21.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2189,"total_pss":27632,"rss":83388,"native_total_heap":23548,"native_free_heap":2124,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"48f60b70-6af2-4dbc-8f57-5258471afe22","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1634,"total_pss":26402,"rss":79172,"native_total_heap":23292,"native_free_heap":2032,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d84469e-b3fc-48e2-b8ae-8b5749c3bcdb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1530,"total_pss":26452,"rss":79412,"native_total_heap":23292,"native_free_heap":1995,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f69fd78-1366-47db-89d2-0e06731e3026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":314675,"utime":114,"cutime":0,"cstime":0,"stime":144,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa18260-bbaf-49a9-a39d-78a14ed2f1d7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1318,"total_pss":25356,"rss":77060,"native_total_heap":23292,"native_free_heap":1911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52592692-6932-4116-a76b-39f096257750","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324906,"end_time":324920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6068d775-a8e9-4b16-8635-6bbd30039b32","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:26.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":335674,"utime":132,"cutime":0,"cstime":0,"stime":158,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"651398be-94c4-48f2-b908-d0afb8fa2410","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.89400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344938,"end_time":344946,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"779bfc04-d7b7-4b59-bf26-eb9905b710b2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:02.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":311676,"utime":113,"cutime":0,"cstime":0,"stime":143,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4174bf-a07e-4715-a669-4b4c60dec984","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:38.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":347675,"utime":142,"cutime":0,"cstime":0,"stime":164,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7be23409-6d9e-4af4-b15e-e7ad019d8713","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2261,"total_pss":27582,"rss":83236,"native_total_heap":23548,"native_free_heap":2155,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d6ad8f1-5e66-4b0a-9161-e7d331704d35","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1422,"total_pss":25345,"rss":77060,"native_total_heap":23292,"native_free_heap":1943,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7e167da4-a1d3-44c7-8710-0c652bd31875","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334938,"end_time":334943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8153d6bf-4c6b-46a7-b8c3-4e9c77426e5e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":344910,"end_time":344927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"853d6b66-49a8-4408-ab78-a3a77765cb0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1225,"total_pss":26290,"rss":77736,"native_total_heap":23548,"native_free_heap":1967,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bff4c2d-c936-4d96-adc8-4571bf375cf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:41.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":169,"total_pss":26816,"rss":78196,"native_total_heap":23548,"native_free_heap":1763,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c19db80-cb67-4c50-a349-fb68d3c7406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:08.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":317673,"utime":119,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"908381eb-856c-4bc0-9a85-eb2aa75db312","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":241,"total_pss":27134,"rss":78884,"native_total_heap":23548,"native_free_heap":1800,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"967e5720-c7ef-4a35-8c66-a245da051ef6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1494,"total_pss":25334,"rss":77020,"native_total_heap":23292,"native_free_heap":1979,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b7d60a3-2665-45ba-a90e-4cd6e7427b53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:35.62900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1013,"total_pss":26213,"rss":77736,"native_total_heap":23548,"native_free_heap":1883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0321717-a74e-4acd-b1fa-f820a02b79f4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:14.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":323675,"utime":124,"cutime":0,"cstime":0,"stime":149,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7d3f963-e0c6-47ff-93c5-a629f428740d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3145,"total_pss":23040,"rss":74980,"native_total_heap":23292,"native_free_heap":2192,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac1cd526-8718-463c-a06f-44c117a6cc0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:59.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":308674,"utime":111,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b00ea233-cbd2-47c5-928c-239ed84b7798","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304936,"end_time":304949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7065567-ebba-4507-aeba-762b9606bec6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":334913,"end_time":334930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc2832f8-fa69-4c75-be5f-b59c349ae658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:15.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":324927,"end_time":324931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c416e3ba-42bb-4214-9486-c9a1b3847830","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3233,"total_pss":22781,"rss":74304,"native_total_heap":23292,"native_free_heap":2233,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8b10c3a-1d2b-4f9d-a622-71c8a3c0cbeb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2313,"total_pss":27710,"rss":83236,"native_total_heap":23548,"native_free_heap":2171,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc0e49b4-56b4-4638-9f89-abf33132b86e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2049,"total_pss":22780,"rss":74068,"native_total_heap":23548,"native_free_heap":2071,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfdcea81-9e29-4006-b101-1ced54196380","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":546,"total_pss":25981,"rss":77852,"native_total_heap":23292,"native_free_heap":1828,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d58046b7-d413-4f3a-b41a-767f95670f7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":314909,"end_time":314926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaee431c-2ac3-4428-a93a-992fd949a673","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:11.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3285,"total_pss":23625,"rss":75572,"native_total_heap":23292,"native_free_heap":2248,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec8ee5fb-592f-4a4d-ad08-9cf918f8001b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:56.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":305675,"utime":110,"cutime":0,"cstime":0,"stime":138,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f224b14a-3ff9-4645-8292-a170f8c30b10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:32.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":341674,"utime":136,"cutime":0,"cstime":0,"stime":161,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2fc1d2c-4c16-4d45-8f7d-832bc5cded25","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:31.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1189,"total_pss":26316,"rss":77736,"native_total_heap":23548,"native_free_heap":1952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f51d3184-a5f0-4353-8a6c-f26725ba18bb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:20.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":329676,"utime":129,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f81454f0-0263-4835-80b2-9cb300fb8026","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:33.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1117,"total_pss":26258,"rss":77736,"native_total_heap":23548,"native_free_heap":1920,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8f91ac0-349a-48b6-98a2-8bf88baacffe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:29.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":338673,"utime":134,"cutime":0,"cstime":0,"stime":158,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json b/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json index 4515f85a3..acfbce897 100644 --- a/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json +++ b/self-host/session-data/sh.measure.sample/1.0/278558fd-9aa6-40ce-afd4-1b18ab749cda.json @@ -1 +1 @@ -[{"id":"0055ed69-4797-4715-ba2c-725b80191596","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.19400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":648246,"utime":126,"cutime":0,"cstime":0,"stime":142,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"016efe71-76ff-43fb-be6c-8b9bf8d3fd98","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":666227,"utime":136,"cutime":0,"cstime":0,"stime":157,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0244f110-d0fe-4729-b613-90f49c221aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2145,"total_pss":33936,"rss":103864,"native_total_heap":25528,"native_free_heap":3098,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0d4d4436-791b-425a-bfca-4616a42499fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662418,"end_time":662426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0f5de9f9-fe56-415d-9b4e-a72ecfb99722","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1249,"total_pss":34947,"rss":105060,"native_total_heap":25528,"native_free_heap":2944,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bf5f0d-a78c-4dd1-8fb7-218ff8af67ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642421,"end_time":642429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19136c8b-2994-46e5-9893-5d43d75fdcb3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":285,"total_pss":35763,"rss":105884,"native_total_heap":25528,"native_free_heap":2788,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d4cde4-74bc-437b-bc80-8d96268365d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":636228,"utime":118,"cutime":0,"cstime":0,"stime":133,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37fc675a-52c9-4943-b53d-1f3e5eb7f763","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":678227,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ad8c12-a887-4185-a901-0334cd68d355","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.18200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3005,"total_pss":33231,"rss":103248,"native_total_heap":25528,"native_free_heap":3213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39d3c258-1b58-4db7-93da-bb3a8c114c71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":213,"total_pss":35883,"rss":105884,"native_total_heap":25528,"native_free_heap":2756,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a442b6c-b40a-4e93-8491-ec9c5c8262a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2021,"total_pss":34235,"rss":104152,"native_total_heap":25528,"native_free_heap":3045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b8d4784-fa05-433d-bab3-4377dede6051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":651227,"utime":129,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eb9fa46-50d1-4785-b0fc-3e07bd7f1673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2093,"total_pss":33964,"rss":103864,"native_total_heap":25528,"native_free_heap":3077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"53092ead-6e83-4d04-9cae-ccfc958da257","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":654227,"utime":131,"cutime":0,"cstime":0,"stime":150,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f29131-0f92-4203-9622-0c84b1d8f5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":681228,"utime":143,"cutime":0,"cstime":0,"stime":167,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d3a15dd-4b81-403f-8931-14cb70f0b3f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":669227,"utime":139,"cutime":0,"cstime":0,"stime":159,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e80efec-5c6d-4bbd-bf6a-2d62ffb28796","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2233,"total_pss":33884,"rss":103864,"native_total_heap":25528,"native_free_heap":3130,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6305ba47-5ce7-40b0-8d83-d83bf2b3e454","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:54.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":663228,"utime":135,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e4a9c9b-3b34-4caa-a651-60e7499b02f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672420,"end_time":672428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e9df4b-0678-4ceb-aa58-70081c000346","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3217,"total_pss":33184,"rss":102980,"native_total_heap":25528,"native_free_heap":3301,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73e5dd9c-c8d0-49ae-a6cb-b2f1b3b29673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3356,"total_pss":33054,"rss":103168,"native_total_heap":25528,"native_free_heap":3329,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df43128-72d3-423e-8017-be114ca35a91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3077,"total_pss":33183,"rss":102980,"native_total_heap":25528,"native_free_heap":3249,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f60e0d4-85a0-4017-a2c3-b657649112aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.39600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632421,"end_time":632448,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8320a3bf-a1e2-4f91-94d0-e4b0e70b71f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1285,"total_pss":34915,"rss":105060,"native_total_heap":25528,"native_free_heap":2960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96fe17f6-0e93-461d-bf89-ff271de52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3289,"total_pss":33137,"rss":102980,"native_total_heap":25528,"native_free_heap":3333,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b22778d-eb60-4313-a5a4-44e074d88af8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4192,"total_pss":32318,"rss":102316,"native_total_heap":25528,"native_free_heap":3413,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bc8d05e-a5f5-4c88-845b-8981d5cce78e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4104,"total_pss":32370,"rss":102528,"native_total_heap":25528,"native_free_heap":3381,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c176674-cf1a-47fe-b46c-20afc91e72c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":675228,"utime":142,"cutime":0,"cstime":0,"stime":163,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e00a369-be5e-453e-bc90-6424322dc935","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":633227,"utime":116,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac0bcdd4-c6f1-49e5-8042-0ce7dc6f487e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":657227,"utime":132,"cutime":0,"cstime":0,"stime":151,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2ba4885-401c-4775-9d07-99da138542a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642398,"end_time":642415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b672a5c4-e412-4708-88ed-fee6ab21bbda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":642230,"utime":120,"cutime":0,"cstime":0,"stime":137,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8e0cf54-7566-48c0-8147-e8a726ad787b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2305,"total_pss":33895,"rss":103864,"native_total_heap":25528,"native_free_heap":3166,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b959a645-9da1-4888-8d3f-c0955bbcec4b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3160,"total_pss":33180,"rss":103416,"native_total_heap":25528,"native_free_heap":3245,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd5ab1d-97e6-4fe2-9611-ba67746257bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672399,"end_time":672415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6775dfb-c17c-42e4-8ae8-a7ee70c69e05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1073,"total_pss":35047,"rss":105272,"native_total_heap":25528,"native_free_heap":2876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d539cf86-d76d-4c26-872e-8e2db7ee6ebc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3180,"total_pss":33158,"rss":103416,"native_total_heap":25528,"native_free_heap":3261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5677669-d5ff-423c-8695-f978dff1cc1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":161,"total_pss":35907,"rss":105828,"native_total_heap":25528,"native_free_heap":2740,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da0cd16b-e8a7-4fd4-a389-25609e712ff0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652418,"end_time":652430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddd5b881-8d8f-49eb-9250-be385b7bf7b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":645228,"utime":125,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1780a4f-2266-44fe-813b-8e3958382126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652397,"end_time":652410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e42e419d-ef44-427a-9c0f-bfc672e09d5f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":672227,"utime":140,"cutime":0,"cstime":0,"stime":160,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e468dfa3-a2d8-4cf3-8f24-bd5272fa0797","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3284,"total_pss":33106,"rss":103168,"native_total_heap":25528,"native_free_heap":3293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7c2fc45-93f4-4021-952f-7a2578effde7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662399,"end_time":662411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e89b2f98-1b39-489b-83d6-9de7f6eeac52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":660228,"utime":133,"cutime":0,"cstime":0,"stime":152,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecf6a9e8-f5eb-4956-81c3-046584f2f833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3181,"total_pss":33127,"rss":102980,"native_total_heap":25528,"native_free_heap":3281,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bc34c1-73fb-45ef-a4f4-fbf1fa6c1b2e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1161,"total_pss":34995,"rss":105272,"native_total_heap":25528,"native_free_heap":2907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f56a9997-f592-4ddf-a8c2-cefe2415eeba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1037,"total_pss":35075,"rss":105272,"native_total_heap":25528,"native_free_heap":2855,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eff299-8dac-4524-94e6-093f4107a460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":639228,"utime":119,"cutime":0,"cstime":0,"stime":136,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0055ed69-4797-4715-ba2c-725b80191596","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.19400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":648246,"utime":126,"cutime":0,"cstime":0,"stime":142,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"016efe71-76ff-43fb-be6c-8b9bf8d3fd98","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":666227,"utime":136,"cutime":0,"cstime":0,"stime":157,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0244f110-d0fe-4729-b613-90f49c221aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:39.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2145,"total_pss":33936,"rss":103864,"native_total_heap":25528,"native_free_heap":3098,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0d4d4436-791b-425a-bfca-4616a42499fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662418,"end_time":662426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0f5de9f9-fe56-415d-9b4e-a72ecfb99722","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:47.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1249,"total_pss":34947,"rss":105060,"native_total_heap":25528,"native_free_heap":2944,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bf5f0d-a78c-4dd1-8fb7-218ff8af67ec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642421,"end_time":642429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19136c8b-2994-46e5-9893-5d43d75fdcb3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":285,"total_pss":35763,"rss":105884,"native_total_heap":25528,"native_free_heap":2788,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d4cde4-74bc-437b-bc80-8d96268365d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":636228,"utime":118,"cutime":0,"cstime":0,"stime":133,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37fc675a-52c9-4943-b53d-1f3e5eb7f763","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":678227,"utime":143,"cutime":0,"cstime":0,"stime":165,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ad8c12-a887-4185-a901-0334cd68d355","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.18200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3005,"total_pss":33231,"rss":103248,"native_total_heap":25528,"native_free_heap":3213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39d3c258-1b58-4db7-93da-bb3a8c114c71","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":213,"total_pss":35883,"rss":105884,"native_total_heap":25528,"native_free_heap":2756,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a442b6c-b40a-4e93-8491-ec9c5c8262a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2021,"total_pss":34235,"rss":104152,"native_total_heap":25528,"native_free_heap":3045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b8d4784-fa05-433d-bab3-4377dede6051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:42.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":651227,"utime":129,"cutime":0,"cstime":0,"stime":146,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eb9fa46-50d1-4785-b0fc-3e07bd7f1673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2093,"total_pss":33964,"rss":103864,"native_total_heap":25528,"native_free_heap":3077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"53092ead-6e83-4d04-9cae-ccfc958da257","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":654227,"utime":131,"cutime":0,"cstime":0,"stime":150,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f29131-0f92-4203-9622-0c84b1d8f5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:12.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":681228,"utime":143,"cutime":0,"cstime":0,"stime":167,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d3a15dd-4b81-403f-8931-14cb70f0b3f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:00.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":669227,"utime":139,"cutime":0,"cstime":0,"stime":159,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e80efec-5c6d-4bbd-bf6a-2d62ffb28796","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2233,"total_pss":33884,"rss":103864,"native_total_heap":25528,"native_free_heap":3130,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6305ba47-5ce7-40b0-8d83-d83bf2b3e454","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:54.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":663228,"utime":135,"cutime":0,"cstime":0,"stime":155,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e4a9c9b-3b34-4caa-a651-60e7499b02f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672420,"end_time":672428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e9df4b-0678-4ceb-aa58-70081c000346","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:27.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3217,"total_pss":33184,"rss":102980,"native_total_heap":25528,"native_free_heap":3301,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73e5dd9c-c8d0-49ae-a6cb-b2f1b3b29673","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3356,"total_pss":33054,"rss":103168,"native_total_heap":25528,"native_free_heap":3329,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df43128-72d3-423e-8017-be114ca35a91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3077,"total_pss":33183,"rss":102980,"native_total_heap":25528,"native_free_heap":3249,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f60e0d4-85a0-4017-a2c3-b657649112aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.39600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632421,"end_time":632448,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8320a3bf-a1e2-4f91-94d0-e4b0e70b71f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:45.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1285,"total_pss":34915,"rss":105060,"native_total_heap":25528,"native_free_heap":2960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96fe17f6-0e93-461d-bf89-ff271de52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3289,"total_pss":33137,"rss":102980,"native_total_heap":25528,"native_free_heap":3333,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9b22778d-eb60-4313-a5a4-44e074d88af8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4192,"total_pss":32318,"rss":102316,"native_total_heap":25528,"native_free_heap":3413,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bc8d05e-a5f5-4c88-845b-8981d5cce78e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":4104,"total_pss":32370,"rss":102528,"native_total_heap":25528,"native_free_heap":3381,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c176674-cf1a-47fe-b46c-20afc91e72c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:06.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":675228,"utime":142,"cutime":0,"cstime":0,"stime":163,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e00a369-be5e-453e-bc90-6424322dc935","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:24.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":633227,"utime":116,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac0bcdd4-c6f1-49e5-8042-0ce7dc6f487e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:48.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":657227,"utime":132,"cutime":0,"cstime":0,"stime":151,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2ba4885-401c-4775-9d07-99da138542a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":642398,"end_time":642415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b672a5c4-e412-4708-88ed-fee6ab21bbda","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:33.17800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":642230,"utime":120,"cutime":0,"cstime":0,"stime":137,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8e0cf54-7566-48c0-8147-e8a726ad787b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2305,"total_pss":33895,"rss":103864,"native_total_heap":25528,"native_free_heap":3166,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b959a645-9da1-4888-8d3f-c0955bbcec4b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3160,"total_pss":33180,"rss":103416,"native_total_heap":25528,"native_free_heap":3245,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd5ab1d-97e6-4fe2-9611-ba67746257bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":672399,"end_time":672415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6775dfb-c17c-42e4-8ae8-a7ee70c69e05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1073,"total_pss":35047,"rss":105272,"native_total_heap":25528,"native_free_heap":2876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d539cf86-d76d-4c26-872e-8e2db7ee6ebc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:09.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3180,"total_pss":33158,"rss":103416,"native_total_heap":25528,"native_free_heap":3261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5677669-d5ff-423c-8695-f978dff1cc1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":161,"total_pss":35907,"rss":105828,"native_total_heap":25528,"native_free_heap":2740,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da0cd16b-e8a7-4fd4-a389-25609e712ff0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652418,"end_time":652430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddd5b881-8d8f-49eb-9250-be385b7bf7b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:36.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":645228,"utime":125,"cutime":0,"cstime":0,"stime":140,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1780a4f-2266-44fe-813b-8e3958382126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:43.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":652397,"end_time":652410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e42e419d-ef44-427a-9c0f-bfc672e09d5f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:03.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":672227,"utime":140,"cutime":0,"cstime":0,"stime":160,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e468dfa3-a2d8-4cf3-8f24-bd5272fa0797","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:05:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":3284,"total_pss":33106,"rss":103168,"native_total_heap":25528,"native_free_heap":3293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7c2fc45-93f4-4021-952f-7a2578effde7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":662399,"end_time":662411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e89b2f98-1b39-489b-83d6-9de7f6eeac52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:51.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":660228,"utime":133,"cutime":0,"cstime":0,"stime":152,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecf6a9e8-f5eb-4956-81c3-046584f2f833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3181,"total_pss":33127,"rss":102980,"native_total_heap":25528,"native_free_heap":3281,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3bc34c1-73fb-45ef-a4f4-fbf1fa6c1b2e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1161,"total_pss":34995,"rss":105272,"native_total_heap":25528,"native_free_heap":2907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f56a9997-f592-4ddf-a8c2-cefe2415eeba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1037,"total_pss":35075,"rss":105272,"native_total_heap":25528,"native_free_heap":2855,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eff299-8dac-4524-94e6-093f4107a460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:30.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":639228,"utime":119,"cutime":0,"cstime":0,"stime":136,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json b/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json index 9ef244b6a..a93d3b3ac 100644 --- a/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json +++ b/self-host/session-data/sh.measure.sample/1.0/2c771702-69c1-49cb-bbcf-42840bf18a6c.json @@ -1 +1 @@ -[{"id":"03bf6ce3-ca47-49d8-92c6-5758a924321d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1335,"total_pss":34962,"rss":106936,"native_total_heap":25528,"native_free_heap":2928,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11e9e739-4658-4773-8f26-4d28252875db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762397,"end_time":762412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"25e81f46-6ce4-4999-a41a-533e636ae065","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742396,"end_time":742405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c382394-8934-4922-9137-f11a28a51809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2267,"total_pss":34146,"rss":106072,"native_total_heap":25528,"native_free_heap":3097,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"36f7475a-1f2f-4e5e-b5bd-c977fcb0eaed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":765228,"utime":202,"cutime":0,"cstime":0,"stime":227,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ea547b-868f-4555-af8c-17b6aac3220e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2355,"total_pss":34094,"rss":106072,"native_total_heap":25528,"native_free_heap":3134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3af029-9407-4cc3-81da-d9048dd6b692","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":777228,"utime":210,"cutime":0,"cstime":0,"stime":233,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e0602e9-4be9-41cf-ae75-ce658de3e1a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1213,"total_pss":35146,"rss":107108,"native_total_heap":25528,"native_free_heap":2937,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f58bdd4-2f4e-4ef6-aa38-c76c74b840bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742410,"end_time":742419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"430ac282-1f6d-4043-bd08-d361b18cf9cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772412,"end_time":772418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"453091e9-abdb-43ee-b937-e4b0186f1340","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2179,"total_pss":34202,"rss":106072,"native_total_heap":25528,"native_free_heap":3066,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45766c0d-f27f-409a-aaed-9af873f1f258","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":771228,"utime":206,"cutime":0,"cstime":0,"stime":229,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"49d8849c-ea34-4543-bb29-8dbddd3cecce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":735228,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d3a9b20-58d5-4f9f-95b5-0d40568229cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":732228,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50e9b25a-a512-4a17-9d84-3e39ffa123ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1283,"total_pss":34965,"rss":106936,"native_total_heap":25528,"native_free_heap":2912,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52b8cc9d-9f54-4410-a429-b471946fe40b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732413,"end_time":732421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"570102c6-2f7d-4b25-86fd-8bdadc5aca05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3251,"total_pss":33306,"rss":105236,"native_total_heap":25528,"native_free_heap":3269,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ed0091c-79a9-4ca0-97ff-fa8ac51f8651","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":738227,"utime":186,"cutime":0,"cstime":0,"stime":209,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f71d9a4-63e7-487c-93bb-19344f023795","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762416,"end_time":762427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ae082f4-ea55-44df-bad2-623b79338432","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1001,"total_pss":35274,"rss":107108,"native_total_heap":25528,"native_free_heap":2853,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b220d36-3d96-4703-8bd6-032ef3474bcc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3127,"total_pss":33382,"rss":105236,"native_total_heap":25528,"native_free_heap":3217,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d01e49b-d124-4d62-aa1a-6b638ce0b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":753228,"utime":196,"cutime":0,"cstime":0,"stime":219,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"706e1d4d-06b2-46fb-babb-9b8b828a75aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4247,"total_pss":32482,"rss":104624,"native_total_heap":25528,"native_free_heap":3421,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"708d0374-029a-467a-85e4-c52c70c35db8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3039,"total_pss":33434,"rss":105236,"native_total_heap":25528,"native_free_heap":3181,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e468f2-b869-45b3-8c4b-f3390b8005a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":756228,"utime":197,"cutime":0,"cstime":0,"stime":221,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7157a4d5-db82-4e59-ac50-0e058dbfab41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:18.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":747232,"utime":193,"cutime":0,"cstime":0,"stime":214,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7719f05f-3fb1-469e-9f0d-52ca4f90d051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":744231,"utime":191,"cutime":0,"cstime":0,"stime":211,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80bb7e60-c385-46af-804e-a3af31aade78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1985,"total_pss":34446,"rss":106288,"native_total_heap":25528,"native_free_heap":3020,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c744b64-ec76-4f36-a7b6-6cef0414cb05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3339,"total_pss":33254,"rss":105236,"native_total_heap":25528,"native_free_heap":3301,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90b67bff-bff5-426b-9f9f-0713ac8c3677","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752398,"end_time":752411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93035519-c8cd-45cc-be33-3682c64288a7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":762227,"utime":200,"cutime":0,"cstime":0,"stime":224,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"932231b1-0a46-4629-9b8e-adfc6a33ac92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732396,"end_time":732404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"973b45aa-dc91-4d72-9167-831a6ce250b0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":768227,"utime":203,"cutime":0,"cstime":0,"stime":228,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99732c60-eeef-4335-a3d1-7f90d71668c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2057,"total_pss":34347,"rss":106092,"native_total_heap":25528,"native_free_heap":3057,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ef7f996-993a-4068-8d01-e72c58517efa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772400,"end_time":772408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f528111-83f9-462e-94d5-daac1df292cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":759228,"utime":199,"cutime":0,"cstime":0,"stime":223,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b31a3e76-58e5-4140-b90c-4141b2d75742","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3199,"total_pss":33334,"rss":105236,"native_total_heap":25528,"native_free_heap":3249,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdec286c-928b-4651-b0ef-38fe6eb7b008","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1073,"total_pss":35222,"rss":107108,"native_total_heap":25528,"native_free_heap":2885,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be5d69f5-2336-4745-8694-a82063c2144e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":233,"total_pss":35970,"rss":107716,"native_total_heap":25528,"native_free_heap":2767,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c28bc4ac-9fa6-453f-8e51-8cc7da693f80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":750227,"utime":194,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7ed037d-2714-4183-9b66-9e330718663a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4123,"total_pss":32566,"rss":104624,"native_total_heap":25528,"native_free_heap":3368,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9094c5c-ddc2-4e1e-9410-f30b0d5cfbfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":213,"total_pss":35978,"rss":107972,"native_total_heap":25528,"native_free_heap":2747,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd4cde7f-8019-4c73-9f5f-10a551ce9f67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":741227,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2109f5e-3fc3-40fb-a331-7bad798645e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1109,"total_pss":35198,"rss":107108,"native_total_heap":25528,"native_free_heap":2901,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddadf882-03b7-41e9-8653-1a1fa4f47aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1285,"total_pss":35094,"rss":107108,"native_total_heap":25528,"native_free_heap":2969,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5563e8b-8d02-4daa-8bf8-41289c5747a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2143,"total_pss":34230,"rss":106072,"native_total_heap":25528,"native_free_heap":3045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea2c324f-0db2-4992-8633-22dc68b437fb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2055,"total_pss":34278,"rss":106328,"native_total_heap":25528,"native_free_heap":3013,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea9f1529-0a1c-4f75-b570-ffc430df2a78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":774228,"utime":208,"cutime":0,"cstime":0,"stime":231,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6c268-da1c-4588-a11a-fcc21c0452f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752416,"end_time":752424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f97808fd-fb86-4ead-a37e-ec255a5dc253","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4159,"total_pss":32538,"rss":104624,"native_total_heap":25528,"native_free_heap":3384,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03bf6ce3-ca47-49d8-92c6-5758a924321d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1335,"total_pss":34962,"rss":106936,"native_total_heap":25528,"native_free_heap":2928,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11e9e739-4658-4773-8f26-4d28252875db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762397,"end_time":762412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"25e81f46-6ce4-4999-a41a-533e636ae065","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742396,"end_time":742405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c382394-8934-4922-9137-f11a28a51809","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2267,"total_pss":34146,"rss":106072,"native_total_heap":25528,"native_free_heap":3097,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"36f7475a-1f2f-4e5e-b5bd-c977fcb0eaed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:36.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":765228,"utime":202,"cutime":0,"cstime":0,"stime":227,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39ea547b-868f-4555-af8c-17b6aac3220e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2355,"total_pss":34094,"rss":106072,"native_total_heap":25528,"native_free_heap":3134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d3af029-9407-4cc3-81da-d9048dd6b692","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:48.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":777228,"utime":210,"cutime":0,"cstime":0,"stime":233,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e0602e9-4be9-41cf-ae75-ce658de3e1a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1213,"total_pss":35146,"rss":107108,"native_total_heap":25528,"native_free_heap":2937,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f58bdd4-2f4e-4ef6-aa38-c76c74b840bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":742410,"end_time":742419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"430ac282-1f6d-4043-bd08-d361b18cf9cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.36600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772412,"end_time":772418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"453091e9-abdb-43ee-b937-e4b0186f1340","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2179,"total_pss":34202,"rss":106072,"native_total_heap":25528,"native_free_heap":3066,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45766c0d-f27f-409a-aaed-9af873f1f258","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:42.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":771228,"utime":206,"cutime":0,"cstime":0,"stime":229,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"49d8849c-ea34-4543-bb29-8dbddd3cecce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:06.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":735228,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d3a9b20-58d5-4f9f-95b5-0d40568229cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":732228,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50e9b25a-a512-4a17-9d84-3e39ffa123ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":1283,"total_pss":34965,"rss":106936,"native_total_heap":25528,"native_free_heap":2912,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52b8cc9d-9f54-4410-a429-b471946fe40b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732413,"end_time":732421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"570102c6-2f7d-4b25-86fd-8bdadc5aca05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3251,"total_pss":33306,"rss":105236,"native_total_heap":25528,"native_free_heap":3269,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ed0091c-79a9-4ca0-97ff-fa8ac51f8651","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":738227,"utime":186,"cutime":0,"cstime":0,"stime":209,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f71d9a4-63e7-487c-93bb-19344f023795","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":762416,"end_time":762427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ae082f4-ea55-44df-bad2-623b79338432","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1001,"total_pss":35274,"rss":107108,"native_total_heap":25528,"native_free_heap":2853,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6b220d36-3d96-4703-8bd6-032ef3474bcc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3127,"total_pss":33382,"rss":105236,"native_total_heap":25528,"native_free_heap":3217,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d01e49b-d124-4d62-aa1a-6b638ce0b2f3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:24.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":753228,"utime":196,"cutime":0,"cstime":0,"stime":219,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"706e1d4d-06b2-46fb-babb-9b8b828a75aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4247,"total_pss":32482,"rss":104624,"native_total_heap":25528,"native_free_heap":3421,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"708d0374-029a-467a-85e4-c52c70c35db8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3039,"total_pss":33434,"rss":105236,"native_total_heap":25528,"native_free_heap":3181,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e468f2-b869-45b3-8c4b-f3390b8005a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:27.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":756228,"utime":197,"cutime":0,"cstime":0,"stime":221,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7157a4d5-db82-4e59-ac50-0e058dbfab41","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:18.18000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":747232,"utime":193,"cutime":0,"cstime":0,"stime":214,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7719f05f-3fb1-469e-9f0d-52ca4f90d051","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.17900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":744231,"utime":191,"cutime":0,"cstime":0,"stime":211,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80bb7e60-c385-46af-804e-a3af31aade78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1985,"total_pss":34446,"rss":106288,"native_total_heap":25528,"native_free_heap":3020,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8c744b64-ec76-4f36-a7b6-6cef0414cb05","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3339,"total_pss":33254,"rss":105236,"native_total_heap":25528,"native_free_heap":3301,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90b67bff-bff5-426b-9f9f-0713ac8c3677","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752398,"end_time":752411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93035519-c8cd-45cc-be33-3682c64288a7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:33.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":762227,"utime":200,"cutime":0,"cstime":0,"stime":224,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"932231b1-0a46-4629-9b8e-adfc6a33ac92","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:03.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":732396,"end_time":732404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"973b45aa-dc91-4d72-9167-831a6ce250b0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:39.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":768227,"utime":203,"cutime":0,"cstime":0,"stime":228,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99732c60-eeef-4335-a3d1-7f90d71668c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":2057,"total_pss":34347,"rss":106092,"native_total_heap":25528,"native_free_heap":3057,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ef7f996-993a-4068-8d01-e72c58517efa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":772400,"end_time":772408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f528111-83f9-462e-94d5-daac1df292cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:30.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":759228,"utime":199,"cutime":0,"cstime":0,"stime":223,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b31a3e76-58e5-4140-b90c-4141b2d75742","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":3199,"total_pss":33334,"rss":105236,"native_total_heap":25528,"native_free_heap":3249,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdec286c-928b-4651-b0ef-38fe6eb7b008","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1073,"total_pss":35222,"rss":107108,"native_total_heap":25528,"native_free_heap":2885,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be5d69f5-2336-4745-8694-a82063c2144e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:15.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":233,"total_pss":35970,"rss":107716,"native_total_heap":25528,"native_free_heap":2767,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c28bc4ac-9fa6-453f-8e51-8cc7da693f80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":750227,"utime":194,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7ed037d-2714-4183-9b66-9e330718663a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4123,"total_pss":32566,"rss":104624,"native_total_heap":25528,"native_free_heap":3368,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9094c5c-ddc2-4e1e-9410-f30b0d5cfbfd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":213,"total_pss":35978,"rss":107972,"native_total_heap":25528,"native_free_heap":2747,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd4cde7f-8019-4c73-9f5f-10a551ce9f67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:12.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":741227,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2109f5e-3fc3-40fb-a331-7bad798645e7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1109,"total_pss":35198,"rss":107108,"native_total_heap":25528,"native_free_heap":2901,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddadf882-03b7-41e9-8653-1a1fa4f47aca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8521,"java_free_heap":1285,"total_pss":35094,"rss":107108,"native_total_heap":25528,"native_free_heap":2969,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5563e8b-8d02-4daa-8bf8-41289c5747a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2143,"total_pss":34230,"rss":106072,"native_total_heap":25528,"native_free_heap":3045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea2c324f-0db2-4992-8633-22dc68b437fb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":2055,"total_pss":34278,"rss":106328,"native_total_heap":25528,"native_free_heap":3013,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea9f1529-0a1c-4f75-b570-ffc430df2a78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:45.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":774228,"utime":208,"cutime":0,"cstime":0,"stime":231,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edc6c268-da1c-4588-a11a-fcc21c0452f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:23.37200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":752416,"end_time":752424,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f97808fd-fb86-4ead-a37e-ec255a5dc253","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:06:21.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":4159,"total_pss":32538,"rss":104624,"native_total_heap":25528,"native_free_heap":3384,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json b/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json index 0ec8df0cd..9baaaabe0 100644 --- a/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json +++ b/self-host/session-data/sh.measure.sample/1.0/327f3de8-7446-4c18-9f6c-12ba715314da.json @@ -1 +1 @@ -[{"id":"01e1fce1-1f3b-4aec-b06e-a6d0d0f08d68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":500,"total_pss":27484,"rss":79232,"native_total_heap":23548,"native_free_heap":1839,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0511d700-a0e9-4dfe-956e-d576e8797873","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404912,"end_time":404936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06ebaf0c-2274-4532-84c0-feed9515bc05","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:07.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1067,"total_pss":26513,"rss":79412,"native_total_heap":23548,"native_free_heap":1950,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b195177-f8e8-4942-ad45-d53945b56821","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":443675,"utime":191,"cutime":0,"cstime":0,"stime":213,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20f14560-b8e9-4fbf-a2af-3da9c8e1f596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":428675,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d0c583-166a-49f9-bb8e-19b7bed952aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434905,"end_time":434916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"264e9b4a-59de-4af9-beab-9773933db0cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2887,"total_pss":26343,"rss":79004,"native_total_heap":23548,"native_free_heap":2206,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ee1b6b8-8b14-4554-aecf-9287bcad7b39","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":871,"total_pss":26652,"rss":79580,"native_total_heap":23548,"native_free_heap":1866,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30480cf3-898b-4498-8a2d-f726e48c827a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":407673,"utime":171,"cutime":0,"cstime":0,"stime":196,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"364d1857-8543-4011-9ddd-1a58f28c91c8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2959,"total_pss":26297,"rss":79004,"native_total_heap":23548,"native_free_heap":2242,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa2d0aa-564e-42c3-a127-9af953b65135","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3063,"total_pss":26345,"rss":78936,"native_total_heap":23548,"native_free_heap":2274,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b30bd73-adf6-4630-a81b-33df9df0a4fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414903,"end_time":414910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43893c45-2f4e-492a-96fd-15c396d33921","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:44.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":413672,"utime":173,"cutime":0,"cstime":0,"stime":198,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"495cdf75-38c5-4c4f-9625-8917ccaa205f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":419675,"utime":178,"cutime":0,"cstime":0,"stime":200,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b7ebd90-eb55-476b-aa75-3144b0f052a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:19.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3323,"total_pss":24485,"rss":77432,"native_total_heap":23548,"native_free_heap":2294,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bee2e2f-ae0a-4a98-a254-0b2768d9acb4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":783,"total_pss":26700,"rss":79580,"native_total_heap":23548,"native_free_heap":1834,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"536cffaa-a46b-48de-99e9-f419ded436e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404943,"end_time":404950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"591ed21f-d368-4a57-8a76-c891b06f7fff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1855,"total_pss":25740,"rss":78612,"native_total_heap":23548,"native_free_heap":2038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f4fb9f8-4913-4e8c-ab63-b7c2ac89850e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414914,"end_time":414924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60b91c8a-d94c-40ca-872a-003d7e97ba98","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":696,"total_pss":27412,"rss":78944,"native_total_heap":23548,"native_free_heap":1923,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60d623c2-2d26-4add-b442-7583e8a4bf06","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:02.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":431675,"utime":184,"cutime":0,"cstime":0,"stime":206,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"616f81cd-61a9-46de-b9e8-b06260b6a2d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.90300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444944,"end_time":444955,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66533d73-e335-413c-9a49-ec614c73d680","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434922,"end_time":434926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f228c96-345a-4345-87b1-4deca1e348e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.63600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":907,"total_pss":26624,"rss":79580,"native_total_heap":23548,"native_free_heap":1882,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771e52d8-4974-4614-9306-9b6859f92a15","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:56.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":425675,"utime":182,"cutime":0,"cstime":0,"stime":203,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d305b0-bfff-4039-ad4c-1d72b9ec7474","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":440678,"utime":189,"cutime":0,"cstime":0,"stime":211,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a6e6ec7-faba-4b93-b2c7-f6cba8e74145","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444919,"end_time":444933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95899d5c-4ff4-4e24-b66b-02b0f1b620be","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1767,"total_pss":25798,"rss":78644,"native_total_heap":23548,"native_free_heap":2002,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95a7638b-76b7-4bc7-bbda-b7c3c49e38c7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":422676,"utime":179,"cutime":0,"cstime":0,"stime":201,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a839af3-0869-4e50-bbbb-fb681608b8db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":416676,"utime":176,"cutime":0,"cstime":0,"stime":199,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d883cdb-f8b0-4352-964c-8da7b56266fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":608,"total_pss":27436,"rss":78944,"native_total_heap":23548,"native_free_heap":1892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4639f58-fde5-4609-8c04-60ea77619a3a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1927,"total_pss":25688,"rss":78612,"native_total_heap":23548,"native_free_heap":2070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec73881-4fba-419b-92d9-45c421428c85","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:20.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":449673,"utime":198,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aeedcb4f-0fb9-4761-9c9d-a68cd4ed43aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":520,"total_pss":27488,"rss":79232,"native_total_heap":23548,"native_free_heap":1855,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af94028b-667d-48c7-9c8b-d9755de555ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424912,"end_time":424929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d63f14-e356-4107-8ecc-cf4656eff1a9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424935,"end_time":424943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2003750-4a74-4323-94f0-6d37a34bfe76","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":410672,"utime":172,"cutime":0,"cstime":0,"stime":197,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd0ec457-b488-455c-8d6e-b803f78810c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2067,"total_pss":27196,"rss":80208,"native_total_heap":23548,"native_free_heap":2122,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beda0bf3-ab73-44bb-a26c-4470f1d512eb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3099,"total_pss":26317,"rss":78936,"native_total_heap":23548,"native_free_heap":2290,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c11c6dc0-4911-40eb-ba3d-6f59d6dfd815","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":446673,"utime":197,"cutime":0,"cstime":0,"stime":215,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfcedb28-e3f2-4d60-b818-a8334e6f5e65","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2851,"total_pss":26371,"rss":79004,"native_total_heap":23548,"native_free_heap":2190,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9439a4e-3b35-4335-bb17-a96cdbd866d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":396,"total_pss":27536,"rss":79232,"native_total_heap":23548,"native_free_heap":1803,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd2279d0-2111-4a16-9488-d0dab8957da9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:08.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":437674,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd369795-fc0d-4e9c-ac68-eae2612becd9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":434673,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb7faa1-384c-4099-8b8d-238b2724d72e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":404673,"utime":168,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef419d0e-01f4-4aca-aa1c-2d3ce1522f6e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3235,"total_pss":24537,"rss":77432,"native_total_heap":23548,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efe00642-8424-4480-b60c-b6e21a08089f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3375,"total_pss":24462,"rss":77432,"native_total_heap":23548,"native_free_heap":2315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa2a32d8-1575-4155-bd2c-a6077c12f02b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1979,"total_pss":25854,"rss":78568,"native_total_heap":23548,"native_free_heap":2086,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc20628-4dcf-4319-830e-1569fea462b4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1380,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":1975,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fd1ceb48-13ca-40f6-8cf7-2a6e5c2c7c7d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":995,"total_pss":26562,"rss":79412,"native_total_heap":23548,"native_free_heap":1918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"01e1fce1-1f3b-4aec-b06e-a6d0d0f08d68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":500,"total_pss":27484,"rss":79232,"native_total_heap":23548,"native_free_heap":1839,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0511d700-a0e9-4dfe-956e-d576e8797873","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404912,"end_time":404936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06ebaf0c-2274-4532-84c0-feed9515bc05","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:07.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1067,"total_pss":26513,"rss":79412,"native_total_heap":23548,"native_free_heap":1950,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b195177-f8e8-4942-ad45-d53945b56821","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:14.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":443675,"utime":191,"cutime":0,"cstime":0,"stime":213,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20f14560-b8e9-4fbf-a2af-3da9c8e1f596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":428675,"utime":184,"cutime":0,"cstime":0,"stime":204,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"23d0c583-166a-49f9-bb8e-19b7bed952aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434905,"end_time":434916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"264e9b4a-59de-4af9-beab-9773933db0cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2887,"total_pss":26343,"rss":79004,"native_total_heap":23548,"native_free_heap":2206,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ee1b6b8-8b14-4554-aecf-9287bcad7b39","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:13.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":871,"total_pss":26652,"rss":79580,"native_total_heap":23548,"native_free_heap":1866,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30480cf3-898b-4498-8a2d-f726e48c827a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:38.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":407673,"utime":171,"cutime":0,"cstime":0,"stime":196,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"364d1857-8543-4011-9ddd-1a58f28c91c8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2959,"total_pss":26297,"rss":79004,"native_total_heap":23548,"native_free_heap":2242,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa2d0aa-564e-42c3-a127-9af953b65135","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3063,"total_pss":26345,"rss":78936,"native_total_heap":23548,"native_free_heap":2274,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b30bd73-adf6-4630-a81b-33df9df0a4fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414903,"end_time":414910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43893c45-2f4e-492a-96fd-15c396d33921","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:44.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":413672,"utime":173,"cutime":0,"cstime":0,"stime":198,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"495cdf75-38c5-4c4f-9625-8917ccaa205f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:50.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":419675,"utime":178,"cutime":0,"cstime":0,"stime":200,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b7ebd90-eb55-476b-aa75-3144b0f052a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:19.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3323,"total_pss":24485,"rss":77432,"native_total_heap":23548,"native_free_heap":2294,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bee2e2f-ae0a-4a98-a254-0b2768d9acb4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":783,"total_pss":26700,"rss":79580,"native_total_heap":23548,"native_free_heap":1834,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"536cffaa-a46b-48de-99e9-f419ded436e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":404943,"end_time":404950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"591ed21f-d368-4a57-8a76-c891b06f7fff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1855,"total_pss":25740,"rss":78612,"native_total_heap":23548,"native_free_heap":2038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f4fb9f8-4913-4e8c-ab63-b7c2ac89850e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":414914,"end_time":414924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60b91c8a-d94c-40ca-872a-003d7e97ba98","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":696,"total_pss":27412,"rss":78944,"native_total_heap":23548,"native_free_heap":1923,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"60d623c2-2d26-4add-b442-7583e8a4bf06","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:02.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":431675,"utime":184,"cutime":0,"cstime":0,"stime":206,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"616f81cd-61a9-46de-b9e8-b06260b6a2d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.90300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444944,"end_time":444955,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66533d73-e335-413c-9a49-ec614c73d680","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":434922,"end_time":434926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f228c96-345a-4345-87b1-4deca1e348e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.63600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":907,"total_pss":26624,"rss":79580,"native_total_heap":23548,"native_free_heap":1882,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771e52d8-4974-4614-9306-9b6859f92a15","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:56.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":425675,"utime":182,"cutime":0,"cstime":0,"stime":203,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d305b0-bfff-4039-ad4c-1d72b9ec7474","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:11.62600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":440678,"utime":189,"cutime":0,"cstime":0,"stime":211,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a6e6ec7-faba-4b93-b2c7-f6cba8e74145","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:15.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":444919,"end_time":444933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95899d5c-4ff4-4e24-b66b-02b0f1b620be","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1767,"total_pss":25798,"rss":78644,"native_total_heap":23548,"native_free_heap":2002,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95a7638b-76b7-4bc7-bbda-b7c3c49e38c7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:53.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":422676,"utime":179,"cutime":0,"cstime":0,"stime":201,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a839af3-0869-4e50-bbbb-fb681608b8db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":416676,"utime":176,"cutime":0,"cstime":0,"stime":199,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d883cdb-f8b0-4352-964c-8da7b56266fa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":608,"total_pss":27436,"rss":78944,"native_total_heap":23548,"native_free_heap":1892,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4639f58-fde5-4609-8c04-60ea77619a3a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1927,"total_pss":25688,"rss":78612,"native_total_heap":23548,"native_free_heap":2070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec73881-4fba-419b-92d9-45c421428c85","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:20.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":449673,"utime":198,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aeedcb4f-0fb9-4761-9c9d-a68cd4ed43aa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":520,"total_pss":27488,"rss":79232,"native_total_heap":23548,"native_free_heap":1855,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af94028b-667d-48c7-9c8b-d9755de555ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424912,"end_time":424929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d63f14-e356-4107-8ecc-cf4656eff1a9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.89100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":424935,"end_time":424943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2003750-4a74-4323-94f0-6d37a34bfe76","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:41.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":410672,"utime":172,"cutime":0,"cstime":0,"stime":197,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd0ec457-b488-455c-8d6e-b803f78810c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2067,"total_pss":27196,"rss":80208,"native_total_heap":23548,"native_free_heap":2122,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beda0bf3-ab73-44bb-a26c-4470f1d512eb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:47.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":3099,"total_pss":26317,"rss":78936,"native_total_heap":23548,"native_free_heap":2290,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c11c6dc0-4911-40eb-ba3d-6f59d6dfd815","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":446673,"utime":197,"cutime":0,"cstime":0,"stime":215,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfcedb28-e3f2-4d60-b818-a8334e6f5e65","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2851,"total_pss":26371,"rss":79004,"native_total_heap":23548,"native_free_heap":2190,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9439a4e-3b35-4335-bb17-a96cdbd866d8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:45.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":396,"total_pss":27536,"rss":79232,"native_total_heap":23548,"native_free_heap":1803,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd2279d0-2111-4a16-9488-d0dab8957da9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:08.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":437674,"utime":188,"cutime":0,"cstime":0,"stime":210,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd369795-fc0d-4e9c-ac68-eae2612becd9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:05.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":434673,"utime":186,"cutime":0,"cstime":0,"stime":207,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb7faa1-384c-4099-8b8d-238b2724d72e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":404673,"utime":168,"cutime":0,"cstime":0,"stime":193,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef419d0e-01f4-4aca-aa1c-2d3ce1522f6e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3235,"total_pss":24537,"rss":77432,"native_total_heap":23548,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efe00642-8424-4480-b60c-b6e21a08089f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3375,"total_pss":24462,"rss":77432,"native_total_heap":23548,"native_free_heap":2315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa2a32d8-1575-4155-bd2c-a6077c12f02b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:59.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1979,"total_pss":25854,"rss":78568,"native_total_heap":23548,"native_free_heap":2086,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc20628-4dcf-4319-830e-1569fea462b4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:35.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1380,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":1975,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fd1ceb48-13ca-40f6-8cf7-2a6e5c2c7c7d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":995,"total_pss":26562,"rss":79412,"native_total_heap":23548,"native_free_heap":1918,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json b/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json index 42532530b..167a923c6 100644 --- a/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json +++ b/self-host/session-data/sh.measure.sample/1.0/3695198c-a399-42f7-839a-1c71bb4b1e27.json @@ -1 +1 @@ -[{"id":"01e4336b-c5ce-4998-95f7-22e7048181ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:57.36700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1113226,"utime":404,"cutime":0,"cstime":0,"stime":448,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06076861-9ff6-4e52-b89d-cda88315db3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.38900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072416,"end_time":1072425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06c1cffe-eeb2-45eb-97d4-064f19c8fbb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":250,"total_pss":29581,"rss":85700,"native_total_heap":26040,"native_free_heap":2705,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a50c405-ea22-4d15-937e-24670d13e43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":26903,"rss":91220,"native_total_heap":26040,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e05f96-a97d-42b9-9db8-b760dede82a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:45.56400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":410,"total_pss":30818,"rss":86860,"native_total_heap":26040,"native_free_heap":2774,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"186252ee-7db5-4c1d-806e-436e81944fa5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1110228,"utime":400,"cutime":0,"cstime":0,"stime":444,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1deca286-9615-48f1-91ad-9eb96e4eb458","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072395,"end_time":1072412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"224d712c-646f-48fb-aa59-0fdd79094afe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32007,"rss":105300,"native_total_heap":26040,"native_free_heap":3420,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f8b531b-eb8c-4bba-a2de-afce2706dbd5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1098229,"utime":394,"cutime":0,"cstime":0,"stime":437,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"301d36fa-38b5-420b-8cec-98fdce08d483","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1080226,"utime":388,"cutime":0,"cstime":0,"stime":428,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"327d5b50-56d2-4c0a-a669-e692f19e088b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.18500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082420,"end_time":1082438,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43ab643b-b385-4634-85a8-60e1fefbcd49","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092414,"end_time":1092417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45852df8-f1a8-49a5-b3f3-34091c72011b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:47.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":27193,"rss":82036,"native_total_heap":26040,"native_free_heap":3084,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"488cfbf0-222e-4e1c-851a-d4af4e3fccfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.09700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092399,"end_time":1092409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e798e5a-a54a-40f2-b6a6-6781df3c0bd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":29981,"rss":86100,"native_total_heap":26040,"native_free_heap":2927,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eab53a0-dff9-4569-b627-33d133c8df75","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:45.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2358,"total_pss":26944,"rss":82028,"native_total_heap":26040,"native_free_heap":3115,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"551c7ac9-3b33-46ab-a7bf-2ba0740e991f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:34.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":27037,"rss":83328,"native_total_heap":26040,"native_free_heap":3167,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5bf2cc97-288f-40a7-bca4-4a616f26b37b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.67800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112401,"end_time":1112419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6163161d-394d-46d5-a893-c57ef96a21e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102422,"end_time":1102427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"622e945a-6ee2-4373-9b3b-33bfc896d341","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.20600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082447,"end_time":1082459,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63159f0f-5077-44c2-8252-0ae1a9f7ce1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:08.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3414,"total_pss":27203,"rss":99600,"native_total_heap":26040,"native_free_heap":3319,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67247eb6-8fd3-4167-968d-37cfc5a00a74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":462,"total_pss":30782,"rss":86860,"native_total_heap":26040,"native_free_heap":2794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c10741e-0dbc-41e7-bc65-04e85c5de0bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:46.91400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1089226,"utime":391,"cutime":0,"cstime":0,"stime":432,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75b9983a-b8c7-4e39-8a18-9200ceb06dd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:24.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":29933,"rss":86064,"native_total_heap":26040,"native_free_heap":2964,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4f8205-3236-451d-9434-7f808fc6dc8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":198,"total_pss":29643,"rss":85744,"native_total_heap":26040,"native_free_heap":2689,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ead0ce5-2a99-45b8-a28a-567e2e2244a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.97500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1083227,"utime":390,"cutime":0,"cstime":0,"stime":429,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f3e9880-b83f-412e-b2a5-99cd4e857bc1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:10.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":27029,"rss":93248,"native_total_heap":26040,"native_free_heap":3287,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ca35788-a58e-4ecd-ae37-08c8f1ce5c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":30051,"rss":86100,"native_total_heap":26040,"native_free_heap":2879,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93dc0fdf-8a8b-411f-a04a-149d9aebed6d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:40.56600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1101228,"utime":396,"cutime":0,"cstime":0,"stime":440,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"992367fb-07a2-48ad-b506-a02e820e2e8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:23.65100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1095226,"utime":393,"cutime":0,"cstime":0,"stime":436,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99e7253d-f05d-4066-8354-67423f81d2fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1116232,"utime":405,"cutime":0,"cstime":0,"stime":448,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c3f4b27-041b-4cff-8078-ab2387937126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:58.36700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3568,"total_pss":28001,"rss":86024,"native_total_heap":26040,"native_free_heap":3367,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e06c967-c3ea-4d93-a12a-e83a90f09428","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1074226,"utime":387,"cutime":0,"cstime":0,"stime":425,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4539b2a-cb2f-4619-a160-3513562c264c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:42.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1071232,"utime":382,"cutime":0,"cstime":0,"stime":424,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a786aa0c-9599-4625-bc41-d92dcbcbe3fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":260,"total_pss":35671,"rss":108660,"native_total_heap":26040,"native_free_heap":2751,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2f4e15-21b0-42ff-aa05-f7c1ce8a535f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.70000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112423,"end_time":1112440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8cdcc1-017d-4c76-a9a3-b8df9de6ea14","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:32.97300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3202,"total_pss":26290,"rss":83580,"native_total_heap":26040,"native_free_heap":3235,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af4c5d99-bd91-41a4-81e2-ed5e86c32cba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.75400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102400,"end_time":1102417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c30e20e1-9d24-4ae7-9065-d554ead1b275","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:28.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1286,"total_pss":30004,"rss":86100,"native_total_heap":26040,"native_free_heap":2911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c56ed51e-7421-4ad5-a891-dfd7122f39dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:59.48600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":29536,"rss":85700,"native_total_heap":26040,"native_free_heap":2742,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd305590-ab63-4809-b2f9-b6ff740f8ed9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:52.25800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1498,"total_pss":30076,"rss":86136,"native_total_heap":26040,"native_free_heap":2996,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b12aef-dec8-4892-91ba-0a6ea7f4b464","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":27343,"rss":82660,"native_total_heap":26040,"native_free_heap":3047,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d367a53f-ec23-45ca-b066-3b96043e4ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1104227,"utime":398,"cutime":0,"cstime":0,"stime":441,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dabb4712-abe6-4786-8aac-23e29ebf4451","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.91600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1092228,"utime":391,"cutime":0,"cstime":0,"stime":433,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd8921b4-db49-45ce-a61e-fb5b2df22c0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3482,"total_pss":30741,"rss":105052,"native_total_heap":26040,"native_free_heap":3335,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e16c401b-afc6-4046-8250-dc8a8734b5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:09.19000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1077226,"utime":387,"cutime":0,"cstime":0,"stime":426,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edeb4743-7f22-42f2-8ff7-fb070c044344","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":28594,"rss":84580,"native_total_heap":26040,"native_free_heap":3131,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef73cbc0-a3d5-427c-a785-ece791363801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1086227,"utime":391,"cutime":0,"cstime":0,"stime":431,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fce0882f-e0fa-4c12-bc7f-1bd010583c25","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:58.48600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1107226,"utime":399,"cutime":0,"cstime":0,"stime":443,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8bf2fb-28cf-4366-800d-2223b1ae9749","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":208,"total_pss":35695,"rss":108660,"native_total_heap":26040,"native_free_heap":2735,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"01e4336b-c5ce-4998-95f7-22e7048181ca","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:57.36700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1113226,"utime":404,"cutime":0,"cstime":0,"stime":448,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06076861-9ff6-4e52-b89d-cda88315db3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.38900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072416,"end_time":1072425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"06c1cffe-eeb2-45eb-97d4-064f19c8fbb6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":250,"total_pss":29581,"rss":85700,"native_total_heap":26040,"native_free_heap":2705,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a50c405-ea22-4d15-937e-24670d13e43b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":26903,"rss":91220,"native_total_heap":26040,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e05f96-a97d-42b9-9db8-b760dede82a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:45.56400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":410,"total_pss":30818,"rss":86860,"native_total_heap":26040,"native_free_heap":2774,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"186252ee-7db5-4c1d-806e-436e81944fa5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:01.48700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1110228,"utime":400,"cutime":0,"cstime":0,"stime":444,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1deca286-9615-48f1-91ad-9eb96e4eb458","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1072395,"end_time":1072412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"224d712c-646f-48fb-aa59-0fdd79094afe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:04.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32007,"rss":105300,"native_total_heap":26040,"native_free_heap":3420,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f8b531b-eb8c-4bba-a2de-afce2706dbd5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1098229,"utime":394,"cutime":0,"cstime":0,"stime":437,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"301d36fa-38b5-420b-8cec-98fdce08d483","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:12.19000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1080226,"utime":388,"cutime":0,"cstime":0,"stime":428,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"327d5b50-56d2-4c0a-a669-e692f19e088b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.18500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082420,"end_time":1082438,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"43ab643b-b385-4634-85a8-60e1fefbcd49","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092414,"end_time":1092417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45852df8-f1a8-49a5-b3f3-34091c72011b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:47.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":27193,"rss":82036,"native_total_heap":26040,"native_free_heap":3084,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"488cfbf0-222e-4e1c-851a-d4af4e3fccfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:50.09700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1092399,"end_time":1092409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e798e5a-a54a-40f2-b6a6-6781df3c0bd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:26.65800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":29981,"rss":86100,"native_total_heap":26040,"native_free_heap":2927,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4eab53a0-dff9-4569-b627-33d133c8df75","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:45.91400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2358,"total_pss":26944,"rss":82028,"native_total_heap":26040,"native_free_heap":3115,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"551c7ac9-3b33-46ab-a7bf-2ba0740e991f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:34.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":27037,"rss":83328,"native_total_heap":26040,"native_free_heap":3167,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5bf2cc97-288f-40a7-bca4-4a616f26b37b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.67800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112401,"end_time":1112419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6163161d-394d-46d5-a893-c57ef96a21e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102422,"end_time":1102427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"622e945a-6ee2-4373-9b3b-33bfc896d341","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.20600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1082447,"end_time":1082459,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63159f0f-5077-44c2-8252-0ae1a9f7ce1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:08.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3414,"total_pss":27203,"rss":99600,"native_total_heap":26040,"native_free_heap":3319,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67247eb6-8fd3-4167-968d-37cfc5a00a74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":462,"total_pss":30782,"rss":86860,"native_total_heap":26040,"native_free_heap":2794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c10741e-0dbc-41e7-bc65-04e85c5de0bb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:46.91400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1089226,"utime":391,"cutime":0,"cstime":0,"stime":432,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75b9983a-b8c7-4e39-8a18-9200ceb06dd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:24.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":29933,"rss":86064,"native_total_heap":26040,"native_free_heap":2964,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a4f8205-3236-451d-9434-7f808fc6dc8d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.48700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":198,"total_pss":29643,"rss":85744,"native_total_heap":26040,"native_free_heap":2689,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ead0ce5-2a99-45b8-a28a-567e2e2244a9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:33.97500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1083227,"utime":390,"cutime":0,"cstime":0,"stime":429,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f3e9880-b83f-412e-b2a5-99cd4e857bc1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:10.19100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":27029,"rss":93248,"native_total_heap":26040,"native_free_heap":3287,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ca35788-a58e-4ecd-ae37-08c8f1ce5c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.56600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":30051,"rss":86100,"native_total_heap":26040,"native_free_heap":2879,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93dc0fdf-8a8b-411f-a04a-149d9aebed6d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:40.56600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1101228,"utime":396,"cutime":0,"cstime":0,"stime":440,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"992367fb-07a2-48ad-b506-a02e820e2e8a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:23.65100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1095226,"utime":393,"cutime":0,"cstime":0,"stime":436,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99e7253d-f05d-4066-8354-67423f81d2fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1116232,"utime":405,"cutime":0,"cstime":0,"stime":448,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c3f4b27-041b-4cff-8078-ab2387937126","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:56:58.36700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3568,"total_pss":28001,"rss":86024,"native_total_heap":26040,"native_free_heap":3367,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e06c967-c3ea-4d93-a12a-e83a90f09428","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1074226,"utime":387,"cutime":0,"cstime":0,"stime":425,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a4539b2a-cb2f-4619-a160-3513562c264c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:42.18000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1071232,"utime":382,"cutime":0,"cstime":0,"stime":424,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a786aa0c-9599-4625-bc41-d92dcbcbe3fc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":260,"total_pss":35671,"rss":108660,"native_total_heap":26040,"native_free_heap":2751,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad2f4e15-21b0-42ff-aa05-f7c1ce8a535f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:41:03.70000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1112423,"end_time":1112440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8cdcc1-017d-4c76-a9a3-b8df9de6ea14","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:32.97300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3202,"total_pss":26290,"rss":83580,"native_total_heap":26040,"native_free_heap":3235,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af4c5d99-bd91-41a4-81e2-ed5e86c32cba","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:41.75400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1102400,"end_time":1102417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c30e20e1-9d24-4ae7-9065-d554ead1b275","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:07:28.65200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1286,"total_pss":30004,"rss":86100,"native_total_heap":26040,"native_free_heap":2911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c56ed51e-7421-4ad5-a891-dfd7122f39dc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:59.48600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":29536,"rss":85700,"native_total_heap":26040,"native_free_heap":2742,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd305590-ab63-4809-b2f9-b6ff740f8ed9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:52.25800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1498,"total_pss":30076,"rss":86136,"native_total_heap":26040,"native_free_heap":2996,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2b12aef-dec8-4892-91ba-0a6ea7f4b464","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":27343,"rss":82660,"native_total_heap":26040,"native_free_heap":3047,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d367a53f-ec23-45ca-b066-3b96043e4ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:24:43.56500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1104227,"utime":398,"cutime":0,"cstime":0,"stime":441,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dabb4712-abe6-4786-8aac-23e29ebf4451","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:50:49.91600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1092228,"utime":391,"cutime":0,"cstime":0,"stime":433,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dd8921b4-db49-45ce-a61e-fb5b2df22c0b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:06.19000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3482,"total_pss":30741,"rss":105052,"native_total_heap":26040,"native_free_heap":3335,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e16c401b-afc6-4046-8250-dc8a8734b5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:16:09.19000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1077226,"utime":387,"cutime":0,"cstime":0,"stime":426,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"edeb4743-7f22-42f2-8ff7-fb070c044344","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":28594,"rss":84580,"native_total_heap":26040,"native_free_heap":3131,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ef73cbc0-a3d5-427c-a785-ece791363801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:33:36.97400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1086227,"utime":391,"cutime":0,"cstime":0,"stime":431,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fce0882f-e0fa-4c12-bc7f-1bd010583c25","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:40:58.48600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1107226,"utime":399,"cutime":0,"cstime":0,"stime":443,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8bf2fb-28cf-4366-800d-2223b1ae9749","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":208,"total_pss":35695,"rss":108660,"native_total_heap":26040,"native_free_heap":2735,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json b/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json index 31bc4b892..20a39724a 100644 --- a/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json +++ b/self-host/session-data/sh.measure.sample/1.0/38c01e1f-75e7-46c0-b062-f00de70eb644.json @@ -1 +1 @@ -[{"id":"0b9d0a7d-ee6d-43a4-8e96-c2a048715c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.23500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172408,"end_time":1172412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14c13612-d42d-4b39-aa0e-4b68061eff7c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:50.05000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1167228,"utime":432,"cutime":0,"cstime":0,"stime":480,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b164fdb-f6e5-4897-801e-f0a1bf725936","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.36000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1878,"total_pss":30040,"rss":86612,"native_total_heap":26040,"native_free_heap":2955,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21f8cffa-aaed-4dbe-96c7-5479867434cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":926,"total_pss":29373,"rss":82860,"native_total_heap":26040,"native_free_heap":2794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22b1285c-a1a6-4fc8-ac64-0828e42944e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1138,"total_pss":29289,"rss":83364,"native_total_heap":26040,"native_free_heap":2878,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e694999-a390-4d57-b0c4-4db616f51f53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:22.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2054,"total_pss":29970,"rss":86612,"native_total_heap":26040,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f57f5ce-f985-45fe-a909-4d375b966ce2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:44.67200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1185228,"utime":437,"cutime":0,"cstime":0,"stime":486,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"477d89df-dbd9-460e-91f9-13c66bea0e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:53.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1998,"total_pss":27867,"rss":85520,"native_total_heap":26040,"native_free_heap":2998,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b63ed64-d20e-4b5c-b06d-2b5be0d07891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:45.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4158,"total_pss":29422,"rss":83904,"native_total_heap":26040,"native_free_heap":3399,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d103c92-fe71-4050-b2fd-242c4cb5e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:43.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":210,"total_pss":31421,"rss":85008,"native_total_heap":26040,"native_free_heap":2725,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa31d7b-48c0-4e01-99ee-af6e8e3c2ac6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:56.04900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1173226,"utime":434,"cutime":0,"cstime":0,"stime":482,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5859179c-2abf-426f-bba4-89d1781c3156","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192410,"end_time":1192413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f98923b-7180-48e9-b768-8079f057820c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:47.48600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1197229,"utime":442,"cutime":0,"cstime":0,"stime":493,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61ce89fb-e364-4178-97d9-d41d2b5c5e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:24.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1950,"total_pss":29992,"rss":86612,"native_total_heap":26040,"native_free_heap":2991,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62d3e39a-61c1-41c4-be5e-7f1de54efa32","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:13.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2162,"total_pss":29937,"rss":86612,"native_total_heap":26040,"native_free_heap":3075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"631ba88e-481b-41a5-9baf-4c5b1e6a61ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.61500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202419,"end_time":1202426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6747c8dd-781a-437c-abcd-4e56c68c0ed1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:57.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1226,"total_pss":27864,"rss":82568,"native_total_heap":26040,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d8801e6-825e-4178-9a34-19f9ce4b7077","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182430,"end_time":1182435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77e131af-04b6-4f9c-bb10-4f767dd15718","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:46.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3110,"total_pss":29220,"rss":85884,"native_total_heap":26040,"native_free_heap":3227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"795f3a0a-1549-424c-837c-4d08a0ba44e8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2210,"total_pss":29639,"rss":87740,"native_total_heap":26040,"native_free_heap":3067,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87421f2f-71ea-4690-8971-66ccf47d5ee7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.60300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202398,"end_time":1202414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89e321ff-3939-4569-becd-e5897e6f3be8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:23.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1209228,"utime":446,"cutime":0,"cstime":0,"stime":499,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8edeb9a0-12b2-484b-8645-9cda762c13d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.54800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212416,"end_time":1212425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f8178be-0926-445a-b8d3-3913cbfdec9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.36200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1206239,"utime":445,"cutime":0,"cstime":0,"stime":498,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ba5fbe5-109e-4790-b63f-d150f8b21b95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:12.41600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1203227,"utime":444,"cutime":0,"cstime":0,"stime":497,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a614f711-2067-40cb-be30-0b69e983468a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.53500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212398,"end_time":1212412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a769aff2-f9a9-48e3-91e2-5202f9a501b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1176229,"utime":435,"cutime":0,"cstime":0,"stime":483,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a877b36e-867e-47b6-9f3f-3caccd2c7ce5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2950,"total_pss":29260,"rss":85800,"native_total_heap":26040,"native_free_heap":3158,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acf54f06-5daa-45ce-8981-02b664df11b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:51.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2086,"total_pss":28480,"rss":86248,"native_total_heap":26040,"native_free_heap":3014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af2bc913-acf4-462f-823b-64657243334a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1200226,"utime":442,"cutime":0,"cstime":0,"stime":494,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b298866b-fd70-47e3-aabd-ff46802a776c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1962,"total_pss":28405,"rss":86032,"native_total_heap":26040,"native_free_heap":2982,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8398b5d-4354-4832-b568-498829914111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:46.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4034,"total_pss":26395,"rss":81188,"native_total_heap":26040,"native_free_heap":3347,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c91d6217-6074-4fb4-a75f-61489b2a3ced","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:41.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1086,"total_pss":27904,"rss":81704,"native_total_heap":26040,"native_free_heap":2862,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca8cef14-164d-4d61-a075-b8f71f4d36a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182400,"end_time":1182418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22b707a-181a-4c64-a8fe-91465b98b123","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.37000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2074,"total_pss":29941,"rss":86612,"native_total_heap":26040,"native_free_heap":3043,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6aa96b6-431a-4ecd-abc9-f776146a9005","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2914,"total_pss":29258,"rss":85812,"native_total_heap":26040,"native_free_heap":3143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbcd2af9-9721-4260-ae9c-7cd8e75cdf1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3162,"total_pss":29184,"rss":85884,"native_total_heap":26040,"native_free_heap":3247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddba719a-032b-45ae-a14f-3efec6884836","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1182230,"utime":436,"cutime":0,"cstime":0,"stime":484,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de3e0cde-0d62-4f40-8953-35c4dc4fd30e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:47.58100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1191229,"utime":440,"cutime":0,"cstime":0,"stime":489,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de5e415d-2c9b-4fef-b950-c9b849806d1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:49.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2158,"total_pss":28623,"rss":86764,"native_total_heap":26040,"native_free_heap":3051,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de9e850e-04bc-4a7f-a872-7154d06b4d1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3962,"total_pss":26234,"rss":81052,"native_total_heap":26040,"native_free_heap":3315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e18b804f-0457-437a-8cf2-9d45ec3fb7b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.22300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172396,"end_time":1172401,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3723997-3498-4682-9cce-42afb216c5ff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:42.73900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1179226,"utime":435,"cutime":0,"cstime":0,"stime":484,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6543071-e6ba-444a-9547-7f6f2a168e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.75800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192399,"end_time":1192406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f18079f6-9a9a-45e0-9e6c-afc29e76790a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1194228,"utime":441,"cutime":0,"cstime":0,"stime":491,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f31c7f62-07c6-404c-a463-8d7849c66f47","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4086,"total_pss":26542,"rss":81160,"native_total_heap":26040,"native_free_heap":3362,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f42a69a7-a21a-4144-8e42-640c7e3ed7bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:48.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3038,"total_pss":29272,"rss":85884,"native_total_heap":26040,"native_free_heap":3195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eec829-b21a-4f62-9af3-3808b5d4cc1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1188226,"utime":439,"cutime":0,"cstime":0,"stime":488,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7951e8-bbcc-4656-9e30-3fa9204d077d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:43.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":998,"total_pss":28142,"rss":82060,"native_total_heap":26040,"native_free_heap":2831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc52a7c-b873-4db7-99ae-539c37a923a8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1212229,"utime":448,"cutime":0,"cstime":0,"stime":500,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0b9d0a7d-ee6d-43a4-8e96-c2a048715c08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.23500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172408,"end_time":1172412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14c13612-d42d-4b39-aa0e-4b68061eff7c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:50.05000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1167228,"utime":432,"cutime":0,"cstime":0,"stime":480,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b164fdb-f6e5-4897-801e-f0a1bf725936","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.36000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1878,"total_pss":30040,"rss":86612,"native_total_heap":26040,"native_free_heap":2955,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21f8cffa-aaed-4dbe-96c7-5479867434cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":926,"total_pss":29373,"rss":82860,"native_total_heap":26040,"native_free_heap":2794,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22b1285c-a1a6-4fc8-ac64-0828e42944e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1138,"total_pss":29289,"rss":83364,"native_total_heap":26040,"native_free_heap":2878,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e694999-a390-4d57-b0c4-4db616f51f53","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:22.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2054,"total_pss":29970,"rss":86612,"native_total_heap":26040,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f57f5ce-f985-45fe-a909-4d375b966ce2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:44.67200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1185228,"utime":437,"cutime":0,"cstime":0,"stime":486,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"477d89df-dbd9-460e-91f9-13c66bea0e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:53.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1998,"total_pss":27867,"rss":85520,"native_total_heap":26040,"native_free_heap":2998,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b63ed64-d20e-4b5c-b06d-2b5be0d07891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:45.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4158,"total_pss":29422,"rss":83904,"native_total_heap":26040,"native_free_heap":3399,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d103c92-fe71-4050-b2fd-242c4cb5e3e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:43.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":210,"total_pss":31421,"rss":85008,"native_total_heap":26040,"native_free_heap":2725,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fa31d7b-48c0-4e01-99ee-af6e8e3c2ac6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:56.04900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1173226,"utime":434,"cutime":0,"cstime":0,"stime":482,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5859179c-2abf-426f-bba4-89d1781c3156","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.76500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192410,"end_time":1192413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f98923b-7180-48e9-b768-8079f057820c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:47.48600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1197229,"utime":442,"cutime":0,"cstime":0,"stime":493,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61ce89fb-e364-4178-97d9-d41d2b5c5e86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:24.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1950,"total_pss":29992,"rss":86612,"native_total_heap":26040,"native_free_heap":2991,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62d3e39a-61c1-41c4-be5e-7f1de54efa32","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:13.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2162,"total_pss":29937,"rss":86612,"native_total_heap":26040,"native_free_heap":3075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"631ba88e-481b-41a5-9baf-4c5b1e6a61ea","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.61500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202419,"end_time":1202426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6747c8dd-781a-437c-abcd-4e56c68c0ed1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:57.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1226,"total_pss":27864,"rss":82568,"native_total_heap":26040,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6d8801e6-825e-4178-9a34-19f9ce4b7077","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182430,"end_time":1182435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77e131af-04b6-4f9c-bb10-4f767dd15718","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:46.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3110,"total_pss":29220,"rss":85884,"native_total_heap":26040,"native_free_heap":3227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"795f3a0a-1549-424c-837c-4d08a0ba44e8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2210,"total_pss":29639,"rss":87740,"native_total_heap":26040,"native_free_heap":3067,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87421f2f-71ea-4690-8971-66ccf47d5ee7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.60300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1202398,"end_time":1202414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89e321ff-3939-4569-becd-e5897e6f3be8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:23.35200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1209228,"utime":446,"cutime":0,"cstime":0,"stime":499,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8edeb9a0-12b2-484b-8645-9cda762c13d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.54800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212416,"end_time":1212425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f8178be-0926-445a-b8d3-3913cbfdec9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.36200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1206239,"utime":445,"cutime":0,"cstime":0,"stime":498,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ba5fbe5-109e-4790-b63f-d150f8b21b95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:12.41600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1203227,"utime":444,"cutime":0,"cstime":0,"stime":497,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a614f711-2067-40cb-be30-0b69e983468a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.53500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1212398,"end_time":1212412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a769aff2-f9a9-48e3-91e2-5202f9a501b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:39.74200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1176229,"utime":435,"cutime":0,"cstime":0,"stime":483,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a877b36e-867e-47b6-9f3f-3caccd2c7ce5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2950,"total_pss":29260,"rss":85800,"native_total_heap":26040,"native_free_heap":3158,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acf54f06-5daa-45ce-8981-02b664df11b7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:51.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2086,"total_pss":28480,"rss":86248,"native_total_heap":26040,"native_free_heap":3014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af2bc913-acf4-462f-823b-64657243334a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:09.41500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1200226,"utime":442,"cutime":0,"cstime":0,"stime":494,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b298866b-fd70-47e3-aabd-ff46802a776c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.04900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1962,"total_pss":28405,"rss":86032,"native_total_heap":26040,"native_free_heap":2982,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8398b5d-4354-4832-b568-498829914111","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:46.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4034,"total_pss":26395,"rss":81188,"native_total_heap":26040,"native_free_heap":3347,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c91d6217-6074-4fb4-a75f-61489b2a3ced","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:41.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1086,"total_pss":27904,"rss":81704,"native_total_heap":26040,"native_free_heap":2862,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ca8cef14-164d-4d61-a075-b8f71f4d36a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1182400,"end_time":1182418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22b707a-181a-4c64-a8fe-91465b98b123","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:20.37000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2074,"total_pss":29941,"rss":86612,"native_total_heap":26040,"native_free_heap":3043,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6aa96b6-431a-4ecd-abc9-f776146a9005","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:17:11.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2914,"total_pss":29258,"rss":85812,"native_total_heap":26040,"native_free_heap":3143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbcd2af9-9721-4260-ae9c-7cd8e75cdf1c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3162,"total_pss":29184,"rss":85884,"native_total_heap":26040,"native_free_heap":3247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ddba719a-032b-45ae-a14f-3efec6884836","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:26:41.67400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1182230,"utime":436,"cutime":0,"cstime":0,"stime":484,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de3e0cde-0d62-4f40-8953-35c4dc4fd30e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:47.58100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1191229,"utime":440,"cutime":0,"cstime":0,"stime":489,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de5e415d-2c9b-4fef-b950-c9b849806d1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:49.04800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2158,"total_pss":28623,"rss":86764,"native_total_heap":26040,"native_free_heap":3051,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de9e850e-04bc-4a7f-a872-7154d06b4d1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.57800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3962,"total_pss":26234,"rss":81052,"native_total_heap":26040,"native_free_heap":3315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e18b804f-0457-437a-8cf2-9d45ec3fb7b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:51:55.22300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1172396,"end_time":1172401,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3723997-3498-4682-9cce-42afb216c5ff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:42.73900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1179226,"utime":435,"cutime":0,"cstime":0,"stime":484,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6543071-e6ba-444a-9547-7f6f2a168e80","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:48.75800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1192399,"end_time":1192406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f18079f6-9a9a-45e0-9e6c-afc29e76790a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:44.48500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1194228,"utime":441,"cutime":0,"cstime":0,"stime":491,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f31c7f62-07c6-404c-a463-8d7849c66f47","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4086,"total_pss":26542,"rss":81160,"native_total_heap":26040,"native_free_heap":3362,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f42a69a7-a21a-4144-8e42-640c7e3ed7bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:01:48.48400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3038,"total_pss":29272,"rss":85884,"native_total_heap":26040,"native_free_heap":3195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9eec829-b21a-4f62-9af3-3808b5d4cc1a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:44:44.57800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1188226,"utime":439,"cutime":0,"cstime":0,"stime":488,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7951e8-bbcc-4656-9e30-3fa9204d077d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T00:09:43.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":998,"total_pss":28142,"rss":82060,"native_total_heap":26040,"native_free_heap":2831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc52a7c-b873-4db7-99ae-539c37a923a8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:26.35200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1212229,"utime":448,"cutime":0,"cstime":0,"stime":500,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json b/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json index 68332a7bb..c13e2909e 100644 --- a/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json +++ b/self-host/session-data/sh.measure.sample/1.0/41ab73cf-066a-415f-9e80-45974709df51.json @@ -1 +1 @@ -[{"id":"0af481c5-aee8-4324-8f4d-962f7581f7d9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.70700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"102098a9-8135-46cd-8ca2-65c326688b90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.79900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2885386,"on_next_draw_uptime":2885578,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26d7c168-6bc4-4707-9c01-b05eb3f9fcee","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"333d50dd-96fb-4ffe-99c4-24ab2493fd29","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2885385,"utime":44,"cutime":0,"cstime":0,"stime":58,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33e1f864-17e1-41fb-8a23-199c2f913450","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.38300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3434a2bf-51ee-434d-9f82-30cfd9e37d1b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.98300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3518691e-0f78-4b72-833d-d324cc5a75a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.68700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2885456,"end_time":2885468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"3624","content-type":"multipart/form-data; boundary=dea6be73-4666-4508-a98a-8b6e5455b161","host":"10.0.2.2:8080","msr-req-id":"fd99afe8-35f4-4e3d-9e79-55756c1f5dcf","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:14:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aad4497-51c7-4ea7-b6f9-c47425f842d8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1106,"total_pss":43073,"rss":124004,"native_total_heap":25272,"native_free_heap":1427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4311fd1a-07c9-480b-a374-e7a43c950b62","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3182,"total_pss":35297,"rss":114304,"native_total_heap":24760,"native_free_heap":2460,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44d0e98c-537b-405c-bf82-40e5d830c507","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2891385,"utime":57,"cutime":0,"cstime":0,"stime":72,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bf61eeb-88b9-4e54-82c8-52bdf0d320a2","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.06100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2889529,"end_time":2890842,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:14:58 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"746e79fc-9a3d-40ee-a81f-17ccd31e7d42","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.65600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":560.9619,"y":1475.9125,"touch_down_time":2889366,"touch_up_time":2889436},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92782de9-653f-4c4c-b40c-239b5d53f348","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:59.68000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a116fa31-7261-4118-89cc-b8b9c3b31ef4","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.61000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a966eff4-f131-4cc8-aa37-1ea6f4ae7db8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4e9c211-b2dc-4552-b33d-4456f60e705f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:54.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2762,"total_pss":36107,"rss":114760,"native_total_heap":24760,"native_free_heap":2063,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf9ffed-481b-4583-a47a-06db381d5605","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2895450,"utime":58,"cutime":0,"cstime":0,"stime":75,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b9ad68-39d9-414c-b278-e51ec32d655e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:55.60400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2888385,"utime":49,"cutime":0,"cstime":0,"stime":62,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5095f04-8978-409b-b877-26013f77ed1f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.99000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec6427aa-0b80-42ef-9e75-7d55eb4c0d90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.61200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2674,"total_pss":36383,"rss":115040,"native_total_heap":24760,"native_free_heap":1903,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed81710e-05e3-44e1-a23c-3047f2d1a639","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6933a9a-6d1b-4994-bfa9-9e73d1dabd4b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.39400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe334e36-a794-4192-b09e-e456be253ddf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0af481c5-aee8-4324-8f4d-962f7581f7d9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.70700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"102098a9-8135-46cd-8ca2-65c326688b90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.79900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2885386,"on_next_draw_uptime":2885578,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26d7c168-6bc4-4707-9c01-b05eb3f9fcee","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"333d50dd-96fb-4ffe-99c4-24ab2493fd29","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.60400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2885385,"utime":44,"cutime":0,"cstime":0,"stime":58,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33e1f864-17e1-41fb-8a23-199c2f913450","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.38300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3434a2bf-51ee-434d-9f82-30cfd9e37d1b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.98300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3518691e-0f78-4b72-833d-d324cc5a75a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.68700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2885456,"end_time":2885468,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"3624","content-type":"multipart/form-data; boundary=dea6be73-4666-4508-a98a-8b6e5455b161","host":"10.0.2.2:8080","msr-req-id":"fd99afe8-35f4-4e3d-9e79-55756c1f5dcf","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:14:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aad4497-51c7-4ea7-b6f9-c47425f842d8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1106,"total_pss":43073,"rss":124004,"native_total_heap":25272,"native_free_heap":1427,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4311fd1a-07c9-480b-a374-e7a43c950b62","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3182,"total_pss":35297,"rss":114304,"native_total_heap":24760,"native_free_heap":2460,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44d0e98c-537b-405c-bf82-40e5d830c507","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.60400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2891385,"utime":57,"cutime":0,"cstime":0,"stime":72,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bf61eeb-88b9-4e54-82c8-52bdf0d320a2","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.06100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2889529,"end_time":2890842,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:14:58 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"746e79fc-9a3d-40ee-a81f-17ccd31e7d42","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.65600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":560.9619,"y":1475.9125,"touch_down_time":2889366,"touch_up_time":2889436},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92782de9-653f-4c4c-b40c-239b5d53f348","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:59.68000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a116fa31-7261-4118-89cc-b8b9c3b31ef4","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:52.61000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a966eff4-f131-4cc8-aa37-1ea6f4ae7db8","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:58.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4e9c211-b2dc-4552-b33d-4456f60e705f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:54.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2762,"total_pss":36107,"rss":114760,"native_total_heap":24760,"native_free_heap":2063,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf9ffed-481b-4583-a47a-06db381d5605","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.66900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2895450,"utime":58,"cutime":0,"cstime":0,"stime":75,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b9ad68-39d9-414c-b278-e51ec32d655e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:55.60400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2888385,"utime":49,"cutime":0,"cstime":0,"stime":62,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5095f04-8978-409b-b877-26013f77ed1f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:57.99000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ec6427aa-0b80-42ef-9e75-7d55eb4c0d90","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.61200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":2674,"total_pss":36383,"rss":115040,"native_total_heap":24760,"native_free_heap":1903,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed81710e-05e3-44e1-a23c-3047f2d1a639","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6933a9a-6d1b-4994-bfa9-9e73d1dabd4b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:00.39400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe334e36-a794-4192-b09e-e456be253ddf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:56.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json b/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json index 4f171251d..a21a1b5b3 100644 --- a/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json +++ b/self-host/session-data/sh.measure.sample/1.0/47326461-d4bb-4e88-9cfb-65b31528c9fe.json @@ -1 +1 @@ -[{"id":"001a6e52-e9d9-4ad0-af86-a4d5142cb875","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.99200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":124031,"end_time":124044,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0947da85-13ca-48ab-84ff-8a5fc659f1f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:08.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":137674,"utime":9,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c3a1df9-b8bc-4ba3-97d7-8284e7d5d950","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2651,"total_pss":24205,"rss":69608,"native_total_heap":22268,"native_free_heap":1434,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31954472-a3a2-4730-85f0-d1e8a3be24dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":14532,"java_free_heap":0,"total_pss":24852,"rss":75512,"native_total_heap":22268,"native_free_heap":950,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33edf9f5-7c4e-4876-b1ce-729039f53055","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33987,"total_pss":45515,"rss":114948,"native_total_heap":23992,"native_free_heap":1038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3547b7ce-dca1-482d-8c78-a1e9e8401b47","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":140674,"utime":10,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e3842ac-4c2e-474a-afd8-6a8fb4f45b9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421d8b17-7bdb-41ab-a4e7-d0b0d86f2cb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.84800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45065b27-34f5-4aec-a47f-c0731b0b630f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.96400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":154949,"end_time":155016,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46ade2bb-f271-4e23-ad18-a84f7a47ca80","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":146675,"utime":14,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54ecbd63-7871-4c04-a8b2-be52e97efc2b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34752,"total_pss":29033,"rss":87224,"native_total_heap":22268,"native_free_heap":957,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55e7df52-cd5e-47af-a93e-2224d5e8c596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5632655f-4c73-4661-a3b4-26373d92c7be","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134137,"end_time":134157,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f625784-7f0c-40ec-949a-d50f708d436b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33787,"total_pss":30482,"rss":85636,"native_total_heap":23992,"native_free_heap":1064,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fbf78ee-ed68-48d1-8f0b-791d489066cb","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:03.73600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":132788,"utime":15,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"602b17a9-abea-4812-b3d8-cf863aff7536","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:55.29400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":123373,"process_start_requested_uptime":123145,"content_provider_attach_uptime":123644,"on_next_draw_uptime":124345,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63e21faa-2d95-4dc0-b99b-8d8f6d06b251","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34825,"total_pss":24096,"rss":81312,"native_total_heap":22268,"native_free_heap":956,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"645aebc4-6235-417a-93aa-afc42403f5d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2599,"total_pss":20866,"rss":63828,"native_total_heap":22268,"native_free_heap":1418,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64631ca0-a48d-4375-a13c-907c0c172a17","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":134677,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6efdace1-410d-49d2-87ed-cd095c6dca9c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.25200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7028cc2a-1694-450c-90a1-7f8bc2a94114","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":129790,"utime":14,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71490771-2818-40b3-9824-347879b6a68d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2495,"total_pss":22056,"rss":70160,"native_total_heap":22268,"native_free_heap":1382,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7213d846-11ee-4a45-8519-f3d174939c72","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:04.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":16672,"java_free_heap":0,"total_pss":44631,"rss":104308,"native_total_heap":33880,"native_free_heap":1575,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d63171-2af2-4789-9382-864ddb796746","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:26.63300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":155685,"utime":17,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c1a87d-38bb-4ed0-b4a7-912e6a4e4e3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:20.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":149678,"utime":14,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7acd505c-bd18-4516-93fc-872407111800","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.98500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":135787,"end_time":136037,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"806ad69d-3c17-4a6d-9c03-0f1242d71766","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:02.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32679,"total_pss":28685,"rss":91652,"native_total_heap":24504,"native_free_heap":1520,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b69c71a-039b-417d-b6c9-85bfb81e1f06","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.26900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bbf9d25-f1d9-42cd-840a-8e4ae8cec5db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34913,"total_pss":32062,"rss":105036,"native_total_heap":22268,"native_free_heap":993,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"953d1314-15c5-448b-a274-cc288b6d76fb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1651,"total_pss":22492,"rss":70956,"native_total_heap":22268,"native_free_heap":1292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97e6b0d5-c723-4830-9cc7-dfa1b0fc8f24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2371,"total_pss":21095,"rss":65444,"native_total_heap":22268,"native_free_heap":1329,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991698ee-f49c-4744-84ec-d9f74e8a1a53","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:06.83400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5473"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9930357b-af02-4e31-87f0-67dfddcf32bd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:56.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35320,"total_pss":24919,"rss":85704,"native_total_heap":22268,"native_free_heap":1014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a7f4c07-e4ad-4eb8-8563-b5e4527bb36f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.87600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144919,"end_time":144928,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac880a50-6c23-475e-a0e2-ecff72de7c26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.85900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144904,"end_time":144911,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3e931b0-f899-40ec-9932-8004e8741bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.54600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":134512,"process_start_requested_uptime":134373,"content_provider_attach_uptime":134614,"on_next_draw_uptime":135568,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcee7111-79f4-42ac-802d-92cec9aa0d10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:13.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34707,"total_pss":23910,"rss":75500,"native_total_heap":22268,"native_free_heap":936,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6a8e60f-9db4-4848-88b2-44922cf14f13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":152673,"utime":15,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9dcf233-98b1-47fb-bf19-28a089cd2e43","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.13800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134171,"end_time":134190,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf5a58ad-8096-4a2c-8a5e-fbe8947a7985","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.10000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":136137,"end_time":136152,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26dcdec-9c15-419b-9180-049bda6b4562","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":158675,"utime":18,"cutime":0,"cstime":0,"stime":28,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d409c5a8-0eb1-4b03-898d-adac15f7f417","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1563,"total_pss":23721,"rss":70728,"native_total_heap":22268,"native_free_heap":1261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d74f47b9-4eb5-42c0-88be-fdf05ac78826","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:14.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":143673,"utime":11,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d787b6dd-4e59-43e9-a544-942d6ef73b4f","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.50600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa2bf1f-0505-4180-9d74-13e21877549a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2423,"total_pss":22966,"rss":68768,"native_total_heap":22268,"native_free_heap":1350,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e2457b48-26d3-440e-98f9-b14c7097fc3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.98900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":155031,"end_time":155041,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5172dd0-5c25-4a93-a177-11a51de19407","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185404,"total_pss":26164,"rss":102788,"native_total_heap":11352,"native_free_heap":1172,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4211aa-5adc-40c2-8b80-f7016c4152c1","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.10100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":416.9641,"y":1695.8936,"touch_down_time":127088,"touch_up_time":127143},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f96c4979-598e-4c5b-90fb-61d9bf4b9812","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:57.73500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":126787,"utime":8,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcb55a4d-5cfe-46a4-b48a-d8a339283c5a","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.19300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"001a6e52-e9d9-4ad0-af86-a4d5142cb875","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.99200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":124031,"end_time":124044,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0947da85-13ca-48ab-84ff-8a5fc659f1f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:08.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":137674,"utime":9,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c3a1df9-b8bc-4ba3-97d7-8284e7d5d950","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2651,"total_pss":24205,"rss":69608,"native_total_heap":22268,"native_free_heap":1434,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31954472-a3a2-4730-85f0-d1e8a3be24dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":14532,"java_free_heap":0,"total_pss":24852,"rss":75512,"native_total_heap":22268,"native_free_heap":950,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33edf9f5-7c4e-4876-b1ce-729039f53055","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33987,"total_pss":45515,"rss":114948,"native_total_heap":23992,"native_free_heap":1038,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3547b7ce-dca1-482d-8c78-a1e9e8401b47","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":140674,"utime":10,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e3842ac-4c2e-474a-afd8-6a8fb4f45b9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421d8b17-7bdb-41ab-a4e7-d0b0d86f2cb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.84800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45065b27-34f5-4aec-a47f-c0731b0b630f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.96400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":154949,"end_time":155016,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46ade2bb-f271-4e23-ad18-a84f7a47ca80","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:17.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":146675,"utime":14,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54ecbd63-7871-4c04-a8b2-be52e97efc2b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34752,"total_pss":29033,"rss":87224,"native_total_heap":22268,"native_free_heap":957,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55e7df52-cd5e-47af-a93e-2224d5e8c596","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5632655f-4c73-4661-a3b4-26373d92c7be","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.10500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134137,"end_time":134157,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f625784-7f0c-40ec-949a-d50f708d436b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33787,"total_pss":30482,"rss":85636,"native_total_heap":23992,"native_free_heap":1064,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fbf78ee-ed68-48d1-8f0b-791d489066cb","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:03.73600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":12315,"uptime":132788,"utime":15,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"602b17a9-abea-4812-b3d8-cf863aff7536","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:55.29400000Z","type":"cold_launch","cold_launch":{"process_start_uptime":123373,"process_start_requested_uptime":123145,"content_provider_attach_uptime":123644,"on_next_draw_uptime":124345,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63e21faa-2d95-4dc0-b99b-8d8f6d06b251","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:09.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34825,"total_pss":24096,"rss":81312,"native_total_heap":22268,"native_free_heap":956,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"645aebc4-6235-417a-93aa-afc42403f5d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2599,"total_pss":20866,"rss":63828,"native_total_heap":22268,"native_free_heap":1418,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"64631ca0-a48d-4375-a13c-907c0c172a17","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":134677,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6efdace1-410d-49d2-87ed-cd095c6dca9c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.25200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7028cc2a-1694-450c-90a1-7f8bc2a94114","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:00.73800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":12315,"uptime":129790,"utime":14,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71490771-2818-40b3-9824-347879b6a68d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2495,"total_pss":22056,"rss":70160,"native_total_heap":22268,"native_free_heap":1382,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7213d846-11ee-4a45-8519-f3d174939c72","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:04.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":16672,"java_free_heap":0,"total_pss":44631,"rss":104308,"native_total_heap":33880,"native_free_heap":1575,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d63171-2af2-4789-9382-864ddb796746","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:26.63300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":155685,"utime":17,"cutime":0,"cstime":0,"stime":27,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c1a87d-38bb-4ed0-b4a7-912e6a4e4e3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:20.62600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":149678,"utime":14,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7acd505c-bd18-4516-93fc-872407111800","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.98500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":135787,"end_time":136037,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"806ad69d-3c17-4a6d-9c03-0f1242d71766","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:02.73500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32679,"total_pss":28685,"rss":91652,"native_total_heap":24504,"native_free_heap":1520,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b69c71a-039b-417d-b6c9-85bfb81e1f06","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.26900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8bbf9d25-f1d9-42cd-840a-8e4ae8cec5db","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34913,"total_pss":32062,"rss":105036,"native_total_heap":22268,"native_free_heap":993,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"953d1314-15c5-448b-a274-cc288b6d76fb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1651,"total_pss":22492,"rss":70956,"native_total_heap":22268,"native_free_heap":1292,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97e6b0d5-c723-4830-9cc7-dfa1b0fc8f24","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2371,"total_pss":21095,"rss":65444,"native_total_heap":22268,"native_free_heap":1329,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991698ee-f49c-4744-84ec-d9f74e8a1a53","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:06.83400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5473"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9930357b-af02-4e31-87f0-67dfddcf32bd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:56.73600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35320,"total_pss":24919,"rss":85704,"native_total_heap":22268,"native_free_heap":1014,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9a7f4c07-e4ad-4eb8-8563-b5e4527bb36f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.87600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144919,"end_time":144928,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac880a50-6c23-475e-a0e2-ecff72de7c26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:15.85900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":144904,"end_time":144911,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b3e931b0-f899-40ec-9932-8004e8741bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:06.54600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":134512,"process_start_requested_uptime":134373,"content_provider_attach_uptime":134614,"on_next_draw_uptime":135568,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcee7111-79f4-42ac-802d-92cec9aa0d10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:13.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34707,"total_pss":23910,"rss":75500,"native_total_heap":22268,"native_free_heap":936,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6a8e60f-9db4-4848-88b2-44922cf14f13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":152673,"utime":15,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9dcf233-98b1-47fb-bf19-28a089cd2e43","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:56:05.13800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":134171,"end_time":134190,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf5a58ad-8096-4a2c-8a5e-fbe8947a7985","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:07.10000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":136137,"end_time":136152,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26dcdec-9c15-419b-9180-049bda6b4562","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":158675,"utime":18,"cutime":0,"cstime":0,"stime":28,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d409c5a8-0eb1-4b03-898d-adac15f7f417","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:29.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1563,"total_pss":23721,"rss":70728,"native_total_heap":22268,"native_free_heap":1261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d74f47b9-4eb5-42c0-88be-fdf05ac78826","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:14.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":143673,"utime":11,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d787b6dd-4e59-43e9-a544-942d6ef73b4f","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.50600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa2bf1f-0505-4180-9d74-13e21877549a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2423,"total_pss":22966,"rss":68768,"native_total_heap":22268,"native_free_heap":1350,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e2457b48-26d3-440e-98f9-b14c7097fc3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:25.98900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":155031,"end_time":155041,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5172dd0-5c25-4a93-a177-11a51de19407","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185404,"total_pss":26164,"rss":102788,"native_total_heap":11352,"native_free_heap":1172,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4211aa-5adc-40c2-8b80-f7016c4152c1","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.10100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":416.9641,"y":1695.8936,"touch_down_time":127088,"touch_up_time":127143},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f96c4979-598e-4c5b-90fb-61d9bf4b9812","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:57.73500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":12315,"uptime":126787,"utime":8,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcb55a4d-5cfe-46a4-b48a-d8a339283c5a","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:58.19300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json b/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json index ead00e8b7..f3b65c9a7 100644 --- a/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json +++ b/self-host/session-data/sh.measure.sample/1.0/495fae08-a7e7-4555-b0ce-d078179f036a.json @@ -1 +1 @@ -[{"id":"06a51574-d12a-4261-a27a-9b53c62a126e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:59.05800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35405,"total_pss":50191,"rss":142588,"native_total_heap":22396,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"14b6285f-2732-4299-b5ff-525e813b8e8f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5691017,"utime":7,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"33d82139-64d9-4ba4-bc33-6f8deb7624d7","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35457,"total_pss":50143,"rss":142588,"native_total_heap":22396,"native_free_heap":1075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"35c795ab-0e59-477e-bffc-352dbc1d2227","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"44a055be-1f0c-4c53-8f9e-fa706dd7910e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:54.06100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5688019,"utime":5,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"56b7c3cc-149c-41aa-9442-ed7e52511977","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.29100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5685204,"end_time":5685248,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"13281","content-type":"multipart/form-data; boundary=baab675c-c7ef-40e4-b37f-cd36596d5e10","host":"10.0.2.2:8080","msr-req-id":"c0aa4d6b-3ee6-46af-a48e-67e783bc94d9","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57807965-f4b4-47c3-b7c7-af226228784c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32630,"rss":140352,"native_total_heap":22396,"native_free_heap":1099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57e62c86-530c-451a-a9f1-d0012f96b73f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.10500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5685063,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"67dec5f7-e14a-4930-90b5-ca4ce68c3190","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.19100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5684996,"process_start_requested_uptime":5684924,"content_provider_attach_uptime":5685013,"on_next_draw_uptime":5685149,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"74f6201d-1a96-4f02-b6b1-6b4d53537b2e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:55.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35530,"total_pss":49835,"rss":142528,"native_total_heap":22396,"native_free_heap":1050,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9a5ae1bf-c42b-4d0e-9705-1e544599e0d5","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:53.06000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35618,"total_pss":49764,"rss":142324,"native_total_heap":22396,"native_free_heap":1081,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ca4264c3-3814-4b77-8fa8-d6bbb2516273","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f7451de2-7388-4451-97e0-a48b00c57016","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:51.22700000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14672"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"06a51574-d12a-4261-a27a-9b53c62a126e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:59.05800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35405,"total_pss":50191,"rss":142588,"native_total_heap":22396,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"14b6285f-2732-4299-b5ff-525e813b8e8f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5691017,"utime":7,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"33d82139-64d9-4ba4-bc33-6f8deb7624d7","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:57.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35457,"total_pss":50143,"rss":142588,"native_total_heap":22396,"native_free_heap":1075,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"35c795ab-0e59-477e-bffc-352dbc1d2227","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"44a055be-1f0c-4c53-8f9e-fa706dd7910e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:54.06100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5688019,"utime":5,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"56b7c3cc-149c-41aa-9442-ed7e52511977","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.29100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5685204,"end_time":5685248,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"13281","content-type":"multipart/form-data; boundary=baab675c-c7ef-40e4-b37f-cd36596d5e10","host":"10.0.2.2:8080","msr-req-id":"c0aa4d6b-3ee6-46af-a48e-67e783bc94d9","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57807965-f4b4-47c3-b7c7-af226228784c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.12100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32630,"rss":140352,"native_total_heap":22396,"native_free_heap":1099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"57e62c86-530c-451a-a9f1-d0012f96b73f","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.10500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":568494,"uptime":5685063,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"67dec5f7-e14a-4930-90b5-ca4ce68c3190","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.19100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5684996,"process_start_requested_uptime":5684924,"content_provider_attach_uptime":5685013,"on_next_draw_uptime":5685149,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"74f6201d-1a96-4f02-b6b1-6b4d53537b2e","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:55.05900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35530,"total_pss":49835,"rss":142528,"native_total_heap":22396,"native_free_heap":1050,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9a5ae1bf-c42b-4d0e-9705-1e544599e0d5","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:53.06000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35618,"total_pss":49764,"rss":142324,"native_total_heap":22396,"native_free_heap":1081,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ca4264c3-3814-4b77-8fa8-d6bbb2516273","session_id":"6d07ef92-e7f2-48c7-aca6-3beefe9f8f41","timestamp":"2024-04-29T11:47:01.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f7451de2-7388-4451-97e0-a48b00c57016","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:51.22700000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14672"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json b/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json index d87a44821..b502ed0ae 100644 --- a/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json +++ b/self-host/session-data/sh.measure.sample/1.0/4a56a9c9-e2db-4419-b086-ce3214ba2238.json @@ -1 +1 @@ -[{"id":"036fde4d-0a8d-4476-a0d5-46f68b00bcbd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":12315,"uptime":123791,"utime":2,"cutime":0,"cstime":0,"stime":1,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e6ad906-9805-47c6-ab31-48f696583145","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":22068,"rss":96220,"native_total_heap":11096,"native_free_heap":1237,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"793e310d-8ab5-4917-bcfa-c57a4e033b2b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"addd5a90-25ed-4c97-96ad-a711759b0c5c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.89600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6ac6566-bd96-4d27-b74f-fd60058e34b2","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"036fde4d-0a8d-4476-a0d5-46f68b00bcbd","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":12315,"uptime":123791,"utime":2,"cutime":0,"cstime":0,"stime":1,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e6ad906-9805-47c6-ab31-48f696583145","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":22068,"rss":96220,"native_total_heap":11096,"native_free_heap":1237,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"793e310d-8ab5-4917-bcfa-c57a4e033b2b","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"addd5a90-25ed-4c97-96ad-a711759b0c5c","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.89600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6ac6566-bd96-4d27-b74f-fd60058e34b2","session_id":"967d0c7a-18e1-4622-b8da-ad280e611868","timestamp":"2024-05-23T19:55:54.95300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json b/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json index b566a5b23..5e8ed5bb6 100644 --- a/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json +++ b/self-host/session-data/sh.measure.sample/1.0/4c0f77f7-ab53-4016-a7f5-7cdbc232d789.json @@ -1 +1 @@ -[{"id":"06c2b921-2e92-471b-bdbe-932d73f298fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1147,"total_pss":24552,"rss":76280,"native_total_heap":23548,"native_free_heap":1882,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"089f7166-43b6-4f63-b4f5-b636fdda2b93","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3105,"total_pss":23992,"rss":75736,"native_total_heap":23548,"native_free_heap":2221,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0af832b4-8bf7-43f6-831e-cec298c462f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484906,"end_time":484915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"150b1421-8935-46ba-bdbc-54a5cca55950","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":492228,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1976a0a4-e071-4b79-b598-e817b51118ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":455674,"utime":201,"cutime":0,"cstime":0,"stime":219,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3feafc4e-a206-48ce-b795-f4484efe6e46","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.88700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474933,"end_time":474939,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"452750ed-cee8-4d2f-9f4f-90df859d1a9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2343,"total_pss":24332,"rss":77076,"native_total_heap":23548,"native_free_heap":2143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f362754-57ff-430f-93f2-4b56cac2bae8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474906,"end_time":474923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fef5ecf-7275-47c5-bf0d-2db2d104545f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1167,"total_pss":24530,"rss":76280,"native_total_heap":23548,"native_free_heap":1903,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"581ebbd9-9199-46d8-a750-4b8f500cf0c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:49.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3317,"total_pss":23919,"rss":75596,"native_total_heap":23548,"native_free_heap":2310,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"586fb977-913e-4e95-90e8-cfe079f8c65b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2043,"total_pss":24517,"rss":77164,"native_total_heap":23548,"native_free_heap":2018,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59214346-6851-4767-be64-1cae2616df03","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1271,"total_pss":25250,"rss":77860,"native_total_heap":23548,"native_free_heap":1935,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b89b08b-292d-4e47-832d-06cf1b8eb8ab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:38.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":467674,"utime":209,"cutime":0,"cstime":0,"stime":226,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d151e02-cc4a-48b7-b274-ee0cf499b706","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":482677,"utime":217,"cutime":0,"cstime":0,"stime":236,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e823fc5-8f68-4f48-8b92-e6498498944c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3141,"total_pss":23972,"rss":75596,"native_total_heap":23548,"native_free_heap":2241,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a7f973e-eda2-4bb8-9665-9f3df471a2ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.86700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464906,"end_time":464919,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e894cd-e495-4013-8659-47c21017ece0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3111,"total_pss":23587,"rss":76508,"native_total_heap":23548,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"72adc11f-3f15-4ac7-a3a3-60a694be0fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34812,"total_pss":30721,"rss":85552,"native_total_heap":22268,"native_free_heap":951,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7669ea4a-bba7-44d4-b9a9-db45964ef5d6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2131,"total_pss":24463,"rss":77164,"native_total_heap":23548,"native_free_heap":2059,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7973895d-5622-4aaa-b35e-2dc01a0f1642","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484919,"end_time":484927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7c381122-203c-4ce9-aa3d-14204c831242","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:32.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":461676,"utime":205,"cutime":0,"cstime":0,"stime":221,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ce4746c-fe79-4f6b-a699-57c4407211e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.09400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":535.979,"y":1583.9044,"touch_down_time":497057,"touch_up_time":497122},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80e4bccd-aecc-487a-83fc-c77c9c3de79d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1059,"total_pss":24604,"rss":76280,"native_total_heap":23548,"native_free_heap":1850,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80ee3a75-b17a-4b61-8f7c-7290c9b6be34","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:50.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":479674,"utime":217,"cutime":0,"cstime":0,"stime":235,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86c61823-ade1-4249-b975-5b93187f463d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.62900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":476681,"utime":213,"cutime":0,"cstime":0,"stime":230,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89dd2437-82eb-422f-8960-f04a8b93d29a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3229,"total_pss":23916,"rss":75596,"native_total_heap":23548,"native_free_heap":2273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a937cc-b8f8-477e-962a-7076f0dfc165","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34900,"total_pss":27522,"rss":86864,"native_total_heap":22268,"native_free_heap":983,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96dddad1-d163-4c41-a7a7-8f94557c50e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:44.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":473676,"utime":211,"cutime":0,"cstime":0,"stime":229,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c9b36f7-1a6a-40e2-8d53-467b6a914358","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:02:03.78500000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5656"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a22ed868-d842-4cc9-b8c6-f7dad06ff9c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.70100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":492062,"process_start_requested_uptime":491451,"content_provider_attach_uptime":492196,"on_next_draw_uptime":492750,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b17022a0-0a12-41bf-b3ce-0bf5b5ffa12c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.52700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492497,"end_time":492578,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9bdd26d-b65c-4bd0-98b1-ec75bcd20a86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb206c54-ed71-473d-9191-d62ec86ce30e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.63900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":323,"total_pss":25432,"rss":77128,"native_total_heap":23548,"native_free_heap":1765,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7642fce-d485-4f9b-9669-0c6b67de52e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:31.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2203,"total_pss":24407,"rss":77076,"native_total_heap":23548,"native_free_heap":2091,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd0f03a4-3b11-47a1-92c5-51144d06d751","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2255,"total_pss":24387,"rss":77076,"native_total_heap":23548,"native_free_heap":2111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d18c7bc2-9f51-45aa-85b2-e20615cd4b0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.34100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26a714f-b1d2-49a1-b11d-58939a957aa2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":28161,"rss":98520,"native_total_heap":11352,"native_free_heap":1251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d42f13c9-d0f8-48d2-9c38-08a2d5f12a3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d568b490-bf9a-49c6-9ee4-be68fc3091cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.86500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454907,"end_time":454917,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8c15221-8fba-44d3-a150-9af52612f793","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454922,"end_time":454925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f222e4-e8b8-4585-a23b-8630fdf34709","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":470673,"utime":210,"cutime":0,"cstime":0,"stime":227,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9ac0c74-3258-4eea-bf8a-e3527cf37093","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.88500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464924,"end_time":464937,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea69afb3-ad93-4343-86ac-531414bead50","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":458677,"utime":203,"cutime":0,"cstime":0,"stime":220,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0ba537c-59cb-4058-9810-ac0fa5b36497","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.61900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":452672,"utime":200,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f14c16c7-ce68-40ff-9b73-d4ac1dc5758c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:06.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":495231,"utime":9,"cutime":0,"cstime":0,"stime":14,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f167816c-5d04-482b-ac46-7cb90f7b07a2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1343,"total_pss":25205,"rss":77860,"native_total_heap":23548,"native_free_heap":1971,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8b12787-765f-4a14-b621-3faa72c5ea55","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3163,"total_pss":24175,"rss":77700,"native_total_heap":23548,"native_free_heap":2226,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f99e4d0f-cfac-42ed-9589-a22406fac8e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa3c9bc6-4413-46b7-970c-ce000547c715","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.56100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492597,"end_time":492613,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"feafea75-e848-4337-b95a-9f7f1011583e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":464675,"utime":207,"cutime":0,"cstime":0,"stime":223,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"06c2b921-2e92-471b-bdbe-932d73f298fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1147,"total_pss":24552,"rss":76280,"native_total_heap":23548,"native_free_heap":1882,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"089f7166-43b6-4f63-b4f5-b636fdda2b93","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3105,"total_pss":23992,"rss":75736,"native_total_heap":23548,"native_free_heap":2221,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0af832b4-8bf7-43f6-831e-cec298c462f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484906,"end_time":484915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"150b1421-8935-46ba-bdbc-54a5cca55950","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":492228,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1976a0a4-e071-4b79-b598-e817b51118ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:26.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":455674,"utime":201,"cutime":0,"cstime":0,"stime":219,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3feafc4e-a206-48ce-b795-f4484efe6e46","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.88700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474933,"end_time":474939,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"452750ed-cee8-4d2f-9f4f-90df859d1a9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:27.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2343,"total_pss":24332,"rss":77076,"native_total_heap":23548,"native_free_heap":2143,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f362754-57ff-430f-93f2-4b56cac2bae8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":474906,"end_time":474923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4fef5ecf-7275-47c5-bf0d-2db2d104545f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1167,"total_pss":24530,"rss":76280,"native_total_heap":23548,"native_free_heap":1903,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"581ebbd9-9199-46d8-a750-4b8f500cf0c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:49.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3317,"total_pss":23919,"rss":75596,"native_total_heap":23548,"native_free_heap":2310,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"586fb977-913e-4e95-90e8-cfe079f8c65b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2043,"total_pss":24517,"rss":77164,"native_total_heap":23548,"native_free_heap":2018,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59214346-6851-4767-be64-1cae2616df03","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1271,"total_pss":25250,"rss":77860,"native_total_heap":23548,"native_free_heap":1935,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b89b08b-292d-4e47-832d-06cf1b8eb8ab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:38.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":467674,"utime":209,"cutime":0,"cstime":0,"stime":226,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d151e02-cc4a-48b7-b274-ee0cf499b706","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":482677,"utime":217,"cutime":0,"cstime":0,"stime":236,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e823fc5-8f68-4f48-8b92-e6498498944c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:53.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3141,"total_pss":23972,"rss":75596,"native_total_heap":23548,"native_free_heap":2241,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a7f973e-eda2-4bb8-9665-9f3df471a2ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.86700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464906,"end_time":464919,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70e894cd-e495-4013-8659-47c21017ece0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3111,"total_pss":23587,"rss":76508,"native_total_heap":23548,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"72adc11f-3f15-4ac7-a3a3-60a694be0fb4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34812,"total_pss":30721,"rss":85552,"native_total_heap":22268,"native_free_heap":951,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7669ea4a-bba7-44d4-b9a9-db45964ef5d6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2131,"total_pss":24463,"rss":77164,"native_total_heap":23548,"native_free_heap":2059,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7973895d-5622-4aaa-b35e-2dc01a0f1642","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":484919,"end_time":484927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7c381122-203c-4ce9-aa3d-14204c831242","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:32.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":461676,"utime":205,"cutime":0,"cstime":0,"stime":221,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7ce4746c-fe79-4f6b-a699-57c4407211e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.09400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":535.979,"y":1583.9044,"touch_down_time":497057,"touch_up_time":497122},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80e4bccd-aecc-487a-83fc-c77c9c3de79d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1059,"total_pss":24604,"rss":76280,"native_total_heap":23548,"native_free_heap":1850,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"80ee3a75-b17a-4b61-8f7c-7290c9b6be34","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:50.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":479674,"utime":217,"cutime":0,"cstime":0,"stime":235,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86c61823-ade1-4249-b975-5b93187f463d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.62900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":476681,"utime":213,"cutime":0,"cstime":0,"stime":230,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89dd2437-82eb-422f-8960-f04a8b93d29a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3229,"total_pss":23916,"rss":75596,"native_total_heap":23548,"native_free_heap":2273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a937cc-b8f8-477e-962a-7076f0dfc165","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:05.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34900,"total_pss":27522,"rss":86864,"native_total_heap":22268,"native_free_heap":983,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96dddad1-d163-4c41-a7a7-8f94557c50e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:44.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":473676,"utime":211,"cutime":0,"cstime":0,"stime":229,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c9b36f7-1a6a-40e2-8d53-467b6a914358","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:02:03.78500000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"5656"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a22ed868-d842-4cc9-b8c6-f7dad06ff9c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.70100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":492062,"process_start_requested_uptime":491451,"content_provider_attach_uptime":492196,"on_next_draw_uptime":492750,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b17022a0-0a12-41bf-b3ce-0bf5b5ffa12c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.52700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492497,"end_time":492578,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9bdd26d-b65c-4bd0-98b1-ec75bcd20a86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb206c54-ed71-473d-9191-d62ec86ce30e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:47.63900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":323,"total_pss":25432,"rss":77128,"native_total_heap":23548,"native_free_heap":1765,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7642fce-d485-4f9b-9669-0c6b67de52e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:31.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2203,"total_pss":24407,"rss":77076,"native_total_heap":23548,"native_free_heap":2091,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd0f03a4-3b11-47a1-92c5-51144d06d751","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":2255,"total_pss":24387,"rss":77076,"native_total_heap":23548,"native_free_heap":2111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d18c7bc2-9f51-45aa-85b2-e20615cd4b0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.34100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d26a714f-b1d2-49a1-b11d-58939a957aa2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185388,"total_pss":28161,"rss":98520,"native_total_heap":11352,"native_free_heap":1251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d42f13c9-d0f8-48d2-9c38-08a2d5f12a3c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.19200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d568b490-bf9a-49c6-9ee4-be68fc3091cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.86500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454907,"end_time":454917,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d8c15221-8fba-44d3-a150-9af52612f793","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":454922,"end_time":454925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f222e4-e8b8-4585-a23b-8630fdf34709","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:41.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":470673,"utime":210,"cutime":0,"cstime":0,"stime":227,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9ac0c74-3258-4eea-bf8a-e3527cf37093","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.88500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":464924,"end_time":464937,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea69afb3-ad93-4343-86ac-531414bead50","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:29.62500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":458677,"utime":203,"cutime":0,"cstime":0,"stime":220,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0ba537c-59cb-4058-9810-ac0fa5b36497","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.61900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":452672,"utime":200,"cutime":0,"cstime":0,"stime":217,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f14c16c7-ce68-40ff-9b73-d4ac1dc5758c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:06.17900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":495231,"utime":9,"cutime":0,"cstime":0,"stime":14,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f167816c-5d04-482b-ac46-7cb90f7b07a2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":1343,"total_pss":25205,"rss":77860,"native_total_heap":23548,"native_free_heap":1971,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8b12787-765f-4a14-b621-3faa72c5ea55","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6886,"java_free_heap":3163,"total_pss":24175,"rss":77700,"native_total_heap":23548,"native_free_heap":2226,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f99e4d0f-cfac-42ed-9589-a22406fac8e3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa3c9bc6-4413-46b7-970c-ce000547c715","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:03.56100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":492597,"end_time":492613,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"feafea75-e848-4337-b95a-9f7f1011583e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:01:35.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":464675,"utime":207,"cutime":0,"cstime":0,"stime":223,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json b/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json index 189358e58..1a7e22968 100644 --- a/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json +++ b/self-host/session-data/sh.measure.sample/1.0/53799900-d10a-4673-ad70-85f13f867549.json @@ -1 +1 @@ -[{"id":"012792d0-fa3c-48b9-b822-75970ab82c84","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:07.59200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2960373,"utime":47,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"05946601-bfd5-4e33-a89b-13eda0f0e0ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:08.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3722,"total_pss":33615,"rss":106072,"native_total_heap":25016,"native_free_heap":2188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"08e82d31-4056-43dd-b375-ad5be0ea54c9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.65900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987390,"end_time":2987439,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0b320ce3-b8d3-4dc6-9de8-e0580624a851","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.61400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2977376,"end_time":2977395,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0eec352a-765f-41a3-81e6-cc3fb21ea48c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987553,"end_time":2987562,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1598d97e-1051-4cf8-901f-1cfd23f92b4d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2981370,"utime":59,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"167e6ca5-2c49-46f9-9589-4512197529f2","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":933,"total_pss":38738,"rss":116168,"native_total_heap":26040,"native_free_heap":1607,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"18c94390-cb28-40a9-8ef4-338e3911137c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.00400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":null,"start_time":2987725,"end_time":2987784,"failure_reason":"java.net.UnknownHostException","failure_description":"Unable to resolve host \"httpbin.org\": No address associated with hostname","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1cee70bd-ebd7-4669-baef-977f60a9fa0a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2969372,"utime":52,"cutime":0,"cstime":0,"stime":51,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1fab5c4a-589e-485b-99c4-ac4d7fca3781","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3650,"total_pss":33650,"rss":106288,"native_total_heap":25016,"native_free_heap":2157,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"212476c7-f438-4733-80d2-39c8d37fda5f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:31.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2984371,"utime":59,"cutime":0,"cstime":0,"stime":60,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"242ce1c9-f840-48c4-9236-187609165d2f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2975372,"utime":55,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"27e1dd4b-b91a-4d51-8f63-86774a80c630","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:32.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2074,"total_pss":34495,"rss":107796,"native_total_heap":25272,"native_free_heap":2057,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"2df8601c-0ffe-419d-9bae-f77dfd57a3e9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1986,"total_pss":34551,"rss":109116,"native_total_heap":25272,"native_free_heap":2018,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"35cd1168-8e96-4212-acd1-a49a66926b1f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:12.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3598,"total_pss":33711,"rss":106288,"native_total_heap":25016,"native_free_heap":2136,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"3bc3fc94-279f-4704-8655-a0f7c4a2fbd8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:30.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2178,"total_pss":34504,"rss":107428,"native_total_heap":25016,"native_free_heap":1831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"42b9b559-8b26-4498-a3d6-21be120a287b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bac4075-3dbc-42db-9e75-f1b7eb697912","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.64800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2957383,"end_time":2957429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bdfa6ad-649f-40d5-a438-6c161781f4f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:13.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2966371,"utime":50,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6221d65e-e289-47a2-9cf0-7e1783522369","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.62300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2967380,"end_time":2967404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"63ee15eb-ae8a-4dbc-9e5f-6e25d4ef4c92","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2802,"total_pss":33964,"rss":106868,"native_total_heap":25016,"native_free_heap":1960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"65e66a48-50d4-45d5-9b50-82ac06cbf1ec","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6be41a06-ff39-49e3-9c1e-36fdf6269d68","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:25.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2978370,"utime":57,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6e4c75bd-3b32-42c8-aaab-9ce9aaefd105","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987727,"utime":65,"cutime":0,"cstime":0,"stime":63,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"77c62f02-1dc6-4eb9-b393-acf88aae1217","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2963371,"utime":48,"cutime":0,"cstime":0,"stime":48,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"79dd0030-8892-4598-8692-4533f7141f98","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.87800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"821d78a7-4845-4fde-b623-be33e9004a6d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.70600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2957369,"on_next_draw_uptime":2957485,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86abe185-0e7b-45da-912c-47e44ca0ed13","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:19.59300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2972373,"utime":54,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"99e3573b-de7f-4e90-8f7b-4cb3cc05859b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2214,"total_pss":34476,"rss":107428,"native_total_heap":25016,"native_free_heap":1847,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"a16d04b4-1aca-43c6-b1b7-56570df6fec7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":2987601,"on_next_draw_uptime":2987829,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9271a9-dfcc-4816-a5cd-4796a2cdd3b0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987786,"end_time":2987821,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9fdff6-c32d-4a39-a07a-1e8dd3517731","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.59300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"adde9607-43af-4ed8-902b-2cf6f1965e9f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.59100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2be8fa0-4321-4847-8427-4e4d9d351b37","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3014,"total_pss":34252,"rss":106868,"native_total_heap":25016,"native_free_heap":2044,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b34015b5-4dcf-4ae1-9382-fb5c9339000e","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":442,"total_pss":37161,"rss":112360,"native_total_heap":25016,"native_free_heap":1614,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"bb3a9372-59c3-471a-a438-8b2f074880a4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2957369,"utime":43,"cutime":0,"cstime":0,"stime":45,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be2cd0e4-d13a-4345-900f-2b2d5303ab09","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.70200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be71d5ac-32e0-4d58-97da-a9a28aa2a282","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5b3c992-245c-47ac-a61e-d07f62a7696a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.59300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2526,"total_pss":34234,"rss":107256,"native_total_heap":25016,"native_free_heap":1915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c6e425f8-9369-4af6-9bf6-e8bf94efc084","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:20.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2890,"total_pss":33916,"rss":106868,"native_total_heap":25016,"native_free_heap":1992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"cef8483a-3126-4ede-8ce9-16f23c7cf077","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d1818ffa-127f-49c2-8d50-a3d9e584e955","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.95500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d6bc16f2-9d06-4ccf-af72-230d79a9beca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d88b6436-01cd-4971-86d3-07fe95165440","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987371,"utime":62,"cutime":0,"cstime":0,"stime":62,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"e10c5bc8-ac17-4c83-9d9a-8d28c9671093","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:06.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3810,"total_pss":35268,"rss":110064,"native_total_heap":25016,"native_free_heap":2225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb4392dc-7574-4a0e-ad2b-badaf5ddbe24","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.82000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb85bffd-a57b-430e-ac2e-efd9c876ffad","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:18.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2978,"total_pss":33865,"rss":106868,"native_total_heap":25016,"native_free_heap":2028,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ec754b14-0db6-46f3-9f68-57b22032e497","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.59500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3254,"total_pss":34078,"rss":106868,"native_total_heap":25016,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ecfda035-2df6-49d8-ba82-c2dc8b84a03a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:26.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2302,"total_pss":34426,"rss":107428,"native_total_heap":25016,"native_free_heap":1883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f339c549-8e93-466d-8b19-8e17c32cc63b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.90400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2955654,"end_time":2955684,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"012792d0-fa3c-48b9-b822-75970ab82c84","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:07.59200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2960373,"utime":47,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"05946601-bfd5-4e33-a89b-13eda0f0e0ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:08.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3722,"total_pss":33615,"rss":106072,"native_total_heap":25016,"native_free_heap":2188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"08e82d31-4056-43dd-b375-ad5be0ea54c9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.65900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987390,"end_time":2987439,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0b320ce3-b8d3-4dc6-9de8-e0580624a851","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.61400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2977376,"end_time":2977395,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"0eec352a-765f-41a3-81e6-cc3fb21ea48c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.78200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987553,"end_time":2987562,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1598d97e-1051-4cf8-901f-1cfd23f92b4d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2981370,"utime":59,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"167e6ca5-2c49-46f9-9589-4512197529f2","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":933,"total_pss":38738,"rss":116168,"native_total_heap":26040,"native_free_heap":1607,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"18c94390-cb28-40a9-8ef4-338e3911137c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.00400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":null,"start_time":2987725,"end_time":2987784,"failure_reason":"java.net.UnknownHostException","failure_description":"Unable to resolve host \"httpbin.org\": No address associated with hostname","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1cee70bd-ebd7-4669-baef-977f60a9fa0a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2969372,"utime":52,"cutime":0,"cstime":0,"stime":51,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"1fab5c4a-589e-485b-99c4-ac4d7fca3781","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3650,"total_pss":33650,"rss":106288,"native_total_heap":25016,"native_free_heap":2157,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"212476c7-f438-4733-80d2-39c8d37fda5f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:31.59100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2984371,"utime":59,"cutime":0,"cstime":0,"stime":60,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"242ce1c9-f840-48c4-9236-187609165d2f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2975372,"utime":55,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"27e1dd4b-b91a-4d51-8f63-86774a80c630","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:32.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2074,"total_pss":34495,"rss":107796,"native_total_heap":25272,"native_free_heap":2057,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"2df8601c-0ffe-419d-9bae-f77dfd57a3e9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1986,"total_pss":34551,"rss":109116,"native_total_heap":25272,"native_free_heap":2018,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"35cd1168-8e96-4212-acd1-a49a66926b1f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:12.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3598,"total_pss":33711,"rss":106288,"native_total_heap":25016,"native_free_heap":2136,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"3bc3fc94-279f-4704-8655-a0f7c4a2fbd8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:30.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2178,"total_pss":34504,"rss":107428,"native_total_heap":25016,"native_free_heap":1831,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"42b9b559-8b26-4498-a3d6-21be120a287b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bac4075-3dbc-42db-9e75-f1b7eb697912","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.64800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2957383,"end_time":2957429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5bdfa6ad-649f-40d5-a438-6c161781f4f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:13.59000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2966371,"utime":50,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6221d65e-e289-47a2-9cf0-7e1783522369","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.62300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2967380,"end_time":2967404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"63ee15eb-ae8a-4dbc-9e5f-6e25d4ef4c92","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:22.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2802,"total_pss":33964,"rss":106868,"native_total_heap":25016,"native_free_heap":1960,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"65e66a48-50d4-45d5-9b50-82ac06cbf1ec","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.58400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6be41a06-ff39-49e3-9c1e-36fdf6269d68","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:25.59000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2978370,"utime":57,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"6e4c75bd-3b32-42c8-aaab-9ce9aaefd105","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987727,"utime":65,"cutime":0,"cstime":0,"stime":63,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"77c62f02-1dc6-4eb9-b393-acf88aae1217","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:10.59000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2963371,"utime":48,"cutime":0,"cstime":0,"stime":48,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"79dd0030-8892-4598-8692-4533f7141f98","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.87800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"821d78a7-4845-4fde-b623-be33e9004a6d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.70600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2957369,"on_next_draw_uptime":2957485,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86abe185-0e7b-45da-912c-47e44ca0ed13","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:19.59300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2972373,"utime":54,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"99e3573b-de7f-4e90-8f7b-4cb3cc05859b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:28.59000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2214,"total_pss":34476,"rss":107428,"native_total_heap":25016,"native_free_heap":1847,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"a16d04b4-1aca-43c6-b1b7-56570df6fec7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04800000Z","type":"warm_launch","warm_launch":{"app_visible_uptime":2987601,"on_next_draw_uptime":2987829,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":true,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9271a9-dfcc-4816-a5cd-4796a2cdd3b0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:35.04000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2987786,"end_time":2987821,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"aa9fdff6-c32d-4a39-a07a-1e8dd3517731","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:36.59300000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"adde9607-43af-4ed8-902b-2cf6f1965e9f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.59100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2be8fa0-4321-4847-8427-4e4d9d351b37","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:16.59400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3014,"total_pss":34252,"rss":106868,"native_total_heap":25016,"native_free_heap":2044,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b34015b5-4dcf-4ae1-9382-fb5c9339000e","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":442,"total_pss":37161,"rss":112360,"native_total_heap":25016,"native_free_heap":1614,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"bb3a9372-59c3-471a-a438-8b2f074880a4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2957369,"utime":43,"cutime":0,"cstime":0,"stime":45,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be2cd0e4-d13a-4345-900f-2b2d5303ab09","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.70200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"be71d5ac-32e0-4d58-97da-a9a28aa2a282","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.94500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5b3c992-245c-47ac-a61e-d07f62a7696a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:24.59300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2526,"total_pss":34234,"rss":107256,"native_total_heap":25016,"native_free_heap":1915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c6e425f8-9369-4af6-9bf6-e8bf94efc084","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:20.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2890,"total_pss":33916,"rss":106868,"native_total_heap":25016,"native_free_heap":1992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"cef8483a-3126-4ede-8ce9-16f23c7cf077","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.71700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d1818ffa-127f-49c2-8d50-a3d9e584e955","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.95500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d6bc16f2-9d06-4ccf-af72-230d79a9beca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:04.58100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"d88b6436-01cd-4971-86d3-07fe95165440","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.59100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2987371,"utime":62,"cutime":0,"cstime":0,"stime":62,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"e10c5bc8-ac17-4c83-9d9a-8d28c9671093","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:06.60600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3810,"total_pss":35268,"rss":110064,"native_total_heap":25016,"native_free_heap":2225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb4392dc-7574-4a0e-ad2b-badaf5ddbe24","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:34.82000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity","saved_instance_state":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"eb85bffd-a57b-430e-ac2e-efd9c876ffad","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:18.59200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2978,"total_pss":33865,"rss":106868,"native_total_heap":25016,"native_free_heap":2028,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ec754b14-0db6-46f3-9f68-57b22032e497","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:14.59500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3254,"total_pss":34078,"rss":106868,"native_total_heap":25016,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ecfda035-2df6-49d8-ba82-c2dc8b84a03a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:26.59100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":2302,"total_pss":34426,"rss":107428,"native_total_heap":25016,"native_free_heap":1883,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f339c549-8e93-466d-8b19-8e17c32cc63b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.90400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":2955654,"end_time":2955684,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json b/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json index b0ed0a440..0e57433a5 100644 --- a/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json +++ b/self-host/session-data/sh.measure.sample/1.0/576ff39a-e5c7-45d4-a194-fcd1263d8d32.json @@ -1 +1 @@ -[{"id":"080cf7c1-f0dd-430c-ac86-c6fa49960ad1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1082,"total_pss":35401,"rss":107640,"native_total_heap":25784,"native_free_heap":2853,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08a245bd-8df4-448b-8199-13323db474df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":903227,"utime":283,"cutime":0,"cstime":0,"stime":316,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c42e6ce-9017-43eb-a1d5-b5438e545414","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:30.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":879228,"utime":269,"cutime":0,"cstime":0,"stime":300,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24de27b3-3af5-4c5c-805d-1f4b089d32ce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912416,"end_time":912430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2559a1fc-b146-428d-9e04-4f68239c704f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1206,"total_pss":35321,"rss":107424,"native_total_heap":25784,"native_free_heap":2906,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"269ed032-500a-4a54-8613-4cbdb52aea6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2206,"total_pss":34477,"rss":106652,"native_total_heap":25784,"native_free_heap":3082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a216550-1b52-4612-a0a3-339e362d8061","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882398,"end_time":882415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2eb2f560-cc5b-4be4-88f8-a48a499e79d7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":242,"total_pss":36170,"rss":108256,"native_total_heap":25784,"native_free_heap":2754,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed05be0-fe2c-40f4-8a7d-70bc5b4ced56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3340,"total_pss":33483,"rss":105632,"native_total_heap":25784,"native_free_heap":3303,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3223e2c1-a4df-4aa7-b8e9-8904448bc2a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":918228,"utime":293,"cutime":0,"cstime":0,"stime":328,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"369fdf16-43f5-4aec-ab6a-c1fa64565526","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912397,"end_time":912409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3fc6f0d6-4f48-4f9c-8fb5-dab10d7ce8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3252,"total_pss":33535,"rss":105844,"native_total_heap":25784,"native_free_heap":3271,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426afcc8-2257-4cf0-a473-4bfc8dcb3216","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2154,"total_pss":34505,"rss":106652,"native_total_heap":25784,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"505a3663-9f74-4534-993c-a8c67db1db9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3350,"total_pss":33533,"rss":105676,"native_total_heap":25784,"native_free_heap":3336,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54bf7c9a-5f6a-4817-94e1-cb9a07bde8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3128,"total_pss":33611,"rss":105844,"native_total_heap":25784,"native_free_heap":3219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61c47685-483b-4050-bdbc-aeb012f3ddb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3050,"total_pss":33713,"rss":105676,"native_total_heap":25784,"native_free_heap":3215,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bfced7c-2926-40fb-b469-ae2ec57bb03e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":885228,"utime":273,"cutime":0,"cstime":0,"stime":305,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"844e0b88-5102-45c4-8fd5-7f49632ff5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2278,"total_pss":34425,"rss":106188,"native_total_heap":25784,"native_free_heap":3114,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84bad7d4-246f-4966-84d3-d83d4e14d802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922399,"end_time":922416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"866e0267-2ca5-4569-89fc-07a04e3ecc95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":876227,"utime":266,"cutime":0,"cstime":0,"stime":298,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9004b2c1-bf45-496a-b1b2-98867a0a29e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2066,"total_pss":34557,"rss":106652,"native_total_heap":25784,"native_free_heap":3030,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ecf81d-5b69-4477-a60c-a7599e32227c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":891228,"utime":275,"cutime":0,"cstime":0,"stime":308,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"944f1f35-9834-4325-82e5-973beaa397a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902397,"end_time":902408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0abb9fb-f30b-41fe-8494-63f73cb1b47f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902416,"end_time":902433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5192f1e-67ba-46a1-ba02-079db8e956bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882423,"end_time":882433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a72068e2-d416-435f-94e4-b6e98caf4365","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3200,"total_pss":33563,"rss":105844,"native_total_heap":25784,"native_free_heap":3255,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa5d6e42-c393-4324-bafe-b0e5ad22ceb8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1294,"total_pss":35269,"rss":107424,"native_total_heap":25784,"native_free_heap":2942,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae517458-3a62-4311-bb80-b5c68e219a97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":314,"total_pss":36122,"rss":108260,"native_total_heap":25784,"native_free_heap":2786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d1e6c4-7aa6-4a6b-9318-968f637a7757","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":912228,"utime":288,"cutime":0,"cstime":0,"stime":320,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4d982b7-f7f5-4739-93f9-bfe60bb4c0d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":900227,"utime":279,"cutime":0,"cstime":0,"stime":313,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be172cc0-fd71-4a49-9b52-355ada78e542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":894227,"utime":277,"cutime":0,"cstime":0,"stime":310,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"befcb61d-3906-40c0-af99-8fef295e8857","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":190,"total_pss":36194,"rss":108256,"native_total_heap":25784,"native_free_heap":2738,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c327ab24-87ce-4f4b-9558-437847513307","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":906227,"utime":283,"cutime":0,"cstime":0,"stime":317,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c41483e0-e3f9-4080-adff-4202e9934fc9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4248,"total_pss":32698,"rss":104728,"native_total_heap":25784,"native_free_heap":3423,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4c8791b-1f4f-48d9-b5e5-ffb841d8f075","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1346,"total_pss":35241,"rss":107424,"native_total_heap":25784,"native_free_heap":2958,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94d28a8-d721-456d-9bed-c60cf1e07638","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":882228,"utime":270,"cutime":0,"cstime":0,"stime":301,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb4994af-0ddf-4655-938d-54d4870ad041","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:29.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3242,"total_pss":33609,"rss":105676,"native_total_heap":25784,"native_free_heap":3283,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9e7fb2-0dee-4e0f-bd49-b8315a246d0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":888228,"utime":274,"cutime":0,"cstime":0,"stime":305,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce758a05-0224-48c8-8fef-92a6b48f5ee0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4160,"total_pss":32754,"rss":104728,"native_total_heap":25784,"native_free_heap":3391,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf141f73-ee42-4e94-a40b-50197be016a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":915228,"utime":292,"cutime":0,"cstime":0,"stime":326,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfee3ee4-bb5f-4d25-bf10-b54fb4b23d61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892396,"end_time":892409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d15779-1a95-4f83-877c-0212a5e90ba7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892416,"end_time":892420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4d722f6-2157-4f80-aff8-c91c2223d922","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":897228,"utime":279,"cutime":0,"cstime":0,"stime":312,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d501879d-df24-4270-beb4-f27936e0228d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1134,"total_pss":35373,"rss":107424,"native_total_heap":25784,"native_free_heap":2874,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1099939-73a2-44ec-b61c-007873b02a82","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:05.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3412,"total_pss":33435,"rss":105632,"native_total_heap":25784,"native_free_heap":3340,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6f53b93-e362-4d3b-9d01-36181712fd08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:00.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":909232,"utime":286,"cutime":0,"cstime":0,"stime":319,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e91d543a-b529-4e87-afe4-343c7dd1cf93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3138,"total_pss":33661,"rss":105676,"native_total_heap":25784,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe7c2c2-33c8-4332-955b-bc1a2dbf15e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":921227,"utime":295,"cutime":0,"cstime":0,"stime":330,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee8b0755-4d04-4fde-83a8-c5118c69578e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2366,"total_pss":34373,"rss":106188,"native_total_heap":25784,"native_free_heap":3150,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f82f9db4-dac7-4579-b67e-4bb558135661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3262,"total_pss":33581,"rss":105676,"native_total_heap":25784,"native_free_heap":3304,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"080cf7c1-f0dd-430c-ac86-c6fa49960ad1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1082,"total_pss":35401,"rss":107640,"native_total_heap":25784,"native_free_heap":2853,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08a245bd-8df4-448b-8199-13323db474df","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:54.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":903227,"utime":283,"cutime":0,"cstime":0,"stime":316,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c42e6ce-9017-43eb-a1d5-b5438e545414","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:30.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":879228,"utime":269,"cutime":0,"cstime":0,"stime":300,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24de27b3-3af5-4c5c-805d-1f4b089d32ce","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.37800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912416,"end_time":912430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2559a1fc-b146-428d-9e04-4f68239c704f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1206,"total_pss":35321,"rss":107424,"native_total_heap":25784,"native_free_heap":2906,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"269ed032-500a-4a54-8613-4cbdb52aea6c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2206,"total_pss":34477,"rss":106652,"native_total_heap":25784,"native_free_heap":3082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a216550-1b52-4612-a0a3-339e362d8061","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.36300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882398,"end_time":882415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2eb2f560-cc5b-4be4-88f8-a48a499e79d7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":242,"total_pss":36170,"rss":108256,"native_total_heap":25784,"native_free_heap":2754,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed05be0-fe2c-40f4-8a7d-70bc5b4ced56","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3340,"total_pss":33483,"rss":105632,"native_total_heap":25784,"native_free_heap":3303,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3223e2c1-a4df-4aa7-b8e9-8904448bc2a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":918228,"utime":293,"cutime":0,"cstime":0,"stime":328,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"369fdf16-43f5-4aec-ab6a-c1fa64565526","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":912397,"end_time":912409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3fc6f0d6-4f48-4f9c-8fb5-dab10d7ce8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:09.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3252,"total_pss":33535,"rss":105844,"native_total_heap":25784,"native_free_heap":3271,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"426afcc8-2257-4cf0-a473-4bfc8dcb3216","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2154,"total_pss":34505,"rss":106652,"native_total_heap":25784,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"505a3663-9f74-4534-993c-a8c67db1db9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3350,"total_pss":33533,"rss":105676,"native_total_heap":25784,"native_free_heap":3336,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54bf7c9a-5f6a-4817-94e1-cb9a07bde8e9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3128,"total_pss":33611,"rss":105844,"native_total_heap":25784,"native_free_heap":3219,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"61c47685-483b-4050-bdbc-aeb012f3ddb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3050,"total_pss":33713,"rss":105676,"native_total_heap":25784,"native_free_heap":3215,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6bfced7c-2926-40fb-b469-ae2ec57bb03e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:36.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":885228,"utime":273,"cutime":0,"cstime":0,"stime":305,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"844e0b88-5102-45c4-8fd5-7f49632ff5eb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2278,"total_pss":34425,"rss":106188,"native_total_heap":25784,"native_free_heap":3114,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84bad7d4-246f-4966-84d3-d83d4e14d802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:13.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":922399,"end_time":922416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"866e0267-2ca5-4569-89fc-07a04e3ecc95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":876227,"utime":266,"cutime":0,"cstime":0,"stime":298,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9004b2c1-bf45-496a-b1b2-98867a0a29e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2066,"total_pss":34557,"rss":106652,"native_total_heap":25784,"native_free_heap":3030,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ecf81d-5b69-4477-a60c-a7599e32227c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:42.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":891228,"utime":275,"cutime":0,"cstime":0,"stime":308,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"944f1f35-9834-4325-82e5-973beaa397a5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902397,"end_time":902408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a0abb9fb-f30b-41fe-8494-63f73cb1b47f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:53.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":902416,"end_time":902433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5192f1e-67ba-46a1-ba02-079db8e956bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.38000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":882423,"end_time":882433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a72068e2-d416-435f-94e4-b6e98caf4365","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3200,"total_pss":33563,"rss":105844,"native_total_heap":25784,"native_free_heap":3255,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa5d6e42-c393-4324-bafe-b0e5ad22ceb8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1294,"total_pss":35269,"rss":107424,"native_total_heap":25784,"native_free_heap":2942,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae517458-3a62-4311-bb80-b5c68e219a97","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":314,"total_pss":36122,"rss":108260,"native_total_heap":25784,"native_free_heap":2786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0d1e6c4-7aa6-4a6b-9318-968f637a7757","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":912228,"utime":288,"cutime":0,"cstime":0,"stime":320,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4d982b7-f7f5-4739-93f9-bfe60bb4c0d8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":900227,"utime":279,"cutime":0,"cstime":0,"stime":313,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be172cc0-fd71-4a49-9b52-355ada78e542","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":894227,"utime":277,"cutime":0,"cstime":0,"stime":310,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"befcb61d-3906-40c0-af99-8fef295e8857","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":190,"total_pss":36194,"rss":108256,"native_total_heap":25784,"native_free_heap":2738,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c327ab24-87ce-4f4b-9558-437847513307","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:57.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":906227,"utime":283,"cutime":0,"cstime":0,"stime":317,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c41483e0-e3f9-4080-adff-4202e9934fc9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:01.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4248,"total_pss":32698,"rss":104728,"native_total_heap":25784,"native_free_heap":3423,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4c8791b-1f4f-48d9-b5e5-ffb841d8f075","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1346,"total_pss":35241,"rss":107424,"native_total_heap":25784,"native_free_heap":2958,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94d28a8-d721-456d-9bed-c60cf1e07638","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:33.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":882228,"utime":270,"cutime":0,"cstime":0,"stime":301,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb4994af-0ddf-4655-938d-54d4870ad041","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:29.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3242,"total_pss":33609,"rss":105676,"native_total_heap":25784,"native_free_heap":3283,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9e7fb2-0dee-4e0f-bd49-b8315a246d0d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:39.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":888228,"utime":274,"cutime":0,"cstime":0,"stime":305,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce758a05-0224-48c8-8fef-92a6b48f5ee0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":4160,"total_pss":32754,"rss":104728,"native_total_heap":25784,"native_free_heap":3391,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf141f73-ee42-4e94-a40b-50197be016a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:06.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":915228,"utime":292,"cutime":0,"cstime":0,"stime":326,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfee3ee4-bb5f-4d25-bf10-b54fb4b23d61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892396,"end_time":892409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d2d15779-1a95-4f83-877c-0212a5e90ba7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":892416,"end_time":892420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4d722f6-2157-4f80-aff8-c91c2223d922","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:48.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":897228,"utime":279,"cutime":0,"cstime":0,"stime":312,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d501879d-df24-4270-beb4-f27936e0228d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1134,"total_pss":35373,"rss":107424,"native_total_heap":25784,"native_free_heap":2874,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1099939-73a2-44ec-b61c-007873b02a82","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:05.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":3412,"total_pss":33435,"rss":105632,"native_total_heap":25784,"native_free_heap":3340,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6f53b93-e362-4d3b-9d01-36181712fd08","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:00.18000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":909232,"utime":286,"cutime":0,"cstime":0,"stime":319,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e91d543a-b529-4e87-afe4-343c7dd1cf93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3138,"total_pss":33661,"rss":105676,"native_total_heap":25784,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebe7c2c2-33c8-4332-955b-bc1a2dbf15e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:09:12.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":921227,"utime":295,"cutime":0,"cstime":0,"stime":330,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee8b0755-4d04-4fde-83a8-c5118c69578e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2366,"total_pss":34373,"rss":106188,"native_total_heap":25784,"native_free_heap":3150,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f82f9db4-dac7-4579-b67e-4bb558135661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:27.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3262,"total_pss":33581,"rss":105676,"native_total_heap":25784,"native_free_heap":3304,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json b/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json index 793d141db..7e806aaaf 100644 --- a/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json +++ b/self-host/session-data/sh.measure.sample/1.0/60a6943a-6c11-4ee1-9260-42b988676747.json @@ -1 +1 @@ -[{"id":"16851054-5929-4d70-a8b4-34b04a58a462","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":186328,"total_pss":53749,"rss":142892,"native_total_heap":11864,"native_free_heap":1316,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"37c7a96d-c281-44b8-a3d7-dc29f35bfa0a","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":79305,"uptime":794439,"utime":31,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4ac1dc45-eecc-4ab2-903f-1e22d14a086c","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.90200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"8c27dcd8-18a1-4f1e-8093-5600117a7c36","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:12.04800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file +[{"id":"16851054-5929-4d70-a8b4-34b04a58a462","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":186328,"total_pss":53749,"rss":142892,"native_total_heap":11864,"native_free_heap":1316,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"37c7a96d-c281-44b8-a3d7-dc29f35bfa0a","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.75900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":79305,"uptime":794439,"utime":31,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"4ac1dc45-eecc-4ab2-903f-1e22d14a086c","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:11.90200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}},{"id":"8c27dcd8-18a1-4f1e-8093-5600117a7c36","session_id":"54cb0c7a-9467-4f3b-b053-dfea451a1e4a","timestamp":"2024-06-13T13:37:12.04800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"453fbd08-9097-47b1-ab19-827bbbccd4ae","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json b/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json index 8a54a8cd7..142da8c79 100644 --- a/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json +++ b/self-host/session-data/sh.measure.sample/1.0/615f7151-9423-43fc-883f-37f8ca0bb121.json @@ -1 +1 @@ -[{"id":"066fd9a2-1cba-4f84-ad57-95d253bf6d97","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0bad02d1-8ecf-4243-a066-25975f02bfc7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.78100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5233524,"end_time":5233739,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15242","content-type":"multipart/form-data; boundary=9ba47dfa-34f1-4659-8061-cefbb946c5d9","host":"10.0.2.2:8080","msr-req-id":"d0c21f14-892f-47a7-9c81-dd1e867abab6","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:22 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"117af96b-df2c-4971-add2-5e681f4c0c1a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.19300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":706.9702,"y":1079.9194,"touch_down_time":5233078,"touch_up_time":5233150},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"11af52da-ab81-494d-9087-63ecb070a3b2","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.66000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"166e6c11-ac6b-48f5-8cda-5f8ec60ba60e","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.60900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":563837,"uptime":5638567,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"442d7fcf-bf2f-415b-bac9-bdc949cc961d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6cdf5bfa-919c-400f-8b47-8b3dcfcfedd8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":1787,"total_pss":59156,"rss":146092,"native_total_heap":26680,"native_free_heap":1822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81e45698-744b-410d-9f26-8de928543bd7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:20.65700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5234615,"utime":93,"cutime":0,"cstime":0,"stime":84,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8530bd80-4cf1-4a84-b116-3079a67b43cc","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"918194b0-2ddd-44ae-a210-e82d90e4e92f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.75900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5231614,"on_next_draw_uptime":5231716,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"99adc4f3-7f51-4b0f-b6cd-4c459787b945","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5230634,"utime":74,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a572634f-87a0-416e-a775-be686b974304","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5231616,"utime":76,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ac9c2d8a-bad1-40be-b94f-ed6e98455123","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":543,"total_pss":58932,"rss":146936,"native_total_heap":26680,"native_free_heap":2072,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ace6e873-ef82-4a16-b193-daf8a1c992b5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.28800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5231195,"end_time":5231246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54545","content-type":"multipart/form-data; boundary=bff37b3a-a88e-4b9d-9c3e-1b1d91f49839","host":"10.0.2.2:8080","msr-req-id":"a1156417-19b5-4a41-88d1-b1fbef080967","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:19 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ad57dbf0-a5bd-4506-a0d7-87e278d3101a","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.68600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9b5b0c1-8e1c-4f1e-9912-8dae62b2e3e1","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d07a0921-c9ef-44b2-8241-a9d5163a165f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.65700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":62312,"java_free_heap":0,"total_pss":121120,"rss":240428,"native_total_heap":26800,"native_free_heap":1557,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"066fd9a2-1cba-4f84-ad57-95d253bf6d97","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21800000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0bad02d1-8ecf-4243-a066-25975f02bfc7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.78100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5233524,"end_time":5233739,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15242","content-type":"multipart/form-data; boundary=9ba47dfa-34f1-4659-8061-cefbb946c5d9","host":"10.0.2.2:8080","msr-req-id":"d0c21f14-892f-47a7-9c81-dd1e867abab6","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:22 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"117af96b-df2c-4971-add2-5e681f4c0c1a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.19300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":706.9702,"y":1079.9194,"touch_down_time":5233078,"touch_up_time":5233150},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"11af52da-ab81-494d-9087-63ecb070a3b2","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.66000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"166e6c11-ac6b-48f5-8cda-5f8ec60ba60e","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.60900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":563837,"uptime":5638567,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"442d7fcf-bf2f-415b-bac9-bdc949cc961d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6cdf5bfa-919c-400f-8b47-8b3dcfcfedd8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":1787,"total_pss":59156,"rss":146092,"native_total_heap":26680,"native_free_heap":1822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81e45698-744b-410d-9f26-8de928543bd7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:20.65700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5234615,"utime":93,"cutime":0,"cstime":0,"stime":84,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8530bd80-4cf1-4a84-b116-3079a67b43cc","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"918194b0-2ddd-44ae-a210-e82d90e4e92f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.75900000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5231614,"on_next_draw_uptime":5231716,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"99adc4f3-7f51-4b0f-b6cd-4c459787b945","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.67600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5230634,"utime":74,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a572634f-87a0-416e-a775-be686b974304","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5231616,"utime":76,"cutime":0,"cstime":0,"stime":57,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ac9c2d8a-bad1-40be-b94f-ed6e98455123","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.65900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":543,"total_pss":58932,"rss":146936,"native_total_heap":26680,"native_free_heap":2072,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ace6e873-ef82-4a16-b193-daf8a1c992b5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.28800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5231195,"end_time":5231246,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54545","content-type":"multipart/form-data; boundary=bff37b3a-a88e-4b9d-9c3e-1b1d91f49839","host":"10.0.2.2:8080","msr-req-id":"a1156417-19b5-4a41-88d1-b1fbef080967","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:19 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ad57dbf0-a5bd-4506-a0d7-87e278d3101a","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:04.68600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9b5b0c1-8e1c-4f1e-9912-8dae62b2e3e1","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:17.21900000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d07a0921-c9ef-44b2-8241-a9d5163a165f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:19.65700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":62312,"java_free_heap":0,"total_pss":121120,"rss":240428,"native_total_heap":26800,"native_free_heap":1557,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json b/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json index 062a304a9..cee19894b 100644 --- a/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json +++ b/self-host/session-data/sh.measure.sample/1.0/690139b4-0da0-4776-9555-556124f0dd6b.json @@ -1 +1 @@ -[{"id":"01655aff-316a-4634-a4c2-159bcc2d71cf","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.77200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c04bdda-cbd5-47b9-b5d1-cee0d7d711ec","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184007,"total_pss":62593,"rss":156192,"native_total_heap":12376,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0eca862c-4b4b-4528-b646-3dccd75f5641","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bbcee0-edc3-4839-b85c-84fef0e9e8f7","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.67300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_oom_exception","width":579,"height":132,"x":663.95874,"y":921.9287,"touch_down_time":5109080,"touch_up_time":5109163},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11d6d171-75a9-4941-bd06-b4f15f0cc931","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.26400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5115761,"utime":20,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b544928-3a1a-43f7-985e-5bb1408141ed","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:54.09000000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"9955"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e1dcf82-22d7-4cc2-a380-36fa248c68f9","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.36300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":511141,"uptime":5111860,"utime":19,"cutime":0,"cstime":0,"stime":1,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33ec8d5c-0fc0-44db-8409-033f6bf699ca","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.91500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5109352,"end_time":5109411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3be61b82-658c-4305-9b31-78f31adc00ca","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.92500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112373,"end_time":5112422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46306504-78be-470c-a8d0-f24fb3ba0776","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.76000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5105621,"process_start_requested_uptime":5105526,"content_provider_attach_uptime":5105908,"on_next_draw_uptime":5106256,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4678da68-84f8-42ca-8630-7cd2e6cf2c11","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.24400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108676,"end_time":5108741,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47c5b3af-b850-4f32-b463-e310cc3328ac","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:02.64300000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10093"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4884e440-ce6d-4d7a-a0cb-5dc79a827bf7","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.34200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527a5ec2-bb9b-4c35-8e54-cebcbe46c24a","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.94200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5102823,"process_start_requested_uptime":5102516,"content_provider_attach_uptime":5103141,"on_next_draw_uptime":5103438,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54e4c7f4-b445-4f0b-b81a-7739f5e545cb","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:56.87800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10004"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"598edadf-cdff-4188-a68d-770a71fe1d21","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f775e2-f1a8-4d41-ac39-2a2918664d20","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:55.14800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5104591,"end_time":5104644,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62cde5ba-baaf-40a4-b5cc-281d42cb305e","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a4c47ba-9b49-4fb3-a287-287ee01482be","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.49000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183846,"total_pss":63390,"rss":169668,"native_total_heap":21616,"native_free_heap":1209,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e673405-2013-4284-8e51-52c389019eee","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f603031-bfb4-4f54-a8a2-4f91acb5b942","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5113662,"end_time":5113944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"714e3f0b-6d31-4f5c-b48b-9dbd66c407c8","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.94300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106407,"end_time":5106440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77a2202e-6daf-4519-a15e-c7a45382d121","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.98800000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5107857,"process_start_requested_uptime":5107775,"content_provider_attach_uptime":5108144,"on_next_draw_uptime":5108484,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c09377-5365-407f-ab3b-a60d222e900a","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.34400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":118423,"java_free_heap":0,"total_pss":208402,"rss":328944,"native_total_heap":33044,"native_free_heap":1504,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d2fab13-afed-4acd-b932-625041367645","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.50900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fca4949-595d-4ee3-8362-27e8971856f4","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.37600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183862,"total_pss":61461,"rss":157504,"native_total_heap":12376,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9065bfe5-a312-4f8d-a474-0cd0c8a4623e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92bc1f8d-125a-4dc9-b44c-285e7dc3e10e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:57.34400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":603.9734,"y":819.96643,"touch_down_time":5106768,"touch_up_time":5106839},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94abffe5-d902-49a2-956f-7904a44f9e3d","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.12100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5103577,"end_time":5103618,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"977c266a-5335-4fb5-beea-0e98fc4cab25","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:00.69600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":131386,"java_free_heap":22959,"total_pss":90247,"rss":176228,"native_total_heap":33008,"native_free_heap":2029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97d9907a-f2dd-4282-87df-1815ece57a22","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bfd4ca9-10bb-4650-b44d-862a218a4ddf","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.52700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636b942-86b1-4155-ab48-b1e14d28b3ee","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112320,"end_time":5112360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac006d37-055d-44d2-9314-a074b8335944","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.87400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad0fcba9-568b-42c9-9a23-14d058e41b2a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.29500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108754,"end_time":5108791,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49209ca-a75b-481a-b435-5f78c3439da4","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510778,"uptime":5108211,"utime":18,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccb828f0-581e-42df-a0bf-b4fdfbd65f9a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.86500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfebf211-62fe-440a-a6a1-7504043e8491","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.49800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d04fba65-2041-4845-a8e1-15e0e6d0168e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:59.07800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10051"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d564b24f-da6d-4569-8626-c3bb8caedd00","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.99800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106455,"end_time":5106495,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d67b87bd-76f3-4453-b57f-e13d5d1beb1b","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.46300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":510553,"uptime":5105960,"utime":15,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df796208-ac6d-4bc3-994d-2383f62b8db7","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:03.40300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":589.9658,"y":1063.9307,"touch_down_time":5112822,"touch_up_time":5112896},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e209a1d7-e80a-47c6-af53-9bfbe02fd6a6","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.63900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5111506,"process_start_requested_uptime":5111410,"content_provider_attach_uptime":5111793,"on_next_draw_uptime":5112135,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e30f2fad-eee4-4ce3-a890-63cd76c3d0a2","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183830,"total_pss":62951,"rss":152704,"native_total_heap":12376,"native_free_heap":1291,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e397b532-289d-4f93-8c25-8b4d1778093e","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e65ff93a-d06e-43ce-bae3-6d6831297739","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.93100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":515.9729,"y":652.9651,"touch_down_time":5104364,"touch_up_time":5104426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0aa084e-4ede-43dd-9f57-bbd0f1638c5b","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.75800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1e7141d-88d3-4eb8-874c-9d872be8216c","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.16500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108593,"end_time":5108662,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f869d9bc-633a-4b96-84c2-29f21f77671e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.97900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112427,"end_time":5112476,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fba46a88-5bae-430a-87bf-f416e93f2187","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.81000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112257,"end_time":5112307,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"01655aff-316a-4634-a4c2-159bcc2d71cf","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.77200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c04bdda-cbd5-47b9-b5d1-cee0d7d711ec","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184007,"total_pss":62593,"rss":156192,"native_total_heap":12376,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0eca862c-4b4b-4528-b646-3dccd75f5641","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10bbcee0-edc3-4839-b85c-84fef0e9e8f7","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.67300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_oom_exception","width":579,"height":132,"x":663.95874,"y":921.9287,"touch_down_time":5109080,"touch_up_time":5109163},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11d6d171-75a9-4941-bd06-b4f15f0cc931","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.26400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":511520,"uptime":5115761,"utime":20,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b544928-3a1a-43f7-985e-5bb1408141ed","session_id":"fd8a759c-3ab7-410a-9ccf-a121a1f3e3cf","timestamp":"2024-05-03T23:33:54.09000000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"9955"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e1dcf82-22d7-4cc2-a380-36fa248c68f9","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.36300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":511141,"uptime":5111860,"utime":19,"cutime":0,"cstime":0,"stime":1,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33ec8d5c-0fc0-44db-8409-033f6bf699ca","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.91500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5109352,"end_time":5109411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3be61b82-658c-4305-9b31-78f31adc00ca","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.92500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112373,"end_time":5112422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46306504-78be-470c-a8d0-f24fb3ba0776","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.76000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5105621,"process_start_requested_uptime":5105526,"content_provider_attach_uptime":5105908,"on_next_draw_uptime":5106256,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4678da68-84f8-42ca-8630-7cd2e6cf2c11","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.24400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108676,"end_time":5108741,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47c5b3af-b850-4f32-b463-e310cc3328ac","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:02.64300000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10093"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4884e440-ce6d-4d7a-a0cb-5dc79a827bf7","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.34200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527a5ec2-bb9b-4c35-8e54-cebcbe46c24a","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.94200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5102823,"process_start_requested_uptime":5102516,"content_provider_attach_uptime":5103141,"on_next_draw_uptime":5103438,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54e4c7f4-b445-4f0b-b81a-7739f5e545cb","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:56.87800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10004"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"598edadf-cdff-4188-a68d-770a71fe1d21","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59f775e2-f1a8-4d41-ac39-2a2918664d20","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:55.14800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5104591,"end_time":5104644,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"62cde5ba-baaf-40a4-b5cc-281d42cb305e","session_id":"c68b1e6b-eca1-4ee6-903f-1fd41c927a60","timestamp":"2024-05-03T23:34:06.43400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a4c47ba-9b49-4fb3-a287-287ee01482be","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.49000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183846,"total_pss":63390,"rss":169668,"native_total_heap":21616,"native_free_heap":1209,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e673405-2013-4284-8e51-52c389019eee","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f603031-bfb4-4f54-a8a2-4f91acb5b942","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5113662,"end_time":5113944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"714e3f0b-6d31-4f5c-b48b-9dbd66c407c8","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.94300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106407,"end_time":5106440,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77a2202e-6daf-4519-a15e-c7a45382d121","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.98800000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5107857,"process_start_requested_uptime":5107775,"content_provider_attach_uptime":5108144,"on_next_draw_uptime":5108484,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77c09377-5365-407f-ab3b-a60d222e900a","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:04.34400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":118423,"java_free_heap":0,"total_pss":208402,"rss":328944,"native_total_heap":33044,"native_free_heap":1504,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d2fab13-afed-4acd-b932-625041367645","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.50900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8fca4949-595d-4ee3-8362-27e8971856f4","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.37600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183862,"total_pss":61461,"rss":157504,"native_total_heap":12376,"native_free_heap":1277,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9065bfe5-a312-4f8d-a474-0cd0c8a4623e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.41300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92bc1f8d-125a-4dc9-b44c-285e7dc3e10e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:57.34400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":603.9734,"y":819.96643,"touch_down_time":5106768,"touch_up_time":5106839},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94abffe5-d902-49a2-956f-7904a44f9e3d","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.12100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5103577,"end_time":5103618,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"977c266a-5335-4fb5-beea-0e98fc4cab25","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:34:00.69600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":131386,"java_free_heap":22959,"total_pss":90247,"rss":176228,"native_total_heap":33008,"native_free_heap":2029,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97d9907a-f2dd-4282-87df-1815ece57a22","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.64100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9bfd4ca9-10bb-4650-b44d-862a218a4ddf","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.52700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a636b942-86b1-4155-ab48-b1e14d28b3ee","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112320,"end_time":5112360,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac006d37-055d-44d2-9314-a074b8335944","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.87400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad0fcba9-568b-42c9-9a23-14d058e41b2a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.29500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108754,"end_time":5108791,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49209ca-a75b-481a-b435-5f78c3439da4","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.71400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":510778,"uptime":5108211,"utime":18,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccb828f0-581e-42df-a0bf-b4fdfbd65f9a","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:58.86500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfebf211-62fe-440a-a6a1-7504043e8491","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.49800000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d04fba65-2041-4845-a8e1-15e0e6d0168e","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:59.07800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"10051"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d564b24f-da6d-4569-8626-c3bb8caedd00","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.99800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5106455,"end_time":5106495,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d67b87bd-76f3-4453-b57f-e13d5d1beb1b","session_id":"de649f1e-2856-42ec-927f-537a15f2e129","timestamp":"2024-05-03T23:33:56.46300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":510553,"uptime":5105960,"utime":15,"cutime":0,"cstime":0,"stime":4,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df796208-ac6d-4bc3-994d-2383f62b8db7","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:03.40300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_stack_overflow_exception","width":848,"height":132,"x":589.9658,"y":1063.9307,"touch_down_time":5112822,"touch_up_time":5112896},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e209a1d7-e80a-47c6-af53-9bfbe02fd6a6","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.63900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5111506,"process_start_requested_uptime":5111410,"content_provider_attach_uptime":5111793,"on_next_draw_uptime":5112135,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e30f2fad-eee4-4ce3-a890-63cd76c3d0a2","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183830,"total_pss":62951,"rss":152704,"native_total_heap":12376,"native_free_heap":1291,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e397b532-289d-4f93-8c25-8b4d1778093e","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.86700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e65ff93a-d06e-43ce-bae3-6d6831297739","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:54.93100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":515.9729,"y":652.9651,"touch_down_time":5104364,"touch_up_time":5104426},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0aa084e-4ede-43dd-9f57-bbd0f1638c5b","session_id":"795f8de7-12cd-482d-8e86-0ff493350d95","timestamp":"2024-05-03T23:33:53.75800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1e7141d-88d3-4eb8-874c-9d872be8216c","session_id":"f1681cff-4da9-4a33-bb1f-ed5d00b21b90","timestamp":"2024-05-03T23:33:59.16500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5108593,"end_time":5108662,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f869d9bc-633a-4b96-84c2-29f21f77671e","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.97900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112427,"end_time":5112476,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fba46a88-5bae-430a-87bf-f416e93f2187","session_id":"11fe01f2-baa4-4b43-bae7-634c7f79d889","timestamp":"2024-05-03T23:34:02.81000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5112257,"end_time":5112307,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json b/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json index 6f6a33213..975ee8be5 100644 --- a/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json +++ b/self-host/session-data/sh.measure.sample/1.0/6c2c124e-1691-4d33-92d9-bba77fbe6646.json @@ -1 +1 @@ -[{"id":"02a80328-1e38-419f-8e6c-bff36bebcc06","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.84000000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08efa24f-99b0-406a-a76c-18e2c86d1711","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0c23c583-a10b-45e4-841d-ed7bad6a2283","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":266,"total_pss":38069,"rss":118256,"native_total_heap":24188,"native_free_heap":1470,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1ea317d6-ab7c-499e-9778-afb56a4712bb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.72100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29eb5ccf-a07c-4888-b055-ad91a7fb074d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5673879,"utime":54,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2d2609b5-cdc8-4885-81a2-898444d263cd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.92000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":354,"total_pss":38231,"rss":118268,"native_total_heap":24188,"native_free_heap":1499,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2fc2a285-66ca-49df-bc9a-f2832e3ce531","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.49100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5671692,"end_time":5673449,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:41 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"302c9fa1-ac75-4d0f-81ba-66951964068d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.02600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5662900,"end_time":5662984,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41853","content-type":"multipart/form-data; boundary=23d40ff5-6118-4275-a983-e00f09a8597a","host":"10.0.2.2:8080","msr-req-id":"8591c71a-8a60-4773-937e-f0543dc48bb5","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ac70d8b-2ddc-4a18-a399-d4dfbc852bc8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":938,"total_pss":38586,"rss":118180,"native_total_heap":24188,"native_free_heap":1678,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ffc11d0-7741-4d31-874d-a65948c530a0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e94b704-6c47-415b-bcd4-5cbbefd137e2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.55100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7aa097c3-45df-4a32-9fe1-a05b4241ae5d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2281,"total_pss":40314,"rss":122720,"native_total_heap":24700,"native_free_heap":1610,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"80e352cc-b361-445f-9b0a-88eae47f6381","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5664879,"utime":23,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"825f0dbb-cef4-4cbc-babf-1c0b050a90d0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:38.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2709,"total_pss":39961,"rss":121960,"native_total_heap":24700,"native_free_heap":1854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8596842d-720d-4f56-ab88-157849a4e867","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9e470bc4-3626-4dc4-b23c-be4425ee9cf5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.17200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":111.99463,"y":332.98645,"end_x":1032.9675,"end_y":346.94275,"direction":"right","touch_down_time":5666733,"touch_up_time":5667128},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a1b7b324-3c30-4243-959e-924d7c17f498","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5670879,"utime":47,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a8953693-0113-470d-bd47-db04084cc5fc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.29200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":492.96753,"y":1370.9015,"end_x":492.96753,"end_y":471.9397,"direction":"up","touch_down_time":5666047,"touch_up_time":5666248},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"aa3ae279-e533-4cb2-947b-6bd538243d90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.33300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"af1909df-e56a-4f94-94a8-a244bac7ee2e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.61600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":492.96753,"y":816.9177,"touch_down_time":5665464,"touch_up_time":5665551},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bc92475b-852a-4a42-b43e-31f8d021a7fe","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.88600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_5","width":null,"height":null,"x":492.96753,"y":1335.943,"touch_down_time":5665759,"touch_up_time":5665838},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cd1331c1-6c78-4128-8ccc-050bbe3b130e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.80300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ce4f67d9-70b2-40e5-9274-815c8899b255","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4022,"total_pss":33117,"rss":110440,"native_total_heap":24188,"native_free_heap":2097,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cfa6623b-3a52-4288-8d9f-dedf772606b5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5667879,"utime":45,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"db9bea06-1fbb-484c-b084-d6bd40ec0109","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e59a0224-5e58-4c53-b4a5-64217c77fdbc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.89000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"edc79db2-b29d-45f8-a15d-3483ac76ff33","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":3010,"total_pss":33667,"rss":111696,"native_total_heap":24188,"native_free_heap":2039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ee84b235-36b1-4583-90e7-bf9bdaf21b2f","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.57800000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fafc6e1a-0003-4901-b365-59ccb76518fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe540f2f-5486-4e0d-996d-92ef7f7edb1c","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.69400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":568.97095,"y":1439.9377,"touch_down_time":5671589,"touch_up_time":5671650},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"02a80328-1e38-419f-8e6c-bff36bebcc06","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.84000000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08efa24f-99b0-406a-a76c-18e2c86d1711","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0c23c583-a10b-45e4-841d-ed7bad6a2283","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":266,"total_pss":38069,"rss":118256,"native_total_heap":24188,"native_free_heap":1470,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1ea317d6-ab7c-499e-9778-afb56a4712bb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.72100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29eb5ccf-a07c-4888-b055-ad91a7fb074d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.92100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5673879,"utime":54,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2d2609b5-cdc8-4885-81a2-898444d263cd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.92000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":354,"total_pss":38231,"rss":118268,"native_total_heap":24188,"native_free_heap":1499,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2fc2a285-66ca-49df-bc9a-f2832e3ce531","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.49100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5671692,"end_time":5673449,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:41 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"302c9fa1-ac75-4d0f-81ba-66951964068d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.02600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5662900,"end_time":5662984,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41853","content-type":"multipart/form-data; boundary=23d40ff5-6118-4275-a983-e00f09a8597a","host":"10.0.2.2:8080","msr-req-id":"8591c71a-8a60-4773-937e-f0543dc48bb5","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:31 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ac70d8b-2ddc-4a18-a399-d4dfbc852bc8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":938,"total_pss":38586,"rss":118180,"native_total_heap":24188,"native_free_heap":1678,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ffc11d0-7741-4d31-874d-a65948c530a0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.70900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e94b704-6c47-415b-bcd4-5cbbefd137e2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.55100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7aa097c3-45df-4a32-9fe1-a05b4241ae5d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:40.92200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2281,"total_pss":40314,"rss":122720,"native_total_heap":24700,"native_free_heap":1610,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"80e352cc-b361-445f-9b0a-88eae47f6381","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5664879,"utime":23,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"825f0dbb-cef4-4cbc-babf-1c0b050a90d0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:38.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":2709,"total_pss":39961,"rss":121960,"native_total_heap":24700,"native_free_heap":1854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8596842d-720d-4f56-ab88-157849a4e867","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9e470bc4-3626-4dc4-b23c-be4425ee9cf5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.17200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":111.99463,"y":332.98645,"end_x":1032.9675,"end_y":346.94275,"direction":"right","touch_down_time":5666733,"touch_up_time":5667128},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a1b7b324-3c30-4243-959e-924d7c17f498","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:36.92100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5670879,"utime":47,"cutime":0,"cstime":0,"stime":32,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a8953693-0113-470d-bd47-db04084cc5fc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:32.29200000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":492.96753,"y":1370.9015,"end_x":492.96753,"end_y":471.9397,"direction":"up","touch_down_time":5666047,"touch_up_time":5666248},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"aa3ae279-e533-4cb2-947b-6bd538243d90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.33300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"af1909df-e56a-4f94-94a8-a244bac7ee2e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.61600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":492.96753,"y":816.9177,"touch_down_time":5665464,"touch_up_time":5665551},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bc92475b-852a-4a42-b43e-31f8d021a7fe","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:31.88600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_5","width":null,"height":null,"x":492.96753,"y":1335.943,"touch_down_time":5665759,"touch_up_time":5665838},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cd1331c1-6c78-4128-8ccc-050bbe3b130e","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.80300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ce4f67d9-70b2-40e5-9274-815c8899b255","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4022,"total_pss":33117,"rss":110440,"native_total_heap":24188,"native_free_heap":2097,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cfa6623b-3a52-4288-8d9f-dedf772606b5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:33.92100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5667879,"utime":45,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"db9bea06-1fbb-484c-b084-d6bd40ec0109","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:39.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e59a0224-5e58-4c53-b4a5-64217c77fdbc","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:34.89000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"edc79db2-b29d-45f8-a15d-3483ac76ff33","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:30.92300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":3010,"total_pss":33667,"rss":111696,"native_total_heap":24188,"native_free_heap":2039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ee84b235-36b1-4583-90e7-bf9bdaf21b2f","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:29.57800000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fafc6e1a-0003-4901-b365-59ccb76518fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe540f2f-5486-4e0d-996d-92ef7f7edb1c","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:37.69400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":568.97095,"y":1439.9377,"touch_down_time":5671589,"touch_up_time":5671650},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json b/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json index c1a123874..62e2d2066 100644 --- a/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json +++ b/self-host/session-data/sh.measure.sample/1.0/7396da4e-6350-4279-a2b6-5ea116f87a28.json @@ -1 +1 @@ -[{"id":"0731a7b1-1a36-4fc6-91e6-9a00a43e28e3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":194676,"utime":33,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a93ae72-fe71-43e0-94aa-93b088ec7a13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":491,"total_pss":25373,"rss":70760,"native_total_heap":22524,"native_free_heap":1162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13130612-53a6-4fdc-9f51-cdc80ce60efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":351,"total_pss":23353,"rss":69092,"native_total_heap":22780,"native_free_heap":1137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f3e7601-f137-4645-ba9e-04724273e2ad","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:01.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1647,"total_pss":24151,"rss":76444,"native_total_heap":23036,"native_free_heap":1732,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20923dd1-e74f-40ba-b70d-bfdfdc96c86b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":164673,"utime":18,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"253c04df-fab9-47cb-bcf9-bd3f69759c3c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:44.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":173672,"utime":20,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"288904ab-2d5e-425d-a470-54c3f39ccc7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":611,"total_pss":26847,"rss":80256,"native_total_heap":23036,"native_free_heap":1535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f3befc-beed-43fb-8fad-df0082768fe9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1439,"total_pss":21673,"rss":65724,"native_total_heap":22268,"native_free_heap":1208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a5ba7f0-451b-4526-8b9e-61520a9d5d6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":200672,"utime":34,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b680f50-740c-450c-9081-35f4f5f05c6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184935,"end_time":184942,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ba938eb-ff03-41be-b9c4-991fc6ca0e1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164904,"end_time":164915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cfd7fdc-7e05-49ff-b996-fbac8a6df900","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":455,"total_pss":22765,"rss":67320,"native_total_heap":22780,"native_free_heap":1174,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30ec73ef-3f40-49af-8cb0-2c5e2eb70517","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.89500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194943,"end_time":194947,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"32fbcd84-a3d3-4507-8fa2-541c99d95794","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":699,"total_pss":26780,"rss":80224,"native_total_heap":23036,"native_free_heap":1554,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a11c811-fb13-465f-9728-4f38ea2cada2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2552,"total_pss":26006,"rss":81332,"native_total_heap":23036,"native_free_heap":2107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"417c1447-8f71-4622-b567-aa6f526808dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:32.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":161673,"utime":18,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56dfc989-33d0-4fe7-bf3d-f31bd2747868","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1511,"total_pss":21554,"rss":66008,"native_total_heap":22268,"native_free_heap":1245,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58229cb0-3210-4876-9d72-a3ac2cc443f9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184910,"end_time":184929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5cd08eea-8644-431d-8d88-d002be4c94e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1787,"total_pss":28155,"rss":82036,"native_total_heap":23036,"native_free_heap":1785,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fdd43fb-dbb4-4e24-916f-f1f949398693","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204944,"end_time":204949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e376c4a-7d69-413b-abab-e108e3939015","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2767,"total_pss":25732,"rss":77264,"native_total_heap":22780,"native_free_heap":1676,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6eae90d0-d1e0-4584-8c0b-357692acba1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174907,"end_time":174923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f099de4-385f-4d4c-9d2c-3392eef0014c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2555,"total_pss":23307,"rss":72192,"native_total_heap":22780,"native_free_heap":1592,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fbfab92-5f1a-4ff5-8e62-d80b2905d55a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2607,"total_pss":23354,"rss":72192,"native_total_heap":22780,"native_free_heap":1608,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"750de704-628c-4994-9c32-d63fc6926652","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":176673,"utime":23,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fe89463-7939-47f8-bce1-b7dee7458996","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.88200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164925,"end_time":164934,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8acc702b-4123-439a-aeae-010e318979ec","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1351,"total_pss":23984,"rss":68660,"native_total_heap":22268,"native_free_heap":1204,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f452466-19de-42ab-b6e6-7269b024f3dc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":182676,"utime":27,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"937889e3-48c0-4f54-b9e1-0b87c2630cfa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2803,"total_pss":26484,"rss":78920,"native_total_heap":22780,"native_free_heap":1692,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab05229c-b734-46d2-bddf-0182db24f9b0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1575,"total_pss":24023,"rss":75436,"native_total_heap":23036,"native_free_heap":1696,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b13f99c1-27cf-4b44-afa9-e01c693ec9cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2663,"total_pss":25782,"rss":77512,"native_total_heap":22780,"native_free_heap":1640,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2967e6c-3e05-4a28-92f2-7452c1ebed01","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":651,"total_pss":22657,"rss":67332,"native_total_heap":22524,"native_free_heap":1199,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a65579-5651-4c73-a76d-7584d64f2bf7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:50.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":179673,"utime":25,"cutime":0,"cstime":0,"stime":38,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5b1444d-5f8b-4c74-a44f-27041ae00f6a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194915,"end_time":194933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb6537e0-9a70-4434-8d07-9223b7171217","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":188672,"utime":31,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd5e5a6c-f99b-4978-9a8c-eebe8b73c559","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:02.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":191672,"utime":32,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4640442-c913-47ba-91bd-256be9190bae","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":167673,"utime":19,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94c169b-796d-45e1-8ee5-c15c99e0fae4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:08.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":197678,"utime":34,"cutime":0,"cstime":0,"stime":51,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb181f37-3b06-4723-b0cc-db8ff7c117d2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174944,"end_time":174954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d29b924c-2c7a-418a-802b-0df01d80adf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204911,"end_time":204936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d80e59fe-44f8-42cf-8438-0d4862017c68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":206673,"utime":39,"cutime":0,"cstime":0,"stime":58,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df49b0ca-58fe-4c35-af6d-73478be27199","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1699,"total_pss":27797,"rss":82188,"native_total_heap":23036,"native_free_heap":1748,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e014bd74-6abc-4f4e-8506-20dfe64391c5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":170673,"utime":20,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e0d66ffc-e9ce-455e-85e9-a32577d7d177","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":3320,"total_pss":24226,"rss":78180,"native_total_heap":23036,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e55f2d46-a262-4a4b-9818-c401784b39ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:14.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":203676,"utime":37,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea33575f-e224-4a80-99cd-a6f125966bee","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":771,"total_pss":26792,"rss":79936,"native_total_heap":23036,"native_free_heap":1595,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eec24718-2b09-437b-9eea-f343d3e8c100","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:56.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":185673,"utime":29,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1b8f241-7e07-49a8-8577-d0bca7402525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1487,"total_pss":23959,"rss":76000,"native_total_heap":23036,"native_free_heap":1664,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdffa0a2-6131-4655-b9dd-344a9b2300fe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":575,"total_pss":26515,"rss":80256,"native_total_heap":23036,"native_free_heap":1519,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffb851c8-152d-4d11-bb2c-75b8967bbcab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":563,"total_pss":22650,"rss":67592,"native_total_heap":22524,"native_free_heap":1163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0731a7b1-1a36-4fc6-91e6-9a00a43e28e3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":194676,"utime":33,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0a93ae72-fe71-43e0-94aa-93b088ec7a13","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":491,"total_pss":25373,"rss":70760,"native_total_heap":22524,"native_free_heap":1162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13130612-53a6-4fdc-9f51-cdc80ce60efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":351,"total_pss":23353,"rss":69092,"native_total_heap":22780,"native_free_heap":1137,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f3e7601-f137-4645-ba9e-04724273e2ad","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:01.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1647,"total_pss":24151,"rss":76444,"native_total_heap":23036,"native_free_heap":1732,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20923dd1-e74f-40ba-b70d-bfdfdc96c86b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":164673,"utime":18,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"253c04df-fab9-47cb-bcf9-bd3f69759c3c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:44.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":173672,"utime":20,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"288904ab-2d5e-425d-a470-54c3f39ccc7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":611,"total_pss":26847,"rss":80256,"native_total_heap":23036,"native_free_heap":1535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f3befc-beed-43fb-8fad-df0082768fe9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1439,"total_pss":21673,"rss":65724,"native_total_heap":22268,"native_free_heap":1208,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a5ba7f0-451b-4526-8b9e-61520a9d5d6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:11.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":200672,"utime":34,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b680f50-740c-450c-9081-35f4f5f05c6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184935,"end_time":184942,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ba938eb-ff03-41be-b9c4-991fc6ca0e1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.86300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164904,"end_time":164915,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cfd7fdc-7e05-49ff-b996-fbac8a6df900","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:43.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":455,"total_pss":22765,"rss":67320,"native_total_heap":22780,"native_free_heap":1174,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30ec73ef-3f40-49af-8cb0-2c5e2eb70517","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.89500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194943,"end_time":194947,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"32fbcd84-a3d3-4507-8fa2-541c99d95794","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":699,"total_pss":26780,"rss":80224,"native_total_heap":23036,"native_free_heap":1554,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a11c811-fb13-465f-9728-4f38ea2cada2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2552,"total_pss":26006,"rss":81332,"native_total_heap":23036,"native_free_heap":2107,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"417c1447-8f71-4622-b567-aa6f526808dd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:32.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":161673,"utime":18,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56dfc989-33d0-4fe7-bf3d-f31bd2747868","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1511,"total_pss":21554,"rss":66008,"native_total_heap":22268,"native_free_heap":1245,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58229cb0-3210-4876-9d72-a3ac2cc443f9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":184910,"end_time":184929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5cd08eea-8644-431d-8d88-d002be4c94e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1787,"total_pss":28155,"rss":82036,"native_total_heap":23036,"native_free_heap":1785,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fdd43fb-dbb4-4e24-916f-f1f949398693","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.89700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204944,"end_time":204949,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6e376c4a-7d69-413b-abab-e108e3939015","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2767,"total_pss":25732,"rss":77264,"native_total_heap":22780,"native_free_heap":1676,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6eae90d0-d1e0-4584-8c0b-357692acba1f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.87100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174907,"end_time":174923,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f099de4-385f-4d4c-9d2c-3392eef0014c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:55.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2555,"total_pss":23307,"rss":72192,"native_total_heap":22780,"native_free_heap":1592,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fbfab92-5f1a-4ff5-8e62-d80b2905d55a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2607,"total_pss":23354,"rss":72192,"native_total_heap":22780,"native_free_heap":1608,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"750de704-628c-4994-9c32-d63fc6926652","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":176673,"utime":23,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fe89463-7939-47f8-bce1-b7dee7458996","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.88200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":164925,"end_time":164934,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8acc702b-4123-439a-aeae-010e318979ec","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1351,"total_pss":23984,"rss":68660,"native_total_heap":22268,"native_free_heap":1204,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f452466-19de-42ab-b6e6-7269b024f3dc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:53.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":182676,"utime":27,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"937889e3-48c0-4f54-b9e1-0b87c2630cfa","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:47.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2803,"total_pss":26484,"rss":78920,"native_total_heap":22780,"native_free_heap":1692,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab05229c-b734-46d2-bddf-0182db24f9b0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1575,"total_pss":24023,"rss":75436,"native_total_heap":23036,"native_free_heap":1696,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b13f99c1-27cf-4b44-afa9-e01c693ec9cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":2663,"total_pss":25782,"rss":77512,"native_total_heap":22780,"native_free_heap":1640,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2967e6c-3e05-4a28-92f2-7452c1ebed01","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":651,"total_pss":22657,"rss":67332,"native_total_heap":22524,"native_free_heap":1199,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5a65579-5651-4c73-a76d-7584d64f2bf7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:50.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":179673,"utime":25,"cutime":0,"cstime":0,"stime":38,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b5b1444d-5f8b-4c74-a44f-27041ae00f6a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":194915,"end_time":194933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb6537e0-9a70-4434-8d07-9223b7171217","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":188672,"utime":31,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd5e5a6c-f99b-4978-9a8c-eebe8b73c559","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:02.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":191672,"utime":32,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4640442-c913-47ba-91bd-256be9190bae","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:38.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":167673,"utime":19,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c94c169b-796d-45e1-8ee5-c15c99e0fae4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:08.62600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":197678,"utime":34,"cutime":0,"cstime":0,"stime":51,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb181f37-3b06-4723-b0cc-db8ff7c117d2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":174944,"end_time":174954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d29b924c-2c7a-418a-802b-0df01d80adf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":204911,"end_time":204936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d80e59fe-44f8-42cf-8438-0d4862017c68","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:17.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":206673,"utime":39,"cutime":0,"cstime":0,"stime":58,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df49b0ca-58fe-4c35-af6d-73478be27199","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:59.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1699,"total_pss":27797,"rss":82188,"native_total_heap":23036,"native_free_heap":1748,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e014bd74-6abc-4f4e-8506-20dfe64391c5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:41.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":170673,"utime":20,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e0d66ffc-e9ce-455e-85e9-a32577d7d177","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":3320,"total_pss":24226,"rss":78180,"native_total_heap":23036,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e55f2d46-a262-4a4b-9818-c401784b39ca","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:14.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":203676,"utime":37,"cutime":0,"cstime":0,"stime":54,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea33575f-e224-4a80-99cd-a6f125966bee","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":771,"total_pss":26792,"rss":79936,"native_total_heap":23036,"native_free_heap":1595,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eec24718-2b09-437b-9eea-f343d3e8c100","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:56.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":185673,"utime":29,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f1b8f241-7e07-49a8-8577-d0bca7402525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:05.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":1487,"total_pss":23959,"rss":76000,"native_total_heap":23036,"native_free_heap":1664,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fdffa0a2-6131-4655-b9dd-344a9b2300fe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":575,"total_pss":26515,"rss":80256,"native_total_heap":23036,"native_free_heap":1519,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffb851c8-152d-4d11-bb2c-75b8967bbcab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:56:39.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6830,"java_free_heap":563,"total_pss":22650,"rss":67592,"native_total_heap":22524,"native_free_heap":1163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json b/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json index ab90a3f85..e74d5bbbf 100644 --- a/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json +++ b/self-host/session-data/sh.measure.sample/1.0/75b9d99c-648e-4c68-b2b7-fca985de6a71.json @@ -1 +1 @@ -[{"id":"17478d18-1818-46c0-af13-3b0f59a5f94d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bbf354a-04e3-4f48-82c2-33e72d85411d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.36300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2946104,"on_next_draw_uptime":2946143,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24a86f0d-879e-47a8-82fb-d33f6e79d0f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2955103,"utime":42,"cutime":0,"cstime":0,"stime":44,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"28109edb-4f72-4ed5-9de4-979e9dc9ffe6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2946103,"utime":39,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b42ffdd-e55a-443b-9150-287d0666eee6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1382,"total_pss":54504,"rss":142256,"native_total_heap":25016,"native_free_heap":1858,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f585750-fa1e-402b-b948-e873027aea53","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:55.34800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1266,"total_pss":54037,"rss":142256,"native_total_heap":25016,"native_free_heap":1849,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4abaacf8-b1a3-4de3-9df7-1bf1a68fa5f9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.25500000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"577d4e06-fece-498f-9d9e-19055f53c914","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.85600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5eaa757d-e5a0-4495-82c9-dbdd288cf12c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f57a04c-61b7-4235-8d66-0b47a3a885ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.82600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86edff7c-791c-4dd7-9ace-f3397b1068b9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.58500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2945345,"end_time":2945366,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"75484","content-type":"multipart/form-data; boundary=f5111e03-6f0b-4a1a-8c50-61dad6408bae","host":"10.0.2.2:8080","msr-req-id":"f936f133-3581-4f2f-bd6d-670ef03b70b0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ab88a3a-b673-4514-8614-3fda0df2bb49","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:56.32200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2949103,"utime":41,"cutime":0,"cstime":0,"stime":41,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"abf811ca-f92a-4e3b-9d7c-0a473394a8ce","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.32700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2952108,"utime":41,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5e71dcf-5677-4d1c-a85f-3950dfd97c30","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.32300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1146,"total_pss":46091,"rss":133524,"native_total_heap":25016,"native_free_heap":1835,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f537ae17-6c70-40ee-ad3c-5ff0f5e2069d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.33200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1058,"total_pss":40920,"rss":123260,"native_total_heap":25016,"native_free_heap":1803,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ffc2456b-96d9-411e-93ca-f93863d5c8f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.32400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1022,"total_pss":40923,"rss":123276,"native_total_heap":25016,"native_free_heap":1787,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"17478d18-1818-46c0-af13-3b0f59a5f94d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bbf354a-04e3-4f48-82c2-33e72d85411d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.36300000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2946104,"on_next_draw_uptime":2946143,"launched_activity":"sh.measure.sample.OkHttpActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24a86f0d-879e-47a8-82fb-d33f6e79d0f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.32200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2955103,"utime":42,"cutime":0,"cstime":0,"stime":44,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"28109edb-4f72-4ed5-9de4-979e9dc9ffe6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2946103,"utime":39,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2b42ffdd-e55a-443b-9150-287d0666eee6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1382,"total_pss":54504,"rss":142256,"native_total_heap":25016,"native_free_heap":1858,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f585750-fa1e-402b-b948-e873027aea53","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:55.34800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1266,"total_pss":54037,"rss":142256,"native_total_heap":25016,"native_free_heap":1849,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4abaacf8-b1a3-4de3-9df7-1bf1a68fa5f9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.25500000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"577d4e06-fece-498f-9d9e-19055f53c914","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:02.85600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"5eaa757d-e5a0-4495-82c9-dbdd288cf12c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:53.32400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f57a04c-61b7-4235-8d66-0b47a3a885ca","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.82600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"86edff7c-791c-4dd7-9ace-f3397b1068b9","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.58500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2945345,"end_time":2945366,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"75484","content-type":"multipart/form-data; boundary=f5111e03-6f0b-4a1a-8c50-61dad6408bae","host":"10.0.2.2:8080","msr-req-id":"f936f133-3581-4f2f-bd6d-670ef03b70b0","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:53 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9ab88a3a-b673-4514-8614-3fda0df2bb49","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:56.32200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2949103,"utime":41,"cutime":0,"cstime":0,"stime":41,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"abf811ca-f92a-4e3b-9d7c-0a473394a8ce","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.32700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2952108,"utime":41,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"c5e71dcf-5677-4d1c-a85f-3950dfd97c30","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:57.32300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1146,"total_pss":46091,"rss":133524,"native_total_heap":25016,"native_free_heap":1835,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f537ae17-6c70-40ee-ad3c-5ff0f5e2069d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:59.33200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1058,"total_pss":40920,"rss":123260,"native_total_heap":25016,"native_free_heap":1803,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"ffc2456b-96d9-411e-93ca-f93863d5c8f5","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:16:01.32400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":1022,"total_pss":40923,"rss":123276,"native_total_heap":25016,"native_free_heap":1787,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json b/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json index 1aadfc341..d5d8ec4da 100644 --- a/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json +++ b/self-host/session-data/sh.measure.sample/1.0/75c35af8-9386-4923-b96c-1f8463b0f3be.json @@ -1 +1 @@ -[{"id":"28c79e9f-863d-4bdb-9d10-dc6b1babd520","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:00.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18906,"java_free_heap":0,"total_pss":52161,"rss":127248,"native_total_heap":24760,"native_free_heap":1343,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319be355-7194-4b80-9c4f-62bc5537ffe9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2835446,"utime":41,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44483cf2-a876-425b-a20e-7b51b0d4df77","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.67100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2823121,"process_start_requested_uptime":2822167,"content_provider_attach_uptime":2823381,"on_next_draw_uptime":2824451,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4a2c7ec7-a7cd-4e15-b84b-a5b83b0ce693","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b9c935f-3fbc-4a63-a2af-e3cba96ca9f6","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.19800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"521c34e3-3850-4cf5-9d16-a5c32a83e240","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.38100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56653cf9-7b11-41c9-b761-ede26a610790","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31489,"total_pss":51804,"rss":122816,"native_total_heap":24248,"native_free_heap":1239,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666af9ef-e709-494d-b1dc-440405e9504a","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.13600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69c278dd-9013-4081-8123-c213fe052ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.04700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2823797,"end_time":2823828,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"4204","content-type":"multipart/form-data; boundary=9679516b-c2ef-4012-9142-0d552fecb9f7","host":"10.0.2.2:8080","msr-req-id":"1590899d-3a2e-49ef-aae5-966eac419e80","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:13:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"85222e00-a01b-4315-87ff-059cf25f83cd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:54.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33974,"total_pss":35896,"rss":112812,"native_total_heap":23292,"native_free_heap":1216,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88014927-57ba-4815-b25c-8d57aa803cfb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":636.96533,"y":1726.9226,"touch_down_time":2828670,"touch_up_time":2828806},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88c93e2f-9632-47ab-8bbd-7ebe3149ac36","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35400000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"934809f7-acb1-4848-838a-f0d2c1df2a55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30637,"total_pss":52760,"rss":125868,"native_total_heap":24760,"native_free_heap":1379,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"947995cc-8488-4bb7-b917-5b026e477d33","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2829445,"utime":29,"cutime":0,"cstime":0,"stime":41,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c292a13-bb18-43f9-a82f-b5eac357c924","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:03.30200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a51c9aaa-a126-4b56-94df-f52f4a773970","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":4062,"total_pss":43699,"rss":114072,"native_total_heap":24760,"native_free_heap":2389,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a557e209-f4cb-47b3-8468-c17ae043ec47","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":189.97559,"y":398.974,"touch_down_time":2830028,"touch_up_time":2830130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6073120-2eb5-4afa-9573-f198a7182ae0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.09800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b57f2f2d-0a7d-4a6c-9bcd-8f626c1e967f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d2b97177-4266-47f3-bebc-7d819e938bca","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.33600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4b54f42-200a-4572-ab63-3f077a82e90e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68ed972-ea80-40d7-ac03-eca2f79befe3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2832446,"utime":38,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d89216aa-28da-4650-b9f4-a1601416ee55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.99800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3702604-01cc-49a1-b8a5-88e28c3e6953","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:04.11700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9d07ef4-6541-4b6b-a25b-3b5307d72972","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:53.66700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2826447,"utime":18,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f62c6d56-7594-4e8e-a12c-7e620a9e474e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:52.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34110,"total_pss":45939,"rss":134828,"native_total_heap":22268,"native_free_heap":992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"28c79e9f-863d-4bdb-9d10-dc6b1babd520","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:00.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18906,"java_free_heap":0,"total_pss":52161,"rss":127248,"native_total_heap":24760,"native_free_heap":1343,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319be355-7194-4b80-9c4f-62bc5537ffe9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2835446,"utime":41,"cutime":0,"cstime":0,"stime":55,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44483cf2-a876-425b-a20e-7b51b0d4df77","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.67100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2823121,"process_start_requested_uptime":2822167,"content_provider_attach_uptime":2823381,"on_next_draw_uptime":2824451,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4a2c7ec7-a7cd-4e15-b84b-a5b83b0ce693","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b9c935f-3fbc-4a63-a2af-e3cba96ca9f6","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.19800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"521c34e3-3850-4cf5-9d16-a5c32a83e240","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.38100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"56653cf9-7b11-41c9-b761-ede26a610790","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31489,"total_pss":51804,"rss":122816,"native_total_heap":24248,"native_free_heap":1239,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666af9ef-e709-494d-b1dc-440405e9504a","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.13600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69c278dd-9013-4081-8123-c213fe052ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.04700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2823797,"end_time":2823828,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"4204","content-type":"multipart/form-data; boundary=9679516b-c2ef-4012-9142-0d552fecb9f7","host":"10.0.2.2:8080","msr-req-id":"1590899d-3a2e-49ef-aae5-966eac419e80","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:13:51 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"85222e00-a01b-4315-87ff-059cf25f83cd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:54.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33974,"total_pss":35896,"rss":112812,"native_total_heap":23292,"native_free_heap":1216,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88014927-57ba-4815-b25c-8d57aa803cfb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.03000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":636.96533,"y":1726.9226,"touch_down_time":2828670,"touch_up_time":2828806},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88c93e2f-9632-47ab-8bbd-7ebe3149ac36","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35400000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"934809f7-acb1-4848-838a-f0d2c1df2a55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30637,"total_pss":52760,"rss":125868,"native_total_heap":24760,"native_free_heap":1379,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"947995cc-8488-4bb7-b917-5b026e477d33","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.66400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2829445,"utime":29,"cutime":0,"cstime":0,"stime":41,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9c292a13-bb18-43f9-a82f-b5eac357c924","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:03.30200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a51c9aaa-a126-4b56-94df-f52f4a773970","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:02.66700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":4062,"total_pss":43699,"rss":114072,"native_total_heap":24760,"native_free_heap":2389,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a557e209-f4cb-47b3-8468-c17ae043ec47","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.35600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":189.97559,"y":398.974,"touch_down_time":2830028,"touch_up_time":2830130},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6073120-2eb5-4afa-9573-f198a7182ae0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.09800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b57f2f2d-0a7d-4a6c-9bcd-8f626c1e967f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:51.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"unknown","network_generation":"unknown","network_provider_name":null}},{"id":"d2b97177-4266-47f3-bebc-7d819e938bca","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:56.33600000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4b54f42-200a-4572-ab63-3f077a82e90e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:58.83000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68ed972-ea80-40d7-ac03-eca2f79befe3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:59.66500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2832446,"utime":38,"cutime":0,"cstime":0,"stime":53,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d89216aa-28da-4650-b9f4-a1601416ee55","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:57.99800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3702604-01cc-49a1-b8a5-88e28c3e6953","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:14:04.11700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9d07ef4-6541-4b6b-a25b-3b5307d72972","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:53.66700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2826447,"utime":18,"cutime":0,"cstime":0,"stime":23,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f62c6d56-7594-4e8e-a12c-7e620a9e474e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:13:52.66600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34110,"total_pss":45939,"rss":134828,"native_total_heap":22268,"native_free_heap":992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json b/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json index 6e6efbb5d..3efcd44e4 100644 --- a/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json +++ b/self-host/session-data/sh.measure.sample/1.0/7c66168e-48b5-445e-9910-72b56fce54d3.json @@ -1 +1 @@ -[{"id":"14ef9db0-eab9-49ad-8276-a36b84cfab2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.88600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5676815,"end_time":5676844,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"33232","content-type":"multipart/form-data; boundary=ce29e7b7-1ab9-4707-acf9-2700b64c6851","host":"10.0.2.2:8080","msr-req-id":"6c2c124e-1691-4d33-92d9-bba77fbe6646","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:45 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4437f328-9f10-4302-a51f-f5d6f1e686a6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5678835,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b022c74c-96bb-4150-a466-36a670cf81fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.86600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e033fa71-a044-46bd-ba3a-c5a881d876cf","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb1dac62-4ad7-4562-bb93-b30b84f4a11f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ecda8f8e-e9a7-4e9c-9598-b0a1fea4bcf2","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"14ef9db0-eab9-49ad-8276-a36b84cfab2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.88600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5676815,"end_time":5676844,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"33232","content-type":"multipart/form-data; boundary=ce29e7b7-1ab9-4707-acf9-2700b64c6851","host":"10.0.2.2:8080","msr-req-id":"6c2c124e-1691-4d33-92d9-bba77fbe6646","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:45 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4437f328-9f10-4302-a51f-f5d6f1e686a6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5678835,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b022c74c-96bb-4150-a466-36a670cf81fa","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:42.86600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e033fa71-a044-46bd-ba3a-c5a881d876cf","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb1dac62-4ad7-4562-bb93-b30b84f4a11f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ecda8f8e-e9a7-4e9c-9598-b0a1fea4bcf2","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.89300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json b/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json index 84f92510e..94cca4d2e 100644 --- a/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json +++ b/self-host/session-data/sh.measure.sample/1.0/846997c8-5161-4a7a-877e-c38595ade128.json @@ -1 +1 @@ -[{"id":"0b413177-bf1d-4414-803b-413a6365501b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ee00144-1efb-40b1-817b-306ba80a2bd8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:48.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5157730,"utime":48,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0fa5e9cf-3194-4b85-bceb-562e3fbb7ed8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16617f70-7b84-4881-b7bc-e2844e5530d4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:28.00700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137475,"end_time":5137504,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ecf24f5-2005-4d2e-a542-5a34a3180de5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22daab6e-733a-4e88-8418-94b46096622c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:40.01800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149464,"end_time":5149515,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"101668","content-type":"multipart/form-data; boundary=bdc16f2a-d0fb-40bc-aebc-ce60f34f186a","host":"10.0.2.2:8080","msr-req-id":"32b1c06f-b023-4a37-b7b0-41fcbacf7e7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2493f8a5-6414-4734-9188-4226e3f8fd57","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:47.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25872,"total_pss":94588,"rss":184776,"native_total_heap":22524,"native_free_heap":938,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"279f73d6-abf3-49b5-a6f3-b9e51499b448","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:41.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26102,"total_pss":93872,"rss":184084,"native_total_heap":22524,"native_free_heap":962,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27cb59c2-abce-4f5d-9f39-1d23b761beda","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.24400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":3308,"total_pss":79341,"rss":164648,"native_total_heap":22524,"native_free_heap":1622,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f2e707-887b-4c71-9e68-cfdf54e6ef9c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.72100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149161,"end_time":5149217,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54086","content-type":"multipart/form-data; boundary=7740e28e-0693-4d06-8a41-291379d243d2","host":"10.0.2.2:8080","msr-req-id":"18629179-ac60-4bec-872a-8a93f923ddf3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f6bb6fc-b794-4e5e-85ea-0d01a38cacd5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:42.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5151730,"utime":44,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3577c8f2-b659-4684-afc6-9c0207d6d558","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":23351,"java_free_heap":0,"total_pss":94680,"rss":184988,"native_total_heap":22524,"native_free_heap":914,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa38361-e533-4f4d-be3c-408f3ae91da8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.30900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d1004cf-4f66-4ae9-b920-f44fe1fa810d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5166730,"utime":128,"cutime":0,"cstime":0,"stime":66,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e7d718a-4bd8-4a37-bcd8-57e612863a1c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:39.67500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (37):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at sh.measure.sample.ExceptionDemoActivity.deadLock$lambda$10(ExceptionDemoActivity.kt:66)\n - waiting to lock \u003c0x0b2cc044\u003e (a java.lang.Object) held by thread 38\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$G4MY09CRhRk9ettfD7HPDD_b1n4(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda0.run(D8$$SyntheticClass:0)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10281_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"ConnectivityThread\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp Dispatcher\" prio=5 tid=28 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"queued-work-looper\" prio=5 tid=29 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"OkHttp httpbin.org\" daemon prio=5 tid=30 Native\n native: #00 pc 00000000000a2f54 /apex/com.android.runtime/lib64/bionic/libc.so (recvfrom+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 00000000000298c8 /apex/com.android.art/lib64/libopenjdk.so (NET_Read+80) (BuildId: df8df6b1c275e887f918729a4f22136c)\n native: #02 pc 000000000002a440 /apex/com.android.art/lib64/libopenjdk.so (SocketInputStream_socketRead0+216) (BuildId: df8df6b1c275e887f918729a4f22136c)\n at java.net.SocketInputStream.socketRead0(Native method)\n at java.net.SocketInputStream.socketRead(SocketInputStream.java:118)\n at java.net.SocketInputStream.read(SocketInputStream.java:173)\n at java.net.SocketInputStream.read(SocketInputStream.java:143)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readFromSocket(ConscryptEngineSocket.java:945)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.processDataFromSocket(ConscryptEngineSocket.java:909)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readUntilDataAvailable(ConscryptEngineSocket.java:824)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.read(ConscryptEngineSocket.java:797)\n - locked \u003c0x042b8729\u003e (a java.lang.Object)\n at okio.InputStreamSource.read(JvmOkio.kt:93)\n at okio.AsyncTimeout$source$1.read(AsyncTimeout.kt:153)\n at okio.RealBufferedSource.request(RealBufferedSource.kt:209)\n at okio.RealBufferedSource.require(RealBufferedSource.kt:202)\n at okhttp3.internal.http2.Http2Reader.nextFrame(Http2Reader.kt:89)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:618)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:609)\n at okhttp3.internal.concurrent.TaskQueue$execute$1.runOnce(TaskQueue.kt:98)\n at okhttp3.internal.concurrent.TaskRunner.runTask(TaskRunner.kt:116)\n at okhttp3.internal.concurrent.TaskRunner.access$runTask(TaskRunner.kt:42)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:65)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=31 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=32 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=33 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=34 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=35 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=36 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=37 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"APP: Locker\" prio=5 tid=38 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.sample.ExceptionDemoActivity.sleep(ExceptionDemoActivity.kt:86)\n at sh.measure.sample.ExceptionDemoActivity.access$sleep(ExceptionDemoActivity.kt:12)\n at sh.measure.sample.ExceptionDemoActivity$LockerThread.run(ExceptionDemoActivity.kt:80)\n - locked \u003c0x0b2cc044\u003e (a java.lang.Object)\n\n\"binder:10281_2\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10281 -----\n","process_name":"sh.measure.sample","pid":"10281"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e3aa3e8-aae2-4622-aab5-ce04da5a7a7d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.50900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5148339,"process_start_requested_uptime":5148072,"content_provider_attach_uptime":5148691,"on_next_draw_uptime":5149005,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58605a27-e1a3-48c2-8105-987e77c5e3ae","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":6133,"total_pss":84454,"rss":170756,"native_total_heap":23804,"native_free_heap":2180,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592be39f-b13b-4712-b6df-beae87e43845","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.76400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149224,"end_time":5149260,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"102381","content-type":"multipart/form-data; boundary=6580bf70-6767-4054-a1ba-d3bc1afd9fe9","host":"10.0.2.2:8080","msr-req-id":"13a49afa-ff18-4938-a022-14986f4d282f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b70d378-047d-41e8-8ce3-1037e358260c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.72900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fcfb3c1-a642-490b-8d99-b620f910601b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.14300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":538.9783,"y":1570.8966,"touch_down_time":5168553,"touch_up_time":5168639},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6097bbd2-3cf4-411c-b6dd-cfb2ff4c8c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5154729,"utime":46,"cutime":0,"cstime":0,"stime":29,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65c69192-62f2-40b5-a2b8-8856dd443900","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.23800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5160734,"utime":53,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67255aac-ed4f-432a-9827-25526779510f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149333,"end_time":5149370,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"113211","content-type":"multipart/form-data; boundary=cdb54c1c-e52e-4d7c-970e-c55988e4dec7","host":"10.0.2.2:8080","msr-req-id":"d2e30456-6617-42e3-b5ec-560992d829d2","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c02f56b-9ad4-4a53-b349-724e4b2b0bde","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149271,"end_time":5149323,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"105464","content-type":"multipart/form-data; boundary=db0ab44b-0479-4c94-9547-c429a338c9ff","host":"10.0.2.2:8080","msr-req-id":"36e7152a-86ef-44d6-bea7-5cdf1c86bc9f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6da08ceb-7526-46aa-9b94-734e8d5bd106","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d14fc2-e310-4e25-bd74-f27c4916def6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d07c02c-644c-44cf-9e0a-f829885c5c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df5f313-747a-4764-94d6-e5026d96f5c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.03900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"812eb039-cfc9-4eed-8c8b-0817eb7f3865","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.95800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149378,"end_time":5149455,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"100643","content-type":"multipart/form-data; boundary=fb5ce2a7-2648-452d-b1cd-a5f6135582ed","host":"10.0.2.2:8080","msr-req-id":"4bd21812-3dce-4292-826a-fcbac6842045","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"824d180c-62bc-45f9-8f4e-319e44ac2542","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.82700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":444.4281,"y":1610.9363,"end_x":569.9597,"end_y":499.92004,"direction":"up","touch_down_time":5163138,"touch_up_time":5163321},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93e9b78d-9534-4725-86b1-9674d3241ad8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"986a89a2-49d4-469f-889e-eed1b66d70ff","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.08200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af613e2a-a8d6-42da-a6e6-d9fecfbd2d55","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5148752,"utime":20,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4499d1c-8922-4461-93ba-bf88002c8b11","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b580adbc-eac7-45b1-8541-0e71c1c05662","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.36000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":577.96875,"y":465.97778,"end_x":577.96875,"end_y":1494.95,"direction":"down","touch_down_time":5163685,"touch_up_time":5163854},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bad55608-637e-47cd-916b-9dd559855dd7","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:52.93600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":558.9514,"y":1590.9503,"touch_down_time":5162379,"touch_up_time":5162424},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf68daac-106e-4080-844e-6efb660728aa","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.23300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5163730,"utime":97,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6f76545-6e18-4c80-8c05-dcbd34d166b3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":4769,"total_pss":86395,"rss":172768,"native_total_heap":23804,"native_free_heap":1699,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb0c20e7-306d-4d10-a6b3-657d548c3101","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":594,"total_pss":84831,"rss":170588,"native_total_heap":23548,"native_free_heap":1580,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4da5359-0a39-41f2-a06e-91a344c83041","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d817b1e7-5b75-4358-b142-b73f6840d6ce","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183509,"total_pss":63987,"rss":169796,"native_total_heap":21872,"native_free_heap":1203,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfce44da-31aa-4c66-b6dd-599676e302bb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.46100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5158927,"end_time":5158957,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"55644","content-type":"multipart/form-data; boundary=08aef82a-aff9-4a57-a9ad-7304abfc3072","host":"10.0.2.2:8080","msr-req-id":"690139b4-0da0-4776-9555-556124f0dd6b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:49 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e80936ad-b67d-4d97-85ee-7445233191fd","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.01100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea642db3-c18d-48c6-bc1a-f7d53a24aac8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.17200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebfd287f-9360-4e97-906d-bee0a7fabb4d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25924,"total_pss":94544,"rss":184528,"native_total_heap":22524,"native_free_heap":927,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecc410f7-c82c-44d6-9739-d785e02d7a59","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:43.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26030,"total_pss":93952,"rss":184084,"native_total_heap":22524,"native_free_heap":930,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3ffdc8d-6060-4bc2-987b-5ba834eea10f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6b7a31b-d968-405f-8061-bcea98ca4d80","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.16800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f70bbae6-0f22-4a57-982d-d34e06582c6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.96000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":467.98462,"y":1559.9213,"touch_down_time":5166393,"touch_up_time":5166456},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7f5401-57da-45d0-8e32-2dc0624cc6e9","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.02200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0b413177-bf1d-4414-803b-413a6365501b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0ee00144-1efb-40b1-817b-306ba80a2bd8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:48.23300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5157730,"utime":48,"cutime":0,"cstime":0,"stime":31,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0fa5e9cf-3194-4b85-bceb-562e3fbb7ed8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16617f70-7b84-4881-b7bc-e2844e5530d4","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:28.00700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":5137475,"end_time":5137504,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ecf24f5-2005-4d2e-a542-5a34a3180de5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.07500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22daab6e-733a-4e88-8418-94b46096622c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:40.01800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149464,"end_time":5149515,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"101668","content-type":"multipart/form-data; boundary=bdc16f2a-d0fb-40bc-aebc-ce60f34f186a","host":"10.0.2.2:8080","msr-req-id":"32b1c06f-b023-4a37-b7b0-41fcbacf7e7c","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2493f8a5-6414-4734-9188-4226e3f8fd57","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:47.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25872,"total_pss":94588,"rss":184776,"native_total_heap":22524,"native_free_heap":938,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"279f73d6-abf3-49b5-a6f3-b9e51499b448","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:41.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26102,"total_pss":93872,"rss":184084,"native_total_heap":22524,"native_free_heap":962,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27cb59c2-abce-4f5d-9f39-1d23b761beda","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.24400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":3308,"total_pss":79341,"rss":164648,"native_total_heap":22524,"native_free_heap":1622,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29f2e707-887b-4c71-9e68-cfdf54e6ef9c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.72100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149161,"end_time":5149217,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"54086","content-type":"multipart/form-data; boundary=7740e28e-0693-4d06-8a41-291379d243d2","host":"10.0.2.2:8080","msr-req-id":"18629179-ac60-4bec-872a-8a93f923ddf3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f6bb6fc-b794-4e5e-85ea-0d01a38cacd5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:42.23300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5151730,"utime":44,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3577c8f2-b659-4684-afc6-9c0207d6d558","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":23351,"java_free_heap":0,"total_pss":94680,"rss":184988,"native_total_heap":22524,"native_free_heap":914,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3aa38361-e533-4f4d-be3c-408f3ae91da8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.30900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d1004cf-4f66-4ae9-b920-f44fe1fa810d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5166730,"utime":128,"cutime":0,"cstime":0,"stime":66,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e7d718a-4bd8-4a37-bcd8-57e612863a1c","session_id":"58e94ae9-a084-479f-9049-2c5135f6090f","timestamp":"2024-05-03T23:34:39.67500000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (37):\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at sh.measure.sample.ExceptionDemoActivity.deadLock$lambda$10(ExceptionDemoActivity.kt:66)\n - waiting to lock \u003c0x0b2cc044\u003e (a java.lang.Object) held by thread 38\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$G4MY09CRhRk9ettfD7HPDD_b1n4(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda0.run(D8$$SyntheticClass:0)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0d3ac52d\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x07e7da62\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0c0e07f3\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:10281_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:10281_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=16 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Thread-2\" prio=5 tid=17 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x01579cb0\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.android.anr.ANRWatchDog.run(ANRWatchDog.kt:70)\n\n\"ConnectivityThread\" prio=5 tid=18 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"msr-ep\" prio=5 tid=19 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-bg\" prio=5 tid=22 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-ee\" prio=5 tid=24 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=27 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:370)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp Dispatcher\" prio=5 tid=28 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"queued-work-looper\" prio=5 tid=29 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"OkHttp httpbin.org\" daemon prio=5 tid=30 Native\n native: #00 pc 00000000000a2f54 /apex/com.android.runtime/lib64/bionic/libc.so (recvfrom+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 00000000000298c8 /apex/com.android.art/lib64/libopenjdk.so (NET_Read+80) (BuildId: df8df6b1c275e887f918729a4f22136c)\n native: #02 pc 000000000002a440 /apex/com.android.art/lib64/libopenjdk.so (SocketInputStream_socketRead0+216) (BuildId: df8df6b1c275e887f918729a4f22136c)\n at java.net.SocketInputStream.socketRead0(Native method)\n at java.net.SocketInputStream.socketRead(SocketInputStream.java:118)\n at java.net.SocketInputStream.read(SocketInputStream.java:173)\n at java.net.SocketInputStream.read(SocketInputStream.java:143)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readFromSocket(ConscryptEngineSocket.java:945)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.processDataFromSocket(ConscryptEngineSocket.java:909)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readUntilDataAvailable(ConscryptEngineSocket.java:824)\n at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.read(ConscryptEngineSocket.java:797)\n - locked \u003c0x042b8729\u003e (a java.lang.Object)\n at okio.InputStreamSource.read(JvmOkio.kt:93)\n at okio.AsyncTimeout$source$1.read(AsyncTimeout.kt:153)\n at okio.RealBufferedSource.request(RealBufferedSource.kt:209)\n at okio.RealBufferedSource.require(RealBufferedSource.kt:202)\n at okhttp3.internal.http2.Http2Reader.nextFrame(Http2Reader.kt:89)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:618)\n at okhttp3.internal.http2.Http2Connection$ReaderRunnable.invoke(Http2Connection.kt:609)\n at okhttp3.internal.concurrent.TaskQueue$execute$1.runOnce(TaskQueue.kt:98)\n at okhttp3.internal.concurrent.TaskRunner.runTask(TaskRunner.kt:116)\n at okhttp3.internal.concurrent.TaskRunner.access$runTask(TaskRunner.kt:42)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:65)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=31 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0c6d3aae\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=32 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=33 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=34 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=35 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=36 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=37 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)\n at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)\n at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:939)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"APP: Locker\" prio=5 tid=38 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x02f7304f\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at sh.measure.sample.ExceptionDemoActivity.sleep(ExceptionDemoActivity.kt:86)\n at sh.measure.sample.ExceptionDemoActivity.access$sleep(ExceptionDemoActivity.kt:12)\n at sh.measure.sample.ExceptionDemoActivity$LockerThread.run(ExceptionDemoActivity.kt:80)\n - locked \u003c0x0b2cc044\u003e (a java.lang.Object)\n\n\"binder:10281_2\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 10281 -----\n","process_name":"sh.measure.sample","pid":"10281"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4e3aa3e8-aae2-4622-aab5-ce04da5a7a7d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.50900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5148339,"process_start_requested_uptime":5148072,"content_provider_attach_uptime":5148691,"on_next_draw_uptime":5149005,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"58605a27-e1a3-48c2-8105-987e77c5e3ae","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.23300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":6133,"total_pss":84454,"rss":170756,"native_total_heap":23804,"native_free_heap":2180,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"592be39f-b13b-4712-b6df-beae87e43845","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.76400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149224,"end_time":5149260,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"102381","content-type":"multipart/form-data; boundary=6580bf70-6767-4054-a1ba-d3bc1afd9fe9","host":"10.0.2.2:8080","msr-req-id":"13a49afa-ff18-4938-a022-14986f4d282f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b70d378-047d-41e8-8ce3-1037e358260c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:55.72900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fcfb3c1-a642-490b-8d99-b620f910601b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.14300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":538.9783,"y":1570.8966,"touch_down_time":5168553,"touch_up_time":5168639},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6097bbd2-3cf4-411c-b6dd-cfb2ff4c8c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5154729,"utime":46,"cutime":0,"cstime":0,"stime":29,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65c69192-62f2-40b5-a2b8-8856dd443900","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:51.23800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5160734,"utime":53,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"67255aac-ed4f-432a-9827-25526779510f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149333,"end_time":5149370,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"113211","content-type":"multipart/form-data; boundary=cdb54c1c-e52e-4d7c-970e-c55988e4dec7","host":"10.0.2.2:8080","msr-req-id":"d2e30456-6617-42e3-b5ec-560992d829d2","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c02f56b-9ad4-4a53-b349-724e4b2b0bde","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.82700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149271,"end_time":5149323,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"105464","content-type":"multipart/form-data; boundary=db0ab44b-0479-4c94-9547-c429a338c9ff","host":"10.0.2.2:8080","msr-req-id":"36e7152a-86ef-44d6-bea7-5cdf1c86bc9f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6da08ceb-7526-46aa-9b94-734e8d5bd106","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.02900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"75d14fc2-e310-4e25-bd74-f27c4916def6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.30400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d07c02c-644c-44cf-9e0a-f829885c5c67","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7df5f313-747a-4764-94d6-e5026d96f5c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.03900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"812eb039-cfc9-4eed-8c8b-0817eb7f3865","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.95800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5149378,"end_time":5149455,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"100643","content-type":"multipart/form-data; boundary=fb5ce2a7-2648-452d-b1cd-a5f6135582ed","host":"10.0.2.2:8080","msr-req-id":"4bd21812-3dce-4292-826a-fcbac6842045","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:40 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"824d180c-62bc-45f9-8f4e-319e44ac2542","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.82700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":444.4281,"y":1610.9363,"end_x":569.9597,"end_y":499.92004,"direction":"up","touch_down_time":5163138,"touch_up_time":5163321},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"93e9b78d-9534-4725-86b1-9674d3241ad8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.41000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"986a89a2-49d4-469f-889e-eed1b66d70ff","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.08200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af613e2a-a8d6-42da-a6e6-d9fecfbd2d55","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5148752,"utime":20,"cutime":0,"cstime":0,"stime":12,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b4499d1c-8922-4461-93ba-bf88002c8b11","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.05300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b580adbc-eac7-45b1-8541-0e71c1c05662","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.36000000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":577.96875,"y":465.97778,"end_x":577.96875,"end_y":1494.95,"direction":"down","touch_down_time":5163685,"touch_up_time":5163854},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bad55608-637e-47cd-916b-9dd559855dd7","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:52.93600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":558.9514,"y":1590.9503,"touch_down_time":5162379,"touch_up_time":5162424},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf68daac-106e-4080-844e-6efb660728aa","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:54.23300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5163730,"utime":97,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6f76545-6e18-4c80-8c05-dcbd34d166b3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":4769,"total_pss":86395,"rss":172768,"native_total_heap":23804,"native_free_heap":1699,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb0c20e7-306d-4d10-a6b3-657d548c3101","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.23500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9121,"java_free_heap":594,"total_pss":84831,"rss":170588,"native_total_heap":23548,"native_free_heap":1580,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d4da5359-0a39-41f2-a06e-91a344c83041","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.15200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d817b1e7-5b75-4358-b142-b73f6840d6ce","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:39.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":183509,"total_pss":63987,"rss":169796,"native_total_heap":21872,"native_free_heap":1203,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfce44da-31aa-4c66-b6dd-599676e302bb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:49.46100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5158927,"end_time":5158957,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"55644","content-type":"multipart/form-data; boundary=08aef82a-aff9-4a57-a9ad-7304abfc3072","host":"10.0.2.2:8080","msr-req-id":"690139b4-0da0-4776-9555-556124f0dd6b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:34:49 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e80936ad-b67d-4d97-85ee-7445233191fd","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:57.01100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea642db3-c18d-48c6-bc1a-f7d53a24aac8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.17200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ebfd287f-9360-4e97-906d-bee0a7fabb4d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:45.23400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":25924,"total_pss":94544,"rss":184528,"native_total_heap":22524,"native_free_heap":927,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ecc410f7-c82c-44d6-9739-d785e02d7a59","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:43.23200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":26030,"total_pss":93952,"rss":184084,"native_total_heap":22524,"native_free_heap":930,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f3ffdc8d-6060-4bc2-987b-5ba834eea10f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:58.60600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6b7a31b-d968-405f-8061-bcea98ca4d80","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.16800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f70bbae6-0f22-4a57-982d-d34e06582c6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:56.96000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":467.98462,"y":1559.9213,"touch_down_time":5166393,"touch_up_time":5166456},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb7f5401-57da-45d0-8e32-2dc0624cc6e9","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:53.02200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json b/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json index bd4f43350..df6559d70 100644 --- a/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json +++ b/self-host/session-data/sh.measure.sample/1.0/8591c71a-8a60-4773-937e-f0543dc48bb5.json @@ -1 +1 @@ -[{"id":"1111557b-2860-4bbe-8a3c-2904b401259a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.93500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4226,"total_pss":35199,"rss":112240,"native_total_heap":24188,"native_free_heap":2200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"12e7e4d7-4aed-41ef-8b1f-a16051e812c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.02500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5645841,"process_start_requested_uptime":5645770,"content_provider_attach_uptime":5645853,"on_next_draw_uptime":5645983,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1b95f7c3-1048-4dfd-925a-979a246493a8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.93400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5645892,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"25b950b1-91c3-491a-907c-fb84b11923b8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35586,"total_pss":48720,"rss":142044,"native_total_heap":22396,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29a69306-6c75-4e2e-8e2b-5212d57932c0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.92700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5658885,"utime":20,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2e76443f-9e28-4e03-9196-73c3d41ead28","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.85000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"31131059-97c1-4a93-b332-95b56f78aadd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:20.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33401,"total_pss":42312,"rss":121872,"native_total_heap":24188,"native_free_heap":1325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ecfa79f-e3a0-47bd-818f-ffdadcb157cb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41148d6a-f6a5-4355-8598-53ddcf7ad476","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e1a5b23-1a7f-406a-beb5-2c5bdfb00e81","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5a6a5d3d-964b-4cdf-bf62-e43988ee9431","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"619f60ec-0df1-46c3-8643-01ca67b70888","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35433,"total_pss":46091,"rss":143612,"native_total_heap":22652,"native_free_heap":1232,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"71d1fa9e-d0e5-4494-aff4-eac7d784835b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5649371,"utime":6,"cutime":0,"cstime":0,"stime":8,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"759e3bc2-0c69-4696-804b-1456d6a89f90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.09300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5646019,"end_time":5646051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12012","content-type":"multipart/form-data; boundary=3ce6d5ea-fe4d-476c-abbd-1ce97133acfc","host":"10.0.2.2:8080","msr-req-id":"8847c7a3-09ab-488b-aab1-94d1cf86427f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"77741e07-a53a-453f-8ab9-7de58388f262","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7e484a92-22db-4eda-94ab-0b24c681db26","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.75100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":561.9507,"y":1612.901,"touch_down_time":5650619,"touch_up_time":5650708},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81838aa5-c6bf-4773-b4c7-6a46bc53e05d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:26.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4126,"total_pss":33279,"rss":109440,"native_total_heap":24188,"native_free_heap":2168,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"857ee389-db23-4072-abe2-f509eaade449","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"92d0de93-ff2d-4ffa-b4ad-1606014c6e11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.96200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5652878,"on_next_draw_uptime":5652920,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9eac2bfa-22b7-472f-9026-f7edb9b1ceea","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.41400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5652372,"utime":17,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a0b53ad0-9434-47eb-8c52-1a4db2076a1e","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:12.05800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14450"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a124512c-dba7-40a4-87c5-5f73e351cfe2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:25.47000000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2a496c1-5aa6-493e-b834-fdd19e63ccb5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.42100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a32cd081-333f-48da-aee9-f5538985dd52","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:27.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5661879,"utime":21,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a65970f6-fda7-401e-aa0d-c4b8bbd034c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.74200000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"acded69d-660f-4caa-bca0-052d6abe41a4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:22.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4314,"total_pss":35617,"rss":112012,"native_total_heap":24188,"native_free_heap":2236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2b5c96f-eb95-4aaa-93a7-64a3830aa506","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.34600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c3497d2b-feeb-49a5-a874-132138ef6398","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.50400000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5649370,"on_next_draw_uptime":5649460,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d21ee23b-1c6a-4685-b094-c5cd0cba6c6a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dc079d59-b8c3-4375-ab14-12ea069c1e36","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e384386f-f116-4cdd-95fe-ddf1eb0d0172","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.39500000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e4411497-a606-417e-b4c0-bced218dae2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33469,"total_pss":43214,"rss":121884,"native_total_heap":24188,"native_free_heap":1318,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e8b50b52-90f8-4e47-bc79-216bfb2b24ff","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.41200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33683,"total_pss":48587,"rss":130168,"native_total_heap":24188,"native_free_heap":1320,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ec8ee256-78d5-4c9a-bd5f-674f3a1346ad","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ef41ea88-1e53-4c6c-aacf-715acd5aaf03","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f13241ac-6270-4e8d-9905-54bfddc4e136","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:21.92100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5655879,"utime":18,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f21944d3-ecdb-4e26-9276-e3b2df83886b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.95200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":34087,"rss":139540,"native_total_heap":22396,"native_free_heap":1076,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f244ac21-aa15-4957-85e9-c8b31957ac90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ffc250e6-9039-46fd-a26e-1041e54faa11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.83900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"1111557b-2860-4bbe-8a3c-2904b401259a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.93500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4226,"total_pss":35199,"rss":112240,"native_total_heap":24188,"native_free_heap":2200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"12e7e4d7-4aed-41ef-8b1f-a16051e812c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.02500000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5645841,"process_start_requested_uptime":5645770,"content_provider_attach_uptime":5645853,"on_next_draw_uptime":5645983,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1b95f7c3-1048-4dfd-925a-979a246493a8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.93400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5645892,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"25b950b1-91c3-491a-907c-fb84b11923b8","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35586,"total_pss":48720,"rss":142044,"native_total_heap":22396,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"29a69306-6c75-4e2e-8e2b-5212d57932c0","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:24.92700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5658885,"utime":20,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2e76443f-9e28-4e03-9196-73c3d41ead28","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.85000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"31131059-97c1-4a93-b332-95b56f78aadd","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:20.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33401,"total_pss":42312,"rss":121872,"native_total_heap":24188,"native_free_heap":1325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3ecfa79f-e3a0-47bd-818f-ffdadcb157cb","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"41148d6a-f6a5-4355-8598-53ddcf7ad476","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4e1a5b23-1a7f-406a-beb5-2c5bdfb00e81","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5a6a5d3d-964b-4cdf-bf62-e43988ee9431","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"619f60ec-0df1-46c3-8643-01ca67b70888","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35433,"total_pss":46091,"rss":143612,"native_total_heap":22652,"native_free_heap":1232,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"71d1fa9e-d0e5-4494-aff4-eac7d784835b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5649371,"utime":6,"cutime":0,"cstime":0,"stime":8,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"759e3bc2-0c69-4696-804b-1456d6a89f90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:12.09300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5646019,"end_time":5646051,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12012","content-type":"multipart/form-data; boundary=3ce6d5ea-fe4d-476c-abbd-1ce97133acfc","host":"10.0.2.2:8080","msr-req-id":"8847c7a3-09ab-488b-aab1-94d1cf86427f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:14 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"77741e07-a53a-453f-8ab9-7de58388f262","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.92700000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7e484a92-22db-4eda-94ab-0b24c681db26","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.75100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":561.9507,"y":1612.901,"touch_down_time":5650619,"touch_up_time":5650708},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81838aa5-c6bf-4773-b4c7-6a46bc53e05d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:26.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4126,"total_pss":33279,"rss":109440,"native_total_heap":24188,"native_free_heap":2168,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"857ee389-db23-4072-abe2-f509eaade449","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.51600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"92d0de93-ff2d-4ffa-b4ad-1606014c6e11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.96200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5652878,"on_next_draw_uptime":5652920,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"9eac2bfa-22b7-472f-9026-f7edb9b1ceea","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.41400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5652372,"utime":17,"cutime":0,"cstime":0,"stime":16,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a0b53ad0-9434-47eb-8c52-1a4db2076a1e","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:12.05800000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14450"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a124512c-dba7-40a4-87c5-5f73e351cfe2","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:25.47000000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a2a496c1-5aa6-493e-b834-fdd19e63ccb5","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.42100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a32cd081-333f-48da-aee9-f5538985dd52","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:27.92100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5661879,"utime":21,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"no_network","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a65970f6-fda7-401e-aa0d-c4b8bbd034c4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:28.74200000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile","device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"acded69d-660f-4caa-bca0-052d6abe41a4","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:22.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8789,"java_free_heap":4314,"total_pss":35617,"rss":112012,"native_total_heap":24188,"native_free_heap":2236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b2b5c96f-eb95-4aaa-93a7-64a3830aa506","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.34600000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c3497d2b-feeb-49a5-a874-132138ef6398","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.50400000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5649370,"on_next_draw_uptime":5649460,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d21ee23b-1c6a-4685-b094-c5cd0cba6c6a","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.82200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dc079d59-b8c3-4375-ab14-12ea069c1e36","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:15.41100000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e384386f-f116-4cdd-95fe-ddf1eb0d0172","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:14.39500000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e4411497-a606-417e-b4c0-bced218dae2d","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:18.92100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33469,"total_pss":43214,"rss":121884,"native_total_heap":24188,"native_free_heap":1318,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e8b50b52-90f8-4e47-bc79-216bfb2b24ff","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.41200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33683,"total_pss":48587,"rss":130168,"native_total_heap":24188,"native_free_heap":1320,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ec8ee256-78d5-4c9a-bd5f-674f3a1346ad","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:17.99200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ef41ea88-1e53-4c6c-aacf-715acd5aaf03","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.91200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f13241ac-6270-4e8d-9905-54bfddc4e136","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:21.92100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564577,"uptime":5655879,"utime":18,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f21944d3-ecdb-4e26-9276-e3b2df83886b","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:11.95200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":34087,"rss":139540,"native_total_heap":22396,"native_free_heap":1076,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f244ac21-aa15-4957-85e9-c8b31957ac90","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:13.90400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ffc250e6-9039-46fd-a26e-1041e54faa11","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:16.83900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json b/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json index bfa571f33..619d3c3b7 100644 --- a/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json +++ b/self-host/session-data/sh.measure.sample/1.0/8847c7a3-09ab-488b-aab1-94d1cf86427f.json @@ -1 +1 @@ -[{"id":"1c7c3bec-ffe7-40cb-8841-29f5762d73e9","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.95600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5642650,"process_start_requested_uptime":5642584,"content_provider_attach_uptime":5642688,"on_next_draw_uptime":5642914,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"46d08148-a240-4204-b23b-2d9cff8d0aef","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.08700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":526.9812,"y":809.9396,"touch_down_time":5643967,"touch_up_time":5644044},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73ed533e-bbf8-4cff-bd5c-6dab044c998d","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81fde776-0c7b-4d2a-a345-d40ea6afd3c2","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35089,"total_pss":50615,"rss":144072,"native_total_heap":23524,"native_free_heap":1240,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8bb4a561-afc8-4360-870b-30de322d8074","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"97ff5db1-2a7a-4a2e-b267-115a491fa032","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":564259,"uptime":5642776,"utime":2,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ab3b18a2-97b3-4442-8816-cbdb6b700c3f","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.82900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32696,"rss":139372,"native_total_heap":22396,"native_free_heap":1095,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"defda047-69fc-479a-a87a-63877d57f881","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:08.99400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14405"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e3062d74-acaa-4d1d-a35a-e1727c4069e4","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.12000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5644054,"end_time":5644078,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12557","content-type":"multipart/form-data; boundary=99621b89-53ec-481b-a46d-d1d9b429217d","host":"10.0.2.2:8080","msr-req-id":"732c7fe9-c154-4b8b-86bf-a17424b4b224","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:12 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f315eee8-ea37-4d99-8dae-7f49777b2a0a","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:09.05600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5642887,"end_time":5643014,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11013","content-type":"multipart/form-data; boundary=9720d70f-9810-4a84-b0a4-8125ad0174e6","host":"10.0.2.2:8080","msr-req-id":"c69b41cd-a9f8-46a9-800e-cc9746ce5299","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"1c7c3bec-ffe7-40cb-8841-29f5762d73e9","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.95600000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5642650,"process_start_requested_uptime":5642584,"content_provider_attach_uptime":5642688,"on_next_draw_uptime":5642914,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"46d08148-a240-4204-b23b-2d9cff8d0aef","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.08700000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":526.9812,"y":809.9396,"touch_down_time":5643967,"touch_up_time":5644044},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73ed533e-bbf8-4cff-bd5c-6dab044c998d","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"81fde776-0c7b-4d2a-a345-d40ea6afd3c2","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.73900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35089,"total_pss":50615,"rss":144072,"native_total_heap":23524,"native_free_heap":1240,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8bb4a561-afc8-4360-870b-30de322d8074","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"97ff5db1-2a7a-4a2e-b267-115a491fa032","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.81800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":564259,"uptime":5642776,"utime":2,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ab3b18a2-97b3-4442-8816-cbdb6b700c3f","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:08.82900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184767,"total_pss":32696,"rss":139372,"native_total_heap":22396,"native_free_heap":1095,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"defda047-69fc-479a-a87a-63877d57f881","session_id":"db1589d8-9c51-40fa-a2b1-04de125e438f","timestamp":"2024-04-29T11:46:08.99400000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14405"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e3062d74-acaa-4d1d-a35a-e1727c4069e4","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:10.12000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5644054,"end_time":5644078,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"12557","content-type":"multipart/form-data; boundary=99621b89-53ec-481b-a46d-d1d9b429217d","host":"10.0.2.2:8080","msr-req-id":"732c7fe9-c154-4b8b-86bf-a17424b4b224","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:12 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f315eee8-ea37-4d99-8dae-7f49777b2a0a","session_id":"b1c32355-2645-412b-bb60-8ec6c772b49c","timestamp":"2024-04-29T11:46:09.05600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5642887,"end_time":5643014,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11013","content-type":"multipart/form-data; boundary=9720d70f-9810-4a84-b0a4-8125ad0174e6","host":"10.0.2.2:8080","msr-req-id":"c69b41cd-a9f8-46a9-800e-cc9746ce5299","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:11 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json b/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json index e0820b8dd..3fd122eee 100644 --- a/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json +++ b/self-host/session-data/sh.measure.sample/1.0/91f592df-e543-47b2-aafb-ef67f050ac91.json @@ -1 +1 @@ -[{"id":"17b9a183-f03a-44cc-9bad-7527ab3a7e10","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.48300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142430,"end_time":1142437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2991b227-35a6-4636-b927-5989ccbd187c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1164226,"utime":431,"cutime":0,"cstime":0,"stime":478,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e57de74-66e7-4f32-9caf-37c3e67c67bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:35.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2568,"total_pss":29456,"rss":86836,"native_total_heap":26040,"native_free_heap":3200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33f372ee-c2e3-4305-8f1c-9cc4a2a84942","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1122227,"utime":408,"cutime":0,"cstime":0,"stime":451,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34ec8b1f-78d3-410b-a43b-19e34dd090ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.25900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1158227,"utime":426,"cutime":0,"cstime":0,"stime":472,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3575968e-80be-42c4-a64f-3ad98968858c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152395,"end_time":1152414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d091308-8d0c-4b25-8d9e-62ec9062d710","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:02.36800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3428,"total_pss":27620,"rss":84996,"native_total_heap":26040,"native_free_heap":3315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dd76293-324e-41f4-80fc-7facf1f1c157","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3034,"total_pss":28405,"rss":86016,"native_total_heap":26040,"native_free_heap":3188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44f56e09-ca8c-43dc-afff-9d3fbad57071","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1128226,"utime":412,"cutime":0,"cstime":0,"stime":454,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465925be-5161-48d3-aaa8-8fbbd7cf885b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3252,"total_pss":27760,"rss":85084,"native_total_heap":26040,"native_free_heap":3247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47e9819c-ca6f-4a4e-862b-9d98891cb7aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132405,"end_time":1132415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ac34409-aca0-4029-a2e5-a18963675fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.94900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1161228,"utime":426,"cutime":0,"cstime":0,"stime":475,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"526764f1-5ead-4845-9ded-3ae68d30323e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:36.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1125227,"utime":411,"cutime":0,"cstime":0,"stime":453,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"584f5165-4bde-4f63-82ca-0d9bad1cd4f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.71200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2252,"total_pss":29608,"rss":87076,"native_total_heap":26040,"native_free_heap":3079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5aa8af19-c6ab-4cb1-a856-75f235a7ed4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1140228,"utime":416,"cutime":0,"cstime":0,"stime":462,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b8b65b5-99c4-4bcb-b4f6-5358341732f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:37.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2464,"total_pss":29512,"rss":86836,"native_total_heap":26040,"native_free_heap":3164,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ca71524-0496-40d2-89b4-44146a3c7f63","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:06.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4066,"total_pss":27640,"rss":85172,"native_total_heap":26040,"native_free_heap":3356,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5faec79d-fd2e-4152-adb9-135a5384f747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.46200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122410,"end_time":1122414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fdd004a-25b1-480a-9816-8c8e9f417bd9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:35.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1480,"total_pss":30279,"rss":87716,"native_total_heap":26040,"native_free_heap":2978,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b9bb7e-0a9e-4e50-bd7b-682aa1925be9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.46600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152430,"end_time":1152434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a21f0fd-ba48-4cf0-aba1-2099d8fb3845","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.47100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142410,"end_time":1142425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb877f1-0499-4628-b0db-ecf0512013af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1152228,"utime":422,"cutime":0,"cstime":0,"stime":469,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7eaf0fc2-387e-4291-a9ec-03fb698df02d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:36.34800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1137226,"utime":415,"cutime":0,"cstime":0,"stime":461,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84b484f4-cc8b-4016-9269-681b59026891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1268,"total_pss":29057,"rss":86420,"native_total_heap":26040,"native_free_heap":2889,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dd1b8d7-8f3d-4af5-8245-c217a083f493","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:01.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2356,"total_pss":29584,"rss":86956,"native_total_heap":26040,"native_free_heap":3111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dfab573-2c9a-4d67-8b49-ec361ebc943a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:31.27500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3356,"total_pss":27708,"rss":85072,"native_total_heap":26040,"native_free_heap":3283,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e4cad32-1324-4c63-ac1f-c9cccdc0f052","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:25.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3246,"total_pss":28335,"rss":85972,"native_total_heap":26040,"native_free_heap":3273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"924af6b0-c904-4eb2-ad2a-c066cedd0100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1146228,"utime":420,"cutime":0,"cstime":0,"stime":466,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ae536d-5e47-4567-8e2e-d95d5c78d4f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:02.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2962,"total_pss":28569,"rss":86016,"native_total_heap":26040,"native_free_heap":3152,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9474b951-fae8-407c-bf40-569b7b5fe26a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:05.26200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1149227,"utime":422,"cutime":0,"cstime":0,"stime":467,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96728854-0636-469c-83bb-f0aaef124fec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:22.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1143228,"utime":418,"cutime":0,"cstime":0,"stime":464,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99ce2ca7-3f97-429c-991a-b042d32fdc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:30.27500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1119226,"utime":406,"cutime":0,"cstime":0,"stime":451,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9fbfe4a6-a8f5-4bb1-bd1e-4023e3aeff19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:26.26100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1155228,"utime":424,"cutime":0,"cstime":0,"stime":471,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a35119b1-5205-4fb9-a480-2189d7b59787","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1134228,"utime":414,"cutime":0,"cstime":0,"stime":458,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8339eb4-b17a-4429-a235-4846167086ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:37.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1392,"total_pss":29401,"rss":86880,"native_total_heap":26040,"native_free_heap":2942,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8c7ca82-a3c5-4b04-bd71-da79de0b1fdc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1532,"total_pss":30252,"rss":87716,"native_total_heap":26040,"native_free_heap":2994,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"affe573d-4e30-483f-b62f-bf760986026e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2376,"total_pss":29520,"rss":86836,"native_total_heap":26040,"native_free_heap":3132,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b257a77a-c3d8-4ac5-8a44-799cf8b0f482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1320,"total_pss":29030,"rss":86420,"native_total_heap":26040,"native_free_heap":2910,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49e0933-51da-4621-a7a3-eac220163f87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:02.71400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1131229,"utime":413,"cutime":0,"cstime":0,"stime":455,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6fcf1a2-16e7-4f36-8704-256877a7e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.16700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162428,"end_time":1162446,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb166012-646e-4815-a8f5-6c4b1d5cc182","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3480,"total_pss":27577,"rss":84888,"native_total_heap":26040,"native_free_heap":3335,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc3a157e-d700-483a-9ada-6d67f9dc969e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:23.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":532,"total_pss":29904,"rss":87140,"native_total_heap":26040,"native_free_heap":2822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce588d6b-8147-4160-bd9a-16069ec89a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.91700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132425,"end_time":1132431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7076412-2803-44f6-896c-7eb2d76b646c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:27.25900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3174,"total_pss":28387,"rss":86016,"native_total_heap":26040,"native_free_heap":3236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb6d3856-1941-4668-97a4-0072cfcf5218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.13900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162401,"end_time":1162418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eda84555-7fd9-44b9-887c-76fa23696c02","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3994,"total_pss":27664,"rss":85224,"native_total_heap":26040,"native_free_heap":3324,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5496fdf-5dc8-4957-9eb6-a95461d22b9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.45400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122399,"end_time":1122406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f60c7196-6518-46d2-90a5-3cbbf9e93d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:04.26200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4154,"total_pss":27633,"rss":85112,"native_total_heap":26040,"native_free_heap":3392,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6470fec-457b-4335-ab31-85c844f847e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4222,"total_pss":27597,"rss":85008,"native_total_heap":26040,"native_free_heap":3408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8d68f6-548e-48d6-bf85-c41b0cb9899e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3086,"total_pss":28443,"rss":86016,"native_total_heap":26040,"native_free_heap":3204,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"17b9a183-f03a-44cc-9bad-7527ab3a7e10","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.48300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142430,"end_time":1142437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2991b227-35a6-4636-b927-5989ccbd187c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:04.94700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1164226,"utime":431,"cutime":0,"cstime":0,"stime":478,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2e57de74-66e7-4f32-9caf-37c3e67c67bc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:35.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2568,"total_pss":29456,"rss":86836,"native_total_heap":26040,"native_free_heap":3200,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33f372ee-c2e3-4305-8f1c-9cc4a2a84942","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1122227,"utime":408,"cutime":0,"cstime":0,"stime":451,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"34ec8b1f-78d3-410b-a43b-19e34dd090ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.25900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1158227,"utime":426,"cutime":0,"cstime":0,"stime":472,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3575968e-80be-42c4-a64f-3ad98968858c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.44700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152395,"end_time":1152414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3d091308-8d0c-4b25-8d9e-62ec9062d710","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:02.36800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3428,"total_pss":27620,"rss":84996,"native_total_heap":26040,"native_free_heap":3315,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dd76293-324e-41f4-80fc-7facf1f1c157","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3034,"total_pss":28405,"rss":86016,"native_total_heap":26040,"native_free_heap":3188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44f56e09-ca8c-43dc-afff-9d3fbad57071","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1128226,"utime":412,"cutime":0,"cstime":0,"stime":454,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465925be-5161-48d3-aaa8-8fbbd7cf885b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.27700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3252,"total_pss":27760,"rss":85084,"native_total_heap":26040,"native_free_heap":3247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47e9819c-ca6f-4a4e-862b-9d98891cb7aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132405,"end_time":1132415,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ac34409-aca0-4029-a2e5-a18963675fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:01.94900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1161228,"utime":426,"cutime":0,"cstime":0,"stime":475,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"526764f1-5ead-4845-9ded-3ae68d30323e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:36.27500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1125227,"utime":411,"cutime":0,"cstime":0,"stime":453,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"584f5165-4bde-4f63-82ca-0d9bad1cd4f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.71200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2252,"total_pss":29608,"rss":87076,"native_total_heap":26040,"native_free_heap":3079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5aa8af19-c6ab-4cb1-a856-75f235a7ed4d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1140228,"utime":416,"cutime":0,"cstime":0,"stime":462,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b8b65b5-99c4-4bcb-b4f6-5358341732f0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:37.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2464,"total_pss":29512,"rss":86836,"native_total_heap":26040,"native_free_heap":3164,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ca71524-0496-40d2-89b4-44146a3c7f63","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:06.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4066,"total_pss":27640,"rss":85172,"native_total_heap":26040,"native_free_heap":3356,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5faec79d-fd2e-4152-adb9-135a5384f747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.46200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122410,"end_time":1122414,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6fdd004a-25b1-480a-9816-8c8e9f417bd9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:35.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1480,"total_pss":30279,"rss":87716,"native_total_heap":26040,"native_free_heap":2978,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b9bb7e-0a9e-4e50-bd7b-682aa1925be9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.46600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1152430,"end_time":1152434,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a21f0fd-ba48-4cf0-aba1-2099d8fb3845","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.47100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1142410,"end_time":1142425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb877f1-0499-4628-b0db-ecf0512013af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1152228,"utime":422,"cutime":0,"cstime":0,"stime":469,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7eaf0fc2-387e-4291-a9ec-03fb698df02d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:36.34800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1137226,"utime":415,"cutime":0,"cstime":0,"stime":461,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"84b484f4-cc8b-4016-9269-681b59026891","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:21.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1268,"total_pss":29057,"rss":86420,"native_total_heap":26040,"native_free_heap":2889,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dd1b8d7-8f3d-4af5-8245-c217a083f493","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:01.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2356,"total_pss":29584,"rss":86956,"native_total_heap":26040,"native_free_heap":3111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8dfab573-2c9a-4d67-8b49-ec361ebc943a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:31.27500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3356,"total_pss":27708,"rss":85072,"native_total_heap":26040,"native_free_heap":3283,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e4cad32-1324-4c63-ac1f-c9cccdc0f052","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:25.26000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3246,"total_pss":28335,"rss":85972,"native_total_heap":26040,"native_free_heap":3273,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"924af6b0-c904-4eb2-ad2a-c066cedd0100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1146228,"utime":420,"cutime":0,"cstime":0,"stime":466,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92ae536d-5e47-4567-8e2e-d95d5c78d4f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:02.94900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":2962,"total_pss":28569,"rss":86016,"native_total_heap":26040,"native_free_heap":3152,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9474b951-fae8-407c-bf40-569b7b5fe26a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:05.26200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1149227,"utime":422,"cutime":0,"cstime":0,"stime":467,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96728854-0636-469c-83bb-f0aaef124fec","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:22.27500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1143228,"utime":418,"cutime":0,"cstime":0,"stime":464,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"99ce2ca7-3f97-429c-991a-b042d32fdc7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:30.27500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1119226,"utime":406,"cutime":0,"cstime":0,"stime":451,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9fbfe4a6-a8f5-4bb1-bd1e-4023e3aeff19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:26.26100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1155228,"utime":424,"cutime":0,"cstime":0,"stime":471,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a35119b1-5205-4fb9-a480-2189d7b59787","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1134228,"utime":414,"cutime":0,"cstime":0,"stime":458,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8339eb4-b17a-4429-a235-4846167086ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:37.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1392,"total_pss":29401,"rss":86880,"native_total_heap":26040,"native_free_heap":2942,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8c7ca82-a3c5-4b04-bd71-da79de0b1fdc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:46:33.35200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1532,"total_pss":30252,"rss":87716,"native_total_heap":26040,"native_free_heap":2994,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"affe573d-4e30-483f-b62f-bf760986026e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:30:59.71300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2376,"total_pss":29520,"rss":86836,"native_total_heap":26040,"native_free_heap":3132,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b257a77a-c3d8-4ac5-8a44-799cf8b0f482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:19.27600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1320,"total_pss":29030,"rss":86420,"native_total_heap":26040,"native_free_heap":2910,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b49e0933-51da-4621-a7a3-eac220163f87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:02.71400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1131229,"utime":413,"cutime":0,"cstime":0,"stime":455,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b6fcf1a2-16e7-4f36-8704-256877a7e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.16700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162428,"end_time":1162446,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb166012-646e-4815-a8f5-6c4b1d5cc182","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T21:57:00.37500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3480,"total_pss":27577,"rss":84888,"native_total_heap":26040,"native_free_heap":3335,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc3a157e-d700-483a-9ada-6d67f9dc969e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:03:23.27400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":532,"total_pss":29904,"rss":87140,"native_total_heap":26040,"native_free_heap":2822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce588d6b-8147-4160-bd9a-16069ec89a11","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:31:03.91700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1132425,"end_time":1132431,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7076412-2803-44f6-896c-7eb2d76b646c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:27.25900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3174,"total_pss":28387,"rss":86016,"native_total_heap":26040,"native_free_heap":3236,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb6d3856-1941-4668-97a4-0072cfcf5218","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:46:03.13900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1162401,"end_time":1162418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eda84555-7fd9-44b9-887c-76fa23696c02","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:23.26600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3994,"total_pss":27664,"rss":85224,"native_total_heap":26040,"native_free_heap":3324,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5496fdf-5dc8-4957-9eb6-a95461d22b9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T22:14:33.45400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1122399,"end_time":1122406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f60c7196-6518-46d2-90a5-3cbbf9e93d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:04.26200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4154,"total_pss":27633,"rss":85112,"native_total_heap":26040,"native_free_heap":3392,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6470fec-457b-4335-ab31-85c844f847e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:20:02.26300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":4222,"total_pss":27597,"rss":85008,"native_total_heap":26040,"native_free_heap":3408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe8d68f6-548e-48d6-bf85-c41b0cb9899e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T23:28:29.26100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":3086,"total_pss":28443,"rss":86016,"native_total_heap":26040,"native_free_heap":3204,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json b/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json index c625df2ec..ad82e6d49 100644 --- a/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json +++ b/self-host/session-data/sh.measure.sample/1.0/9393c6dd-b66c-4cee-8665-42f407db0bac.json @@ -1 +1 @@ -[{"id":"9d31a29d-b4df-4224-b911-add937b51e90","session_id":"4e78101f-df99-414d-a57c-bae6a5554624","timestamp":"2024-06-12T18:33:39.41400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":101574,"uptime":1016483,"utime":21,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"714d133f-d5cd-4c25-b456-e9331082fcbd","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file +[{"id":"9d31a29d-b4df-4224-b911-add937b51e90","session_id":"4e78101f-df99-414d-a57c-bae6a5554624","timestamp":"2024-06-12T18:33:39.41400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":101574,"uptime":1016483,"utime":21,"cutime":0,"cstime":0,"stime":9,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.2.0","installation_id":"714d133f-d5cd-4c25-b456-e9331082fcbd","network_type":"wifi","network_generation":"unknown","network_provider_name":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json b/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json index 4a3848203..c2e492b7f 100644 --- a/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json +++ b/self-host/session-data/sh.measure.sample/1.0/9ba32a49-6884-4183-bb88-330089292b4f.json @@ -1 +1 @@ -[{"id":"4466cd92-dada-4ec6-affd-0c1da93cef06","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"64abbbb2-236c-4cc7-b44a-f48bc9804c10","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5201098,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"999d1885-a06e-4285-bf1c-704e2f9a0c31","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185910,"total_pss":22622,"rss":99600,"native_total_heap":11608,"native_free_heap":1402,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c57aebe1-4374-474b-94b5-c74922e77830","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dd3af18e-218e-46ec-ab9b-c649e698c6aa","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"4466cd92-dada-4ec6-affd-0c1da93cef06","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.22900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"64abbbb2-236c-4cc7-b44a-f48bc9804c10","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5201098,"utime":0,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"999d1885-a06e-4285-bf1c-704e2f9a0c31","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.14100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185910,"total_pss":22622,"rss":99600,"native_total_heap":11608,"native_free_heap":1402,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c57aebe1-4374-474b-94b5-c74922e77830","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37500000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dd3af18e-218e-46ec-ab9b-c649e698c6aa","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.37700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json b/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json index 3bf3035f8..d10b654a8 100644 --- a/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json +++ b/self-host/session-data/sh.measure.sample/1.0/9e16d01c-4768-4b26-b9e2-34cb8673a5e1.json @@ -1 +1 @@ -[{"id":"0621ffd6-fe36-4487-ba6c-a64353a4b702","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:05.11400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":30653,"rss":84348,"native_total_heap":26296,"native_free_heap":2833,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0983584f-658a-4559-9e8b-1594f8dbbb8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:20.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4250,"total_pss":25412,"rss":79816,"native_total_heap":26040,"native_free_heap":3414,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0be76ffb-f2cf-4a30-8cb0-603a661ef960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.66500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1002,"total_pss":30706,"rss":84348,"native_total_heap":26296,"native_free_heap":2785,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ca3e1f6-b9ce-430f-bcc0-73df8541f840","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:03.79100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1257229,"utime":464,"cutime":0,"cstime":0,"stime":520,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea20574-4b5f-456c-bb96-6cb3fa566667","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:22.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":25850,"rss":78648,"native_total_heap":26040,"native_free_heap":3378,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33eb5567-0c2f-4886-88bb-480c3d02a26d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232432,"end_time":1232444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b420f26-5a61-49e7-9f56-10d73d439f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:21.24100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1227227,"utime":455,"cutime":0,"cstime":0,"stime":505,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ca132ff-aa1d-4f28-8a8b-71cdd9be6d22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.17300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242424,"end_time":1242428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"428509e1-3648-4d2a-b42c-69b56d283be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:32.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29320,"rss":82764,"native_total_heap":26296,"native_free_heap":3258,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44996c25-4d1a-4e3f-9b2c-fa5c765e4709","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":30581,"rss":84348,"native_total_heap":26296,"native_free_heap":2885,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4538f9f0-99a6-4b84-8886-99300b6d3844","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:38.10700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29718,"rss":83100,"native_total_heap":26296,"native_free_heap":3054,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4607c61c-3c20-44cf-baaf-9fea81f2b62e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:16.85700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2058,"total_pss":29776,"rss":83160,"native_total_heap":26296,"native_free_heap":3007,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"476b0ec0-55c5-489b-9f71-3cb11a2d41f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.85700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262404,"end_time":1262420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d8cd2c9-4183-4a97-9e63-8c15b3fbd28c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:30.34900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1090,"total_pss":28981,"rss":85420,"native_total_heap":26040,"native_free_heap":2854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52764a82-8954-4722-b439-f819353b0bc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4090,"total_pss":26721,"rss":78548,"native_total_heap":26040,"native_free_heap":3346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55877287-e327-46c5-ba4a-92acdf537851","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.02000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252441,"end_time":1252458,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"582d5d33-faee-4f47-900a-b84c31240426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2970,"total_pss":26875,"rss":80092,"native_total_heap":26296,"native_free_heap":3142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6532c2ad-21d8-469f-86c5-04ed4582ec74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:29.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1215227,"utime":451,"cutime":0,"cstime":0,"stime":502,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6958f7a9-c6b6-4063-bfd2-c5db9861207f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:17.85600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1251228,"utime":462,"cutime":0,"cstime":0,"stime":516,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a2e44c0-5e8a-469f-9d68-560846926d72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":894,"total_pss":29520,"rss":84704,"native_total_heap":26040,"native_free_heap":2783,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73f1e0e6-75dc-4ff5-be3c-8245255e0038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":142,"total_pss":29965,"rss":85652,"native_total_heap":26040,"native_free_heap":2693,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77fb64be-6d0b-4aeb-a8c8-6e01a69f3e7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1254228,"utime":463,"cutime":0,"cstime":0,"stime":518,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d5976f-67b5-46fb-9b7f-68dd07a1952c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.85600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1248228,"utime":460,"cutime":0,"cstime":0,"stime":515,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"868e2854-a976-4b69-a6a9-30c39f0dfa27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.16100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242406,"end_time":1242416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a9d6fff-e5d2-4d0d-9bf7-a72223aa182a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:38.09100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":26893,"rss":80252,"native_total_heap":26296,"native_free_heap":3174,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e2595c7-6152-45f9-8ccc-36a8b0dee5d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:28.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1178,"total_pss":30770,"rss":87116,"native_total_heap":26040,"native_free_heap":2890,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f7127f1-9b3d-439f-b5d9-5ace5c50596d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:37.07000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1239226,"utime":458,"cutime":0,"cstime":0,"stime":510,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a078fef5-2c58-4523-929f-4989f139e609","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1218227,"utime":452,"cutime":0,"cstime":0,"stime":503,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1d9b0a8-6e1a-4674-8cb2-07c955ba7747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.01200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1874,"total_pss":30032,"rss":84348,"native_total_heap":26296,"native_free_heap":2921,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7dfbd83-bcb3-4f8a-9dc1-59b8e015425e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:14.60900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":966,"total_pss":28290,"rss":83784,"native_total_heap":26040,"native_free_heap":2801,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8936ca0-861b-4ca3-bfd1-4320abba4cff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:36.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3130,"total_pss":27012,"rss":80576,"native_total_heap":26296,"native_free_heap":3210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a96d2d1c-2c96-4b3e-bd92-fd137cca68e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1236229,"utime":457,"cutime":0,"cstime":0,"stime":509,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab323a87-1ffc-4a10-b8ce-6cdc17834d5b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":27091,"rss":80576,"native_total_heap":26296,"native_free_heap":3226,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aedd041e-b219-497d-a633-7a49dd631aad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.05100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252462,"end_time":1252488,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aee8e31d-21e3-4ee2-8a6b-558775beae89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1224227,"utime":453,"cutime":0,"cstime":0,"stime":504,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b037f6be-f420-4013-8290-0fdeeeb1e575","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.86000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29758,"rss":83160,"native_total_heap":26296,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0fbab63-5bd9-4de8-9c7d-9da50084bb13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1242229,"utime":459,"cutime":0,"cstime":0,"stime":511,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b286ad8e-1870-4feb-86ba-34d54eb261d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.42200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222404,"end_time":1222408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b525b41f-7a68-4a8a-9d68-90d825aacd9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4038,"total_pss":26941,"rss":78876,"native_total_heap":26040,"native_free_heap":3325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b84941c1-c9f5-4dd3-b9c8-575457b236cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1260228,"utime":465,"cutime":0,"cstime":0,"stime":520,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc046ab9-635e-4d43-b2e8-66ad015505c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.35500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232405,"end_time":1232422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc4106e0-b5e2-4707-bdfd-5943bbd420ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1034,"total_pss":29513,"rss":85736,"native_total_heap":26040,"native_free_heap":2822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcd949d4-2eb8-4761-a21a-01c9d7a33ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1230228,"utime":455,"cutime":0,"cstime":0,"stime":506,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9a6753e-d5b5-4e8a-8391-f92b146c7d85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:02.79000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1198,"total_pss":30605,"rss":84348,"native_total_heap":26296,"native_free_heap":2869,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca7b20-267c-4ad7-84a0-98a043fc2072","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:27.16100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1233228,"utime":457,"cutime":0,"cstime":0,"stime":508,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b2529a-02a7-43e4-9ee9-07656c8fded1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:35.97200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2270,"total_pss":29663,"rss":83100,"native_total_heap":26296,"native_free_heap":3091,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5c2db38-b473-41ba-bf71-4d30afb1f290","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1022,"total_pss":30682,"rss":84348,"native_total_heap":26296,"native_free_heap":2801,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0fe963d-891f-4ef4-905d-40b564d0b285","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:15.61000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1221227,"utime":452,"cutime":0,"cstime":0,"stime":504,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6af15a4-1bcb-4218-ae40-c6af06aa4ac0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:36.97400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1245229,"utime":460,"cutime":0,"cstime":0,"stime":514,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff6cf4a1-390d-4c8b-a12c-42ad4a730368","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.41300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222396,"end_time":1222399,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0621ffd6-fe36-4487-ba6c-a64353a4b702","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:05.11400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":30653,"rss":84348,"native_total_heap":26296,"native_free_heap":2833,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0983584f-658a-4559-9e8b-1594f8dbbb8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:20.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4250,"total_pss":25412,"rss":79816,"native_total_heap":26040,"native_free_heap":3414,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0be76ffb-f2cf-4a30-8cb0-603a661ef960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.66500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1002,"total_pss":30706,"rss":84348,"native_total_heap":26296,"native_free_heap":2785,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ca3e1f6-b9ce-430f-bcc0-73df8541f840","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:03.79100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1257229,"utime":464,"cutime":0,"cstime":0,"stime":520,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea20574-4b5f-456c-bb96-6cb3fa566667","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:22.15900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4162,"total_pss":25850,"rss":78648,"native_total_heap":26040,"native_free_heap":3378,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33eb5567-0c2f-4886-88bb-480c3d02a26d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.37700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232432,"end_time":1232444,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3b420f26-5a61-49e7-9f56-10d73d439f9d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:21.24100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1227227,"utime":455,"cutime":0,"cstime":0,"stime":505,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3ca132ff-aa1d-4f28-8a8b-71cdd9be6d22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.17300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242424,"end_time":1242428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"428509e1-3648-4d2a-b42c-69b56d283be7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:32.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29320,"rss":82764,"native_total_heap":26296,"native_free_heap":3258,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"44996c25-4d1a-4e3f-9b2c-fa5c765e4709","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":30581,"rss":84348,"native_total_heap":26296,"native_free_heap":2885,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4538f9f0-99a6-4b84-8886-99300b6d3844","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:38.10700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29718,"rss":83100,"native_total_heap":26296,"native_free_heap":3054,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4607c61c-3c20-44cf-baaf-9fea81f2b62e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:16.85700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2058,"total_pss":29776,"rss":83160,"native_total_heap":26296,"native_free_heap":3007,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"476b0ec0-55c5-489b-9f71-3cb11a2d41f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:36.85700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1262404,"end_time":1262420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d8cd2c9-4183-4a97-9e63-8c15b3fbd28c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:30.34900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1090,"total_pss":28981,"rss":85420,"native_total_heap":26040,"native_free_heap":2854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52764a82-8954-4722-b439-f819353b0bc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4090,"total_pss":26721,"rss":78548,"native_total_heap":26040,"native_free_heap":3346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"55877287-e327-46c5-ba4a-92acdf537851","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.02000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252441,"end_time":1252458,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"582d5d33-faee-4f47-900a-b84c31240426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2970,"total_pss":26875,"rss":80092,"native_total_heap":26296,"native_free_heap":3142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6532c2ad-21d8-469f-86c5-04ed4582ec74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:29.35000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1215227,"utime":451,"cutime":0,"cstime":0,"stime":502,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6958f7a9-c6b6-4063-bfd2-c5db9861207f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:17.85600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1251228,"utime":462,"cutime":0,"cstime":0,"stime":516,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6a2e44c0-5e8a-469f-9d68-560846926d72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.24000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":894,"total_pss":29520,"rss":84704,"native_total_heap":26040,"native_free_heap":2783,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73f1e0e6-75dc-4ff5-be3c-8245255e0038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":142,"total_pss":29965,"rss":85652,"native_total_heap":26040,"native_free_heap":2693,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77fb64be-6d0b-4aeb-a8c8-6e01a69f3e7f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:00.79100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1254228,"utime":463,"cutime":0,"cstime":0,"stime":518,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83d5976f-67b5-46fb-9b7f-68dd07a1952c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.85600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1248228,"utime":460,"cutime":0,"cstime":0,"stime":515,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"868e2854-a976-4b69-a6a9-30c39f0dfa27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:34.16100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1242406,"end_time":1242416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a9d6fff-e5d2-4d0d-9bf7-a72223aa182a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:38.09100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":26893,"rss":80252,"native_total_heap":26296,"native_free_heap":3174,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9e2595c7-6152-45f9-8ccc-36a8b0dee5d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:32:28.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1178,"total_pss":30770,"rss":87116,"native_total_heap":26040,"native_free_heap":2890,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f7127f1-9b3d-439f-b5d9-5ace5c50596d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:37.07000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1239226,"utime":458,"cutime":0,"cstime":0,"stime":510,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a078fef5-2c58-4523-929f-4989f139e609","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1218227,"utime":452,"cutime":0,"cstime":0,"stime":503,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1d9b0a8-6e1a-4674-8cb2-07c955ba7747","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.01200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1874,"total_pss":30032,"rss":84348,"native_total_heap":26296,"native_free_heap":2921,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7dfbd83-bcb3-4f8a-9dc1-59b8e015425e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:14.60900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":966,"total_pss":28290,"rss":83784,"native_total_heap":26040,"native_free_heap":2801,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8936ca0-861b-4ca3-bfd1-4320abba4cff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:36.07000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3130,"total_pss":27012,"rss":80576,"native_total_heap":26296,"native_free_heap":3210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a96d2d1c-2c96-4b3e-bd92-fd137cca68e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1236229,"utime":457,"cutime":0,"cstime":0,"stime":509,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab323a87-1ffc-4a10-b8ce-6cdc17834d5b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:35:34.07800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":27091,"rss":80576,"native_total_heap":26296,"native_free_heap":3226,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aedd041e-b219-497d-a633-7a49dd631aad","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:25:59.05100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1252462,"end_time":1252488,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aee8e31d-21e3-4ee2-8a6b-558775beae89","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:18.24100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1224227,"utime":453,"cutime":0,"cstime":0,"stime":504,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b037f6be-f420-4013-8290-0fdeeeb1e575","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:09:14.86000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29758,"rss":83160,"native_total_heap":26296,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0fbab63-5bd9-4de8-9c7d-9da50084bb13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:33.97300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1242229,"utime":459,"cutime":0,"cstime":0,"stime":511,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b286ad8e-1870-4feb-86ba-34d54eb261d9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.42200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222404,"end_time":1222408,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b525b41f-7a68-4a8a-9d68-90d825aacd9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.16000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4038,"total_pss":26941,"rss":78876,"native_total_heap":26040,"native_free_heap":3325,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b84941c1-c9f5-4dd3-b9c8-575457b236cc","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1260228,"utime":465,"cutime":0,"cstime":0,"stime":520,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc046ab9-635e-4d43-b2e8-66ad015505c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:26.35500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1232405,"end_time":1232422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc4106e0-b5e2-4707-bdfd-5943bbd420ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:12.61100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8549,"java_free_heap":1034,"total_pss":29513,"rss":85736,"native_total_heap":26040,"native_free_heap":2822,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcd949d4-2eb8-4761-a21a-01c9d7a33ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:24.16100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1230228,"utime":455,"cutime":0,"cstime":0,"stime":506,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9a6753e-d5b5-4e8a-8391-f92b146c7d85","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:26:02.79000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1198,"total_pss":30605,"rss":84348,"native_total_heap":26296,"native_free_heap":2869,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c9ca7b20-267c-4ad7-84a0-98a043fc2072","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:20:27.16100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1233228,"utime":457,"cutime":0,"cstime":0,"stime":508,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7b2529a-02a7-43e4-9ee9-07656c8fded1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:35.97200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2270,"total_pss":29663,"rss":83100,"native_total_heap":26296,"native_free_heap":3091,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e5c2db38-b473-41ba-bf71-4d30afb1f290","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T03:42:34.66800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1022,"total_pss":30682,"rss":84348,"native_total_heap":26296,"native_free_heap":2801,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0fe963d-891f-4ef4-905d-40b564d0b285","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T01:48:15.61000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1221227,"utime":452,"cutime":0,"cstime":0,"stime":504,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6af15a4-1bcb-4218-ae40-c6af06aa4ac0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:53:36.97400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1245229,"utime":460,"cutime":0,"cstime":0,"stime":514,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff6cf4a1-390d-4c8b-a12c-42ad4a730368","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T02:05:16.41300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1222396,"end_time":1222399,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json b/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json index 344b8886a..cb31418d9 100644 --- a/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json +++ b/self-host/session-data/sh.measure.sample/1.0/a1156417-19b5-4a41-88d1-b1fbef080967.json @@ -1 +1 @@ -[{"id":"036799a7-affa-4209-9758-2985a5e6b7f6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.21600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":513.9624,"y":145.9314,"touch_down_time":5221050,"touch_up_time":5221168},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08e1ebed-4f0a-4d90-87a2-c6d13b7cec9e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5218634,"utime":25,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0d1314b9-75f6-409a-a78c-2371522bf3a6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:15.05200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1c9d46fc-ad0e-449c-89c6-953bb4429c4c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5224634,"utime":59,"cutime":0,"cstime":0,"stime":45,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22f1b342-a663-4633-8fe5-a6761fc04a99","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32493,"total_pss":61274,"rss":150420,"native_total_heap":24956,"native_free_heap":1279,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"230b9504-71b2-4353-9490-92ce51923a2a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.67500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5221633,"utime":42,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2358dd98-a00c-4479-9fe6-eafbf28c044c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:00.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35638,"total_pss":52775,"rss":141420,"native_total_heap":22396,"native_free_heap":1087,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"279ee7d1-5d0b-4535-b8a2-72849d247c08","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"292b1b04-730e-4627-a444-51522df62377","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.89400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2aed95f7-e862-4fa4-9e76-903d611ed201","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2cfef4c2-03e5-4adc-9aee-0d43f2360b9f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:09.02100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":513.9624,"y":1245.9045,"end_x":519.96094,"end_y":477.96936,"direction":"up","touch_down_time":5222833,"touch_up_time":5222978},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"37d24bc7-17fa-46ec-a51a-8542bb9a9ec5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.94000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5212596,"process_start_requested_uptime":5212502,"content_provider_attach_uptime":5212614,"on_next_draw_uptime":5212897,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"436f5e4f-e963-424f-ae15-17050586e449","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.02000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_8","width":null,"height":null,"x":499.95483,"y":2089.9219,"touch_down_time":5219884,"touch_up_time":5219975},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"49a544e3-6b24-471e-811b-1a84d2632f05","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:58.99500000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14205"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"50b31f0f-a51f-4eeb-ace3-c21db4fe3474","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"58ef4456-4a43-47d0-a5fd-47a0e8b2eb4e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.14400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":623.9795,"y":1612.901,"touch_down_time":5218012,"touch_up_time":5218101},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59abf2f5-8dbc-4a8c-ad6e-4c7325ab19d8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.67600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5227634,"utime":70,"cutime":0,"cstime":0,"stime":52,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59b05fa8-2395-4bbe-ab50-10fe5cce1785","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.36000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6e71c997-5d80-47c2-b51d-4123cd8f8bb3","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.37900000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f712ae4-2129-4ad4-8314-3311dac3b672","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.59100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5216331,"end_time":5217549,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:05 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f825ca7-203f-4cae-95d2-7c949d30c911","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.72700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5212679,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73a616e6-bc70-4a27-888f-91831f729eb2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7a57fda4-d7fd-416b-8c7a-d67405fcd11f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":2003,"total_pss":59486,"rss":145832,"native_total_heap":26680,"native_free_heap":1790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8548ef0f-972f-48a1-9b81-117291dfff5c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"85780811-f6f9-4e2e-bfce-1494345f3f8e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32133,"total_pss":61823,"rss":151208,"native_total_heap":24956,"native_free_heap":1346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"867761d3-0068-4537-b414-9084cea172b0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.78700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1217.9242,"touch_down_time":5219636,"touch_up_time":5219742},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a5164609-d4c6-40af-bc51-312833161cf0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.35600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a9c538c7-4fa7-447a-a9b5-6bb32817f56e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:01.67800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5215636,"utime":9,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bd1d09ba-b106-45a7-b61d-981cdd603525","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.33000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":561.9507,"y":1722.9254,"touch_down_time":5227177,"touch_up_time":5227287},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bef9ffb6-d3e1-42cd-9e46-6de0d1aad4de","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.19400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c1b538f3-4528-4e07-95e3-5da0ac15ac80","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5609e88-af46-4b98-ac4f-4465bd00e4c7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.45700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1114.9457,"touch_down_time":5220334,"touch_up_time":5220412},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7d73946-64e8-413b-b458-550f7f05e3a9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3224,"total_pss":57091,"rss":142908,"native_total_heap":25468,"native_free_heap":2609,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9bf0fd6-fe93-4b66-96e1-e1a477f0bbe9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.36900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ccc9cd3e-6de4-4473-971d-2d1d2586bbf8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cf200b6e-e445-405b-b2d9-53e508a2803a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1784e37-61c3-4f94-bb3f-1788c7509d23","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.21900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d4f7e9c9-2c2a-42e7-a4e2-0c89e7d150e6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d6c940b5-3550-4431-a0f4-d8790d0602f4","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.48800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dcfac8d8-c2e1-41af-b97d-14a6702f5775","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.75300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184783,"total_pss":37951,"rss":137108,"native_total_heap":22396,"native_free_heap":1082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1af4715-71c6-4096-b51d-1b09c1510a77","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.34500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7cd6892-e6d0-4ce5-9aee-e48a6f6b8ffb","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:08.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":17282,"java_free_heap":0,"total_pss":62354,"rss":152784,"native_total_heap":25468,"native_free_heap":1309,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb18dbd3-d5bb-4059-bd43-0567e0ee26d0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.16200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ed7f4cca-0006-4457-8f63-2ca7f0c55746","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.91900000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_1","width":null,"height":null,"x":513.9624,"y":318.9624,"touch_down_time":5220784,"touch_up_time":5220874},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f053dac1-4070-49e5-8d53-fe7a76fe346f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.45600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f05491e2-bd17-44f6-afe8-28534919e941","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.32300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":533.9685,"y":1473.9478,"touch_down_time":5216213,"touch_up_time":5216280},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f09c7a45-26c0-49ff-8087-423ae2501de2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35120,"total_pss":54546,"rss":143484,"native_total_heap":23932,"native_free_heap":1122,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc4669b4-72f3-42c5-bffc-b138fdd3df40","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:59.07400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5212951,"end_time":5213032,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15346","content-type":"multipart/form-data; boundary=7451f413-ee15-4d38-b9d5-190422f17e18","host":"10.0.2.2:8080","msr-req-id":"e75f76c8-c1bb-452a-81a9-1f9c193a61d1","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:01 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc9fff6f-ddb1-4b32-8ccb-e516874a0d4d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3676,"total_pss":56315,"rss":142140,"native_total_heap":25468,"native_free_heap":2824,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe32e9ce-e868-46e3-bf3c-27d7660418e2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.52400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":499.95483,"y":816.9177,"touch_down_time":5219383,"touch_up_time":5219469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"036799a7-affa-4209-9758-2985a5e6b7f6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.21600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":513.9624,"y":145.9314,"touch_down_time":5221050,"touch_up_time":5221168},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"08e1ebed-4f0a-4d90-87a2-c6d13b7cec9e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5218634,"utime":25,"cutime":0,"cstime":0,"stime":22,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"0d1314b9-75f6-409a-a78c-2371522bf3a6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:15.05200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1c9d46fc-ad0e-449c-89c6-953bb4429c4c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5224634,"utime":59,"cutime":0,"cstime":0,"stime":45,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"22f1b342-a663-4633-8fe5-a6761fc04a99","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.67700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32493,"total_pss":61274,"rss":150420,"native_total_heap":24956,"native_free_heap":1279,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"230b9504-71b2-4353-9490-92ce51923a2a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:07.67500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5221633,"utime":42,"cutime":0,"cstime":0,"stime":34,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2358dd98-a00c-4479-9fe6-eafbf28c044c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:00.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35638,"total_pss":52775,"rss":141420,"native_total_heap":22396,"native_free_heap":1087,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"279ee7d1-5d0b-4535-b8a2-72849d247c08","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"292b1b04-730e-4627-a444-51522df62377","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.89400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2aed95f7-e862-4fa4-9e76-903d611ed201","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"2cfef4c2-03e5-4adc-9aee-0d43f2360b9f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:09.02100000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":513.9624,"y":1245.9045,"end_x":519.96094,"end_y":477.96936,"direction":"up","touch_down_time":5222833,"touch_up_time":5222978},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"37d24bc7-17fa-46ec-a51a-8542bb9a9ec5","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.94000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5212596,"process_start_requested_uptime":5212502,"content_provider_attach_uptime":5212614,"on_next_draw_uptime":5212897,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"436f5e4f-e963-424f-ae15-17050586e449","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.02000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_8","width":null,"height":null,"x":499.95483,"y":2089.9219,"touch_down_time":5219884,"touch_up_time":5219975},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"49a544e3-6b24-471e-811b-1a84d2632f05","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:58.99500000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"14205"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"50b31f0f-a51f-4eeb-ace3-c21db4fe3474","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.37400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"58ef4456-4a43-47d0-a5fd-47a0e8b2eb4e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.14400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":623.9795,"y":1612.901,"touch_down_time":5218012,"touch_up_time":5218101},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59abf2f5-8dbc-4a8c-ad6e-4c7325ab19d8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.67600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5227634,"utime":70,"cutime":0,"cstime":0,"stime":52,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"59b05fa8-2395-4bbe-ab50-10fe5cce1785","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.36000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6e71c997-5d80-47c2-b51d-4123cd8f8bb3","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.37900000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f712ae4-2129-4ad4-8314-3311dac3b672","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.59100000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5216331,"end_time":5217549,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:05 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"6f825ca7-203f-4cae-95d2-7c949d30c911","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.72700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5212679,"utime":2,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"73a616e6-bc70-4a27-888f-91831f729eb2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7a57fda4-d7fd-416b-8c7a-d67405fcd11f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":2003,"total_pss":59486,"rss":145832,"native_total_heap":26680,"native_free_heap":1790,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8548ef0f-972f-48a1-9b81-117291dfff5c","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:11.88700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"85780811-f6f9-4e2e-bfce-1494345f3f8e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32133,"total_pss":61823,"rss":151208,"native_total_heap":24956,"native_free_heap":1346,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"867761d3-0068-4537-b414-9084cea172b0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.78700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1217.9242,"touch_down_time":5219636,"touch_up_time":5219742},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a5164609-d4c6-40af-bc51-312833161cf0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.35600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"a9c538c7-4fa7-447a-a9b5-6bb32817f56e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:01.67800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":521253,"uptime":5215636,"utime":9,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bd1d09ba-b106-45a7-b61d-981cdd603525","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.33000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":561.9507,"y":1722.9254,"touch_down_time":5227177,"touch_up_time":5227287},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"bef9ffb6-d3e1-42cd-9e46-6de0d1aad4de","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.19400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c1b538f3-4528-4e07-95e3-5da0ac15ac80","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.35100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5609e88-af46-4b98-ac4f-4465bd00e4c7","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.45700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_4","width":null,"height":null,"x":499.95483,"y":1114.9457,"touch_down_time":5220334,"touch_up_time":5220412},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7d73946-64e8-413b-b458-550f7f05e3a9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3224,"total_pss":57091,"rss":142908,"native_total_heap":25468,"native_free_heap":2609,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c9bf0fd6-fe93-4b66-96e1-e1a477f0bbe9","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.36900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ccc9cd3e-6de4-4473-971d-2d1d2586bbf8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:14.46300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"cf200b6e-e445-405b-b2d9-53e508a2803a","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.27700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d1784e37-61c3-4f94-bb3f-1788c7509d23","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.21900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d4f7e9c9-2c2a-42e7-a4e2-0c89e7d150e6","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:03.88400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"d6c940b5-3550-4431-a0f4-d8790d0602f4","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:16.48800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"dcfac8d8-c2e1-41af-b97d-14a6702f5775","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.75300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184783,"total_pss":37951,"rss":137108,"native_total_heap":22396,"native_free_heap":1082,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1af4715-71c6-4096-b51d-1b09c1510a77","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:13.34500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7cd6892-e6d0-4ce5-9aee-e48a6f6b8ffb","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:08.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":17282,"java_free_heap":0,"total_pss":62354,"rss":152784,"native_total_heap":25468,"native_free_heap":1309,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"eb18dbd3-d5bb-4059-bd43-0567e0ee26d0","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:04.16200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ed7f4cca-0006-4457-8f63-2ca7f0c55746","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:06.91900000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_1","width":null,"height":null,"x":513.9624,"y":318.9624,"touch_down_time":5220784,"touch_up_time":5220874},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f053dac1-4070-49e5-8d53-fe7a76fe346f","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:12.45600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f05491e2-bd17-44f6-afe8-28534919e941","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.32300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":533.9685,"y":1473.9478,"touch_down_time":5216213,"touch_up_time":5216280},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f09c7a45-26c0-49ff-8087-423ae2501de2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:02.67500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35120,"total_pss":54546,"rss":143484,"native_total_heap":23932,"native_free_heap":1122,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc4669b4-72f3-42c5-bffc-b138fdd3df40","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:59.07400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5212951,"end_time":5213032,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15346","content-type":"multipart/form-data; boundary=7451f413-ee15-4d38-b9d5-190422f17e18","host":"10.0.2.2:8080","msr-req-id":"e75f76c8-c1bb-452a-81a9-1f9c193a61d1","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:39:01 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fc9fff6f-ddb1-4b32-8ccb-e516874a0d4d","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:10.67600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9633,"java_free_heap":3676,"total_pss":56315,"rss":142140,"native_total_heap":25468,"native_free_heap":2824,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fe32e9ce-e868-46e3-bf3c-27d7660418e2","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:39:05.52400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_3","width":null,"height":null,"x":499.95483,"y":816.9177,"touch_down_time":5219383,"touch_up_time":5219469},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json b/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json index 4ee8317d0..137e15980 100644 --- a/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json +++ b/self-host/session-data/sh.measure.sample/1.0/a7828add-b022-412d-9ec4-a30d6f219222.json @@ -1 +1 @@ -[{"id":"05c2840e-7aee-407a-8ea4-4820b9b38db0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c593fd0-d2ac-423f-898f-ae0f9cdaa286","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.50600000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"239e86ed-b01b-4c37-afc6-42e1da18000f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.82700000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile"}},{"id":"47e74440-0422-4e5c-8931-e02064eb869b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.42400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_28","width":null,"height":null,"x":262.97974,"y":1862.8949,"touch_down_time":2903110,"touch_up_time":2903202},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5025cf2b-6177-4cde-a1e9-b7c95ac846fb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.01500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c00235-f2ef-4588-8159-c6d2e72220bf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.04600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_25","width":null,"height":null,"x":351.969,"y":1109.9323,"touch_down_time":2901703,"touch_up_time":2901824},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b4735f9-0ce4-4307-9744-01f92440e6dd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.74700000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2895451,"on_next_draw_uptime":2895527,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fc7e97a-690a-494e-89cd-ca50d55293d1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3215,"total_pss":40288,"rss":122460,"native_total_heap":25528,"native_free_heap":2535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68407f81-cc09-4c12-b0a9-7c2781f05ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.78700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cd15ec6-e6ee-47d3-b1fb-7c827e018745","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.67100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2904452,"utime":105,"cutime":0,"cstime":0,"stime":114,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ed53956-2842-461b-934a-244c9d54780e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ee92316-e389-498d-8845-fbb66695c631","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:15.71900000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"76d321f1-561d-43c6-81c2-dfff4f4b9d2c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2907451,"utime":106,"cutime":0,"cstime":0,"stime":116,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fb28df4-233c-4b2f-8e9f-9aa9a1673936","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.81200000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_68","width":null,"height":null,"x":551.9641,"y":606.9635,"touch_down_time":2904429,"touch_up_time":2904591},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a58e74a-d4b1-43f2-9c63-161f3e85fc69","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.76700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_26","width":null,"height":null,"x":402.95654,"y":1343.9374,"touch_down_time":2902434,"touch_up_time":2902545},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e2ba629-fcb9-426c-ba5d-2c09f953c7ce","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.09700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_27","width":null,"height":null,"x":321.97632,"y":1709.9176,"touch_down_time":2902754,"touch_up_time":2902875},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"901df2fa-481b-4256-a115-c58db76e0df9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.90000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":487.95776,"y":159.95544,"touch_down_time":2900583,"touch_up_time":2900672},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9297d663-6fd9-4257-9caf-bec37138358e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.77100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2895537,"end_time":2895551,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"25214","content-type":"multipart/form-data; boundary=939f3916-22d4-4881-b6c2-e4a7b92ae647","host":"10.0.2.2:8080","msr-req-id":"41ab73cf-066a-415f-9e80-45974709df51","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:03 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9cd621a5-9f3e-45ee-a430-7a8116a1eef0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.41700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_24","width":null,"height":null,"x":517.9834,"y":972.9437,"touch_down_time":2902116,"touch_up_time":2902193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5b5721-2a7a-4bab-866a-8aacbb95972f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.95000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":590.9546,"y":1577.9425,"touch_down_time":2899644,"touch_up_time":2899729},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d6dafaf-08c9-4bca-8381-f3a6d920ad19","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.35700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":479.9817,"y":1347.9346,"end_x":483.96973,"end_y":781.9592,"direction":"up","touch_down_time":2901003,"touch_up_time":2901136},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8d78f5d-470a-4b39-bd74-85ca94007e34","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2901451,"utime":77,"cutime":0,"cstime":0,"stime":94,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa1fc6bc-5c2d-48cb-9649-41ba01760c8d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.67200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2910453,"utime":107,"cutime":0,"cstime":0,"stime":117,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2b6d3bc-a2b8-4b37-a3f4-d7ae3e4d62a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":382,"total_pss":45603,"rss":128920,"native_total_heap":26040,"native_free_heap":1758,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2fc695e-42c6-4421-b37e-047fc00e77cc","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1059,"total_pss":44295,"rss":127480,"native_total_heap":25784,"native_free_heap":2070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd044dbf-6194-4221-a4eb-b8128481ed44","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2631,"total_pss":35167,"rss":114728,"native_total_heap":26040,"native_free_heap":3026,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdc82b97-4d07-4391-90b0-d3d5de39318d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.00300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c693a830-1b16-41b9-9c49-e77aceaacff3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:05.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2898451,"utime":60,"cutime":0,"cstime":0,"stime":79,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cac42eb3-d001-494c-bc7e-d6c2b08ebfda","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.02000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb73701f-b7aa-4e26-abe1-4641fe13bf86","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2913450,"utime":108,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd370963-6e96-4f0e-a9f1-885f3770d0b1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.20900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d617e679-9fd6-49d3-8868-f0bd23109484","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:12.67300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3123,"total_pss":45329,"rss":128976,"native_total_heap":26040,"native_free_heap":3195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e161534c-eeb1-4e9f-939a-c53adde39797","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2767,"total_pss":34162,"rss":113740,"native_total_heap":26040,"native_free_heap":3072,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4a5a8fe-5582-4c21-84f2-8c0141fb660c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":906,"total_pss":41455,"rss":124696,"native_total_heap":25528,"native_free_heap":1646,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50388a6-c8ff-41f2-a517-0998796a9152","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:16.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2903,"total_pss":36780,"rss":120716,"native_total_heap":26040,"native_free_heap":3168,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f6eb16b4-17d9-4aff-b8c7-5e2b5b1b3223","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3003,"total_pss":44361,"rss":129196,"native_total_heap":26040,"native_free_heap":3166,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb52444a-e428-459a-920b-5053f88495af","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:04.67000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3303,"total_pss":40258,"rss":122460,"native_total_heap":25528,"native_free_heap":2571,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"05c2840e-7aee-407a-8ea4-4820b9b38db0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c593fd0-d2ac-423f-898f-ae0f9cdaa286","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.50600000Z","type":"network_change","network_change":{"previous_network_type":"cellular","network_type":"wifi","previous_network_generation":"3g","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"239e86ed-b01b-4c37-afc6-42e1da18000f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.82700000Z","type":"network_change","network_change":{"previous_network_type":"no_network","network_type":"cellular","previous_network_generation":"unknown","network_generation":"3g","network_provider":"T-Mobile"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"cellular","network_generation":"3g","network_provider_name":"T-Mobile"}},{"id":"47e74440-0422-4e5c-8931-e02064eb869b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.42400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_28","width":null,"height":null,"x":262.97974,"y":1862.8949,"touch_down_time":2903110,"touch_up_time":2903202},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5025cf2b-6177-4cde-a1e9-b7c95ac846fb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.01500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59c00235-f2ef-4588-8159-c6d2e72220bf","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.04600000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_25","width":null,"height":null,"x":351.969,"y":1109.9323,"touch_down_time":2901703,"touch_up_time":2901824},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b4735f9-0ce4-4307-9744-01f92440e6dd","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.74700000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2895451,"on_next_draw_uptime":2895527,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5fc7e97a-690a-494e-89cd-ca50d55293d1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3215,"total_pss":40288,"rss":122460,"native_total_heap":25528,"native_free_heap":2535,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68407f81-cc09-4c12-b0a9-7c2781f05ba7","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.78700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cd15ec6-e6ee-47d3-b1fb-7c827e018745","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.67100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2904452,"utime":105,"cutime":0,"cstime":0,"stime":114,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ed53956-2842-461b-934a-244c9d54780e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.21800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6ee92316-e389-498d-8845-fbb66695c631","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:15.71900000Z","type":"network_change","network_change":{"previous_network_type":"wifi","network_type":"no_network","previous_network_generation":"unknown","network_generation":"unknown","network_provider":"unknown"},"attachments":null,"attribute":{"thread_name":"ConnectivityThread","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"76d321f1-561d-43c6-81c2-dfff4f4b9d2c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2907451,"utime":106,"cutime":0,"cstime":0,"stime":116,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7fb28df4-233c-4b2f-8e9f-9aa9a1673936","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:11.81200000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_68","width":null,"height":null,"x":551.9641,"y":606.9635,"touch_down_time":2904429,"touch_up_time":2904591},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a58e74a-d4b1-43f2-9c63-161f3e85fc69","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.76700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_26","width":null,"height":null,"x":402.95654,"y":1343.9374,"touch_down_time":2902434,"touch_up_time":2902545},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e2ba629-fcb9-426c-ba5d-2c09f953c7ce","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.09700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_27","width":null,"height":null,"x":321.97632,"y":1709.9176,"touch_down_time":2902754,"touch_up_time":2902875},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"901df2fa-481b-4256-a115-c58db76e0df9","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.90000000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_0","width":null,"height":null,"x":487.95776,"y":159.95544,"touch_down_time":2900583,"touch_up_time":2900672},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9297d663-6fd9-4257-9caf-bec37138358e","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.77100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2895537,"end_time":2895551,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"25214","content-type":"multipart/form-data; boundary=939f3916-22d4-4881-b6c2-e4a7b92ae647","host":"10.0.2.2:8080","msr-req-id":"41ab73cf-066a-415f-9e80-45974709df51","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:03 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9cd621a5-9f3e-45ee-a430-7a8116a1eef0","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:09.41700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":"item_24","width":null,"height":null,"x":517.9834,"y":972.9437,"touch_down_time":2902116,"touch_up_time":2902193},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5b5721-2a7a-4bab-866a-8aacbb95972f","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:06.95000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":590.9546,"y":1577.9425,"touch_down_time":2899644,"touch_up_time":2899729},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d6dafaf-08c9-4bca-8381-f3a6d920ad19","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.35700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":479.9817,"y":1347.9346,"end_x":483.96973,"end_y":781.9592,"direction":"up","touch_down_time":2901003,"touch_up_time":2901136},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8d78f5d-470a-4b39-bd74-85ca94007e34","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2901451,"utime":77,"cutime":0,"cstime":0,"stime":94,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa1fc6bc-5c2d-48cb-9649-41ba01760c8d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:17.67200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2910453,"utime":107,"cutime":0,"cstime":0,"stime":117,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"b2b6d3bc-a2b8-4b37-a3f4-d7ae3e4d62a5","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:10.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":382,"total_pss":45603,"rss":128920,"native_total_heap":26040,"native_free_heap":1758,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2fc695e-42c6-4421-b37e-047fc00e77cc","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:08.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":1059,"total_pss":44295,"rss":127480,"native_total_heap":25784,"native_free_heap":2070,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd044dbf-6194-4221-a4eb-b8128481ed44","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2631,"total_pss":35167,"rss":114728,"native_total_heap":26040,"native_free_heap":3026,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdc82b97-4d07-4391-90b0-d3d5de39318d","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.00300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c693a830-1b16-41b9-9c49-e77aceaacff3","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:05.67000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2898451,"utime":60,"cutime":0,"cstime":0,"stime":79,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cac42eb3-d001-494c-bc7e-d6c2b08ebfda","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:07.02000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb73701f-b7aa-4e26-abe1-4641fe13bf86","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:20.67000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":282241,"uptime":2913450,"utime":108,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd370963-6e96-4f0e-a9f1-885f3770d0b1","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:21.20900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d617e679-9fd6-49d3-8868-f0bd23109484","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:12.67300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3123,"total_pss":45329,"rss":128976,"native_total_heap":26040,"native_free_heap":3195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e161534c-eeb1-4e9f-939a-c53adde39797","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:18.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2767,"total_pss":34162,"rss":113740,"native_total_heap":26040,"native_free_heap":3072,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4a5a8fe-5582-4c21-84f2-8c0141fb660c","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:02.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":906,"total_pss":41455,"rss":124696,"native_total_heap":25528,"native_free_heap":1646,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50388a6-c8ff-41f2-a517-0998796a9152","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:16.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2903,"total_pss":36780,"rss":120716,"native_total_heap":26040,"native_free_heap":3168,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"no_network","network_generation":"unknown","network_provider_name":null}},{"id":"f6eb16b4-17d9-4aff-b8c7-5e2b5b1b3223","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:14.67200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":3003,"total_pss":44361,"rss":129196,"native_total_heap":26040,"native_free_heap":3166,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb52444a-e428-459a-920b-5053f88495af","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:04.67000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8356,"java_free_heap":3303,"total_pss":40258,"rss":122460,"native_total_heap":25528,"native_free_heap":2571,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json b/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json index 8bf84f867..8c32b039d 100644 --- a/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json +++ b/self-host/session-data/sh.measure.sample/1.0/ab802397-91ef-4ef9-89d0-b8c35c292dec.json @@ -1 +1 @@ -[{"id":"03769843-62d1-4bc0-89d1-ec48eb6a4382","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.95600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33878,"total_pss":46806,"rss":142832,"native_total_heap":23292,"native_free_heap":1230,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18157661-4e89-4e7a-be00-0c0575c167eb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.77900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2915468,"end_time":2915560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41001","content-type":"multipart/form-data; boundary=e3d115e4-e341-4e4e-be38-8ab531e1ee5d","host":"10.0.2.2:8080","msr-req-id":"a7828add-b022-412d-9ec4-a30d6f219222","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45c8fe03-4b4e-40ac-b315-21a4105fcbd0","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33718,"total_pss":45269,"rss":140348,"native_total_heap":23292,"native_free_heap":1195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f6c89f7-70cf-475c-a4c3-b6dd6355b379","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.14100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2927898,"end_time":2927922,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9574","content-type":"multipart/form-data; boundary=d66ee251-cfd1-4968-9bec-980bb5424458","host":"10.0.2.2:8080","msr-req-id":"3fe7faea-e996-4d4f-aa2e-519eca03fc18","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:35 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"634186f5-3902-41ab-8ed5-1f0b550aed78","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2275,"total_pss":37267,"rss":119036,"native_total_heap":26136,"native_free_heap":2717,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6aed1d02-aa24-4791-b5c8-84490de3199d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.28100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2919667,"process_start_requested_uptime":2919501,"content_provider_attach_uptime":2919726,"on_next_draw_uptime":2920062,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"741c6ff9-5cc5-4e25-8dfc-d829509db421","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:34.95900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33666,"total_pss":45078,"rss":140348,"native_total_heap":23292,"native_free_heap":1207,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818f3cc1-b21c-4767-b111-d7a557291c38","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:36.95800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15996,"java_free_heap":0,"total_pss":41063,"rss":129412,"native_total_heap":25084,"native_free_heap":3025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8208fcb5-c2a0-4a05-8bd6-c0b39c438d2b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:27.39900000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"20369"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8838283e-3b86-4ebe-bf22-6239925ea9d4","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:30.95700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33790,"total_pss":47702,"rss":142864,"native_total_heap":23292,"native_free_heap":1195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ede68c5-31c2-4e3a-9c31-d56497633308","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.95700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2919738,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29d8a-d468-4d71-acf8-a3b661794ed8","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991dc777-ae54-4083-8b56-5922c2e9a586","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.96900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184049,"total_pss":26805,"rss":128172,"native_total_heap":16996,"native_free_heap":1130,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a26475a8-c5c7-4886-8059-2d110797ea7d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.03500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7c4bed4-1137-4721-a538-ff5047811dbc","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.22600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":551.9641,"y":1334.9268,"touch_down_time":2920915,"touch_up_time":2921004},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2b41151-872e-4b06-bf7e-0b1377dea41b","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.15400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2919867,"end_time":2919935,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15732","content-type":"multipart/form-data; boundary=26f11352-19ae-4d2b-90a2-680f78041b7b","host":"10.0.2.2:8080","msr-req-id":"71d86857-e6e6-458f-be90-9a7831d3150b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:27 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c053dddd-f577-4d11-896b-54d5b01c1d20","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.95600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2928737,"utime":16,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c82e5f3e-05cb-47a0-bd3d-d146059a1a35","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2925741,"utime":13,"cutime":0,"cstime":0,"stime":20,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da22f99e-6036-4bd8-a421-389b4051c139","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.02300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5896c78-90ce-40e7-b5ee-438ecbcf85ab","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:29.95700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2922737,"utime":11,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7f0fec0-f725-4215-b17f-f90e956ad039","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.72800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":671.9678,"y":785.9564,"touch_down_time":2915401,"touch_up_time":2915506},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03769843-62d1-4bc0-89d1-ec48eb6a4382","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.95600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33878,"total_pss":46806,"rss":142832,"native_total_heap":23292,"native_free_heap":1230,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18157661-4e89-4e7a-be00-0c0575c167eb","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.77900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2915468,"end_time":2915560,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"41001","content-type":"multipart/form-data; boundary=e3d115e4-e341-4e4e-be38-8ab531e1ee5d","host":"10.0.2.2:8080","msr-req-id":"a7828add-b022-412d-9ec4-a30d6f219222","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:23 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"45c8fe03-4b4e-40ac-b315-21a4105fcbd0","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33718,"total_pss":45269,"rss":140348,"native_total_heap":23292,"native_free_heap":1195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f6c89f7-70cf-475c-a4c3-b6dd6355b379","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.14100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2927898,"end_time":2927922,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"9574","content-type":"multipart/form-data; boundary=d66ee251-cfd1-4968-9bec-980bb5424458","host":"10.0.2.2:8080","msr-req-id":"3fe7faea-e996-4d4f-aa2e-519eca03fc18","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:35 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"634186f5-3902-41ab-8ed5-1f0b550aed78","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.67100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9966,"java_free_heap":2275,"total_pss":37267,"rss":119036,"native_total_heap":26136,"native_free_heap":2717,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6aed1d02-aa24-4791-b5c8-84490de3199d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.28100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2919667,"process_start_requested_uptime":2919501,"content_provider_attach_uptime":2919726,"on_next_draw_uptime":2920062,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"741c6ff9-5cc5-4e25-8dfc-d829509db421","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:34.95900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33666,"total_pss":45078,"rss":140348,"native_total_heap":23292,"native_free_heap":1207,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818f3cc1-b21c-4767-b111-d7a557291c38","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:36.95800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":15996,"java_free_heap":0,"total_pss":41063,"rss":129412,"native_total_heap":25084,"native_free_heap":3025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8208fcb5-c2a0-4a05-8bd6-c0b39c438d2b","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:27.39900000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"20369"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8838283e-3b86-4ebe-bf22-6239925ea9d4","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:30.95700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33790,"total_pss":47702,"rss":142864,"native_total_heap":23292,"native_free_heap":1195,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ede68c5-31c2-4e3a-9c31-d56497633308","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.95700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2919738,"utime":1,"cutime":0,"cstime":0,"stime":2,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29d8a-d468-4d71-acf8-a3b661794ed8","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.98400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"991dc777-ae54-4083-8b56-5922c2e9a586","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:26.96900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184049,"total_pss":26805,"rss":128172,"native_total_heap":16996,"native_free_heap":1130,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a26475a8-c5c7-4886-8059-2d110797ea7d","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.03500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7c4bed4-1137-4721-a538-ff5047811dbc","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:28.22600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":551.9641,"y":1334.9268,"touch_down_time":2920915,"touch_up_time":2921004},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b2b41151-872e-4b06-bf7e-0b1377dea41b","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.15400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2919867,"end_time":2919935,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"15732","content-type":"multipart/form-data; boundary=26f11352-19ae-4d2b-90a2-680f78041b7b","host":"10.0.2.2:8080","msr-req-id":"71d86857-e6e6-458f-be90-9a7831d3150b","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:27 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c053dddd-f577-4d11-896b-54d5b01c1d20","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:35.95600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2928737,"utime":16,"cutime":0,"cstime":0,"stime":26,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c82e5f3e-05cb-47a0-bd3d-d146059a1a35","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:32.96000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2925741,"utime":13,"cutime":0,"cstime":0,"stime":20,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da22f99e-6036-4bd8-a421-389b4051c139","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:27.02300000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f5896c78-90ce-40e7-b5ee-438ecbcf85ab","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:29.95700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":291953,"uptime":2922737,"utime":11,"cutime":0,"cstime":0,"stime":19,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7f0fec0-f725-4215-b17f-f90e956ad039","session_id":"19371eb7-e05b-4bfc-9ccf-65983fb75713","timestamp":"2024-05-24T08:15:22.72800000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_chained_exception","width":670,"height":132,"x":671.9678,"y":785.9564,"touch_down_time":2915401,"touch_up_time":2915506},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json b/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json index e207b3258..ce6af24f4 100644 --- a/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json +++ b/self-host/session-data/sh.measure.sample/1.0/ac4766c0-5ed3-4543-a9b9-06cc16ce408b.json @@ -1 +1 @@ -[{"id":"0d2d16e3-1eb1-48d1-8228-6ab0883eac7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:32.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":29248,"rss":84528,"native_total_heap":26296,"native_free_heap":3222,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"170fdf6b-ca3e-4213-9a85-9005abd6dc77","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:27:40.90600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3111,"total_pss":28241,"rss":84380,"native_total_heap":26296,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bef6841-523b-423f-bfc5-052945371083","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.04000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4074,"total_pss":27983,"rss":82372,"native_total_heap":26296,"native_free_heap":3359,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20959473-06a0-46b2-aacc-842991c6b080","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1320229,"utime":491,"cutime":0,"cstime":0,"stime":551,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d196ca3-8328-4752-8140-43d8f0c7344c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3094,"total_pss":27907,"rss":83116,"native_total_heap":26296,"native_free_heap":3181,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ea12a25-a2bb-428f-b7da-5c807fde98db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":27926,"rss":83116,"native_total_heap":26296,"native_free_heap":3165,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f02dd6d-a0f0-4825-8f6f-51e2455531fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:31.01500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1317227,"utime":490,"cutime":0,"cstime":0,"stime":550,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33caaf6f-b1f8-4183-8483-f468ef8199cb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:48.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1338,"total_pss":30717,"rss":85968,"native_total_heap":26296,"native_free_heap":2926,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4066f300-1e4c-4285-aa4c-620c29fd2486","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4091,"total_pss":27513,"rss":83996,"native_total_heap":26296,"native_free_heap":3390,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421b4a2d-dafe-4c63-98a3-b000541230a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":302,"total_pss":31251,"rss":87144,"native_total_heap":26296,"native_free_heap":2753,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"444e0750-2ae9-44a4-b374-d601145c1f74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:59.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3307,"total_pss":28973,"rss":85320,"native_total_heap":26296,"native_free_heap":3303,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47b6412c-2be3-469e-b507-e2c6e279317a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1038,"total_pss":29562,"rss":84760,"native_total_heap":26296,"native_free_heap":2820,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f42f714-8fa6-4fd2-b36b-b435cd0ad14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:30.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1178,"total_pss":28805,"rss":84064,"native_total_heap":26296,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b4a6c5-449a-4b16-89ed-35b6f3b60ae1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:27.43400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1335226,"utime":502,"cutime":0,"cstime":0,"stime":560,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52794390-89b5-47fe-81b5-4358f15fdf9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:32.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":29584,"rss":84792,"native_total_heap":26296,"native_free_heap":2857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5612db91-818f-4bb4-be06-6be729a08b93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1326229,"utime":496,"cutime":0,"cstime":0,"stime":554,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57ac5de4-287b-41f8-99a6-c5508660021e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312414,"end_time":1312416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"597d17b9-1498-4750-9326-3e5a30e858aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.21800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332398,"end_time":1332430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65585bf2-1e8a-462a-8167-17555b282af2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:03.20600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3183,"total_pss":28466,"rss":84740,"native_total_heap":26296,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6713061f-fa34-4642-847c-19332ee1ce1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.55800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342433,"end_time":1342435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684969b6-a74a-4633-8918-f0f6df007712","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.20400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322405,"end_time":1322416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c5cc849-8ab2-45e8-9b5e-8895c797ab76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:28.43400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":29786,"rss":85220,"native_total_heap":26296,"native_free_heap":2889,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74663673-e158-4502-abf7-c0ab8f4de8cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1332229,"utime":499,"cutime":0,"cstime":0,"stime":557,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a2c0642-6c2b-4208-b5eb-bf065ff6f43e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:42.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29911,"rss":84716,"native_total_heap":26296,"native_free_heap":3041,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"822882e6-ad36-4b87-ab0d-a929745870e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:58.20800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1353228,"utime":512,"cutime":0,"cstime":0,"stime":571,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"915e969f-f8ba-48d1-9b02-cdfafa772543","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.54900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342407,"end_time":1342426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9240eb39-904f-4e48-bf4e-182d3c495b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:17.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":162,"total_pss":31315,"rss":87216,"native_total_heap":26296,"native_free_heap":2701,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"962133ac-b8a7-48b0-af5a-9c104391fb27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:30.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29438,"rss":84464,"native_total_heap":26296,"native_free_heap":3253,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1a5511a-031d-4810-bccd-a09683c7a374","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.39800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352407,"end_time":1352418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a416b084-15b5-4994-a193-6819bb8f7e4e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3235,"total_pss":29019,"rss":85320,"native_total_heap":26296,"native_free_heap":3267,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a471882e-f7a8-4fed-9e4e-3e7c6129d6ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.21400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322422,"end_time":1322426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"afd73f59-2127-488d-bebc-17a1f301d378","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:43.01600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1329228,"utime":497,"cutime":0,"cstime":0,"stime":556,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b33fbbd4-6672-4412-9200-3d890ffe1bb9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4143,"total_pss":28627,"rss":85100,"native_total_heap":26296,"native_free_heap":3406,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9ab31e1-c7ba-4249-bf09-b6217d0252c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.02000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2006,"total_pss":30014,"rss":84812,"native_total_heap":26296,"native_free_heap":2972,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb24f1db-fe37-4677-8aa4-900c8769d71d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:04.30000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1359320,"utime":514,"cutime":0,"cstime":0,"stime":574,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd7e69fe-d040-4fee-b7a9-33832419f289","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2218,"total_pss":29887,"rss":84716,"native_total_heap":26296,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c155c115-2e57-4330-a7ce-a959e8016593","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.40900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352422,"end_time":1352429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c27d7de1-e12d-4141-aeaf-2c4a5a3eef22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:15.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":250,"total_pss":31263,"rss":87144,"native_total_heap":26296,"native_free_heap":2737,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2dac04a-85f5-4440-954e-5450c830cd78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1356227,"utime":513,"cutime":0,"cstime":0,"stime":573,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c96a6d08-cd09-42eb-ba74-8a68bc7e5c4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:10.34900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1341226,"utime":503,"cutime":0,"cstime":0,"stime":561,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cdbd9cc6-4933-46c2-b660-4a893db2009e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312400,"end_time":1312410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68b1383-d8fa-4233-beff-ac12ffa60172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1350226,"utime":509,"cutime":0,"cstime":0,"stime":568,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbdc30e5-a281-4446-8164-618289b8e87c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1314229,"utime":489,"cutime":0,"cstime":0,"stime":549,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e09024a1-5d3b-43d5-9498-fc3a74bdda18","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:37.01700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1323229,"utime":494,"cutime":0,"cstime":0,"stime":553,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e59633ea-2230-413c-bfd0-87c89c6f9802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:16.35000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1347227,"utime":506,"cutime":0,"cstime":0,"stime":567,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8f8a928-541d-4fea-b4b2-237dffbd0a39","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332437,"end_time":1332443,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaecff7-36ef-4ef2-b8c7-71020015a322","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:44.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29962,"rss":84812,"native_total_heap":26296,"native_free_heap":3009,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efc698e8-a320-4634-9355-2fc98b1b6375","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1344229,"utime":505,"cutime":0,"cstime":0,"stime":564,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fea4bc17-7cac-4039-98c1-ae07271c23a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:38.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2322,"total_pss":29835,"rss":84640,"native_total_heap":26296,"native_free_heap":3098,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff25e758-e926-4038-9094-b70c0b4983c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3306,"total_pss":29424,"rss":84464,"native_total_heap":26296,"native_free_heap":3274,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0d2d16e3-1eb1-48d1-8228-6ab0883eac7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:32.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3182,"total_pss":29248,"rss":84528,"native_total_heap":26296,"native_free_heap":3222,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"170fdf6b-ca3e-4213-9a85-9005abd6dc77","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:27:40.90600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3111,"total_pss":28241,"rss":84380,"native_total_heap":26296,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bef6841-523b-423f-bfc5-052945371083","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.04000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4074,"total_pss":27983,"rss":82372,"native_total_heap":26296,"native_free_heap":3359,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"20959473-06a0-46b2-aacc-842991c6b080","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1320229,"utime":491,"cutime":0,"cstime":0,"stime":551,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d196ca3-8328-4752-8140-43d8f0c7344c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:34.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3094,"total_pss":27907,"rss":83116,"native_total_heap":26296,"native_free_heap":3181,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ea12a25-a2bb-428f-b7da-5c807fde98db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3042,"total_pss":27926,"rss":83116,"native_total_heap":26296,"native_free_heap":3165,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f02dd6d-a0f0-4825-8f6f-51e2455531fa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:31.01500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1317227,"utime":490,"cutime":0,"cstime":0,"stime":550,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33caaf6f-b1f8-4183-8483-f468ef8199cb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:48.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1338,"total_pss":30717,"rss":85968,"native_total_heap":26296,"native_free_heap":2926,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4066f300-1e4c-4285-aa4c-620c29fd2486","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4091,"total_pss":27513,"rss":83996,"native_total_heap":26296,"native_free_heap":3390,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"421b4a2d-dafe-4c63-98a3-b000541230a4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":302,"total_pss":31251,"rss":87144,"native_total_heap":26296,"native_free_heap":2753,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"444e0750-2ae9-44a4-b374-d601145c1f74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:59.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3307,"total_pss":28973,"rss":85320,"native_total_heap":26296,"native_free_heap":3303,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47b6412c-2be3-469e-b507-e2c6e279317a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1038,"total_pss":29562,"rss":84760,"native_total_heap":26296,"native_free_heap":2820,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f42f714-8fa6-4fd2-b36b-b435cd0ad14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:30.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1178,"total_pss":28805,"rss":84064,"native_total_heap":26296,"native_free_heap":2873,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50b4a6c5-449a-4b16-89ed-35b6f3b60ae1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:27.43400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1335226,"utime":502,"cutime":0,"cstime":0,"stime":560,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"52794390-89b5-47fe-81b5-4358f15fdf9b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:32.43500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1126,"total_pss":29584,"rss":84792,"native_total_heap":26296,"native_free_heap":2857,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5612db91-818f-4bb4-be06-6be729a08b93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1326229,"utime":496,"cutime":0,"cstime":0,"stime":554,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57ac5de4-287b-41f8-99a6-c5508660021e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312414,"end_time":1312416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"597d17b9-1498-4750-9326-3e5a30e858aa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.21800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332398,"end_time":1332430,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65585bf2-1e8a-462a-8167-17555b282af2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:03.20600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3183,"total_pss":28466,"rss":84740,"native_total_heap":26296,"native_free_heap":3251,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6713061f-fa34-4642-847c-19332ee1ce1e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.55800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342433,"end_time":1342435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684969b6-a74a-4633-8918-f0f6df007712","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.20400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322405,"end_time":1322416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6c5cc849-8ab2-45e8-9b5e-8895c797ab76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:12:28.43400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":1234,"total_pss":29786,"rss":85220,"native_total_heap":26296,"native_free_heap":2889,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74663673-e158-4502-abf7-c0ab8f4de8cd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.01700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1332229,"utime":499,"cutime":0,"cstime":0,"stime":557,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a2c0642-6c2b-4208-b5eb-bf065ff6f43e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:42.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2182,"total_pss":29911,"rss":84716,"native_total_heap":26296,"native_free_heap":3041,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"822882e6-ad36-4b87-ab0d-a929745870e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:58.20800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1353228,"utime":512,"cutime":0,"cstime":0,"stime":571,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"915e969f-f8ba-48d1-9b02-cdfafa772543","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:11.54900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1342407,"end_time":1342426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9240eb39-904f-4e48-bf4e-182d3c495b37","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:17.35100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":162,"total_pss":31315,"rss":87216,"native_total_heap":26296,"native_free_heap":2701,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"962133ac-b8a7-48b0-af5a-9c104391fb27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:30.01400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3254,"total_pss":29438,"rss":84464,"native_total_heap":26296,"native_free_heap":3253,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1a5511a-031d-4810-bccd-a09683c7a374","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.39800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352407,"end_time":1352418,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a416b084-15b5-4994-a193-6819bb8f7e4e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3235,"total_pss":29019,"rss":85320,"native_total_heap":26296,"native_free_heap":3267,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a471882e-f7a8-4fed-9e4e-3e7c6129d6ef","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:36.21400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1322422,"end_time":1322426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"afd73f59-2127-488d-bebc-17a1f301d378","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:43.01600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1329228,"utime":497,"cutime":0,"cstime":0,"stime":556,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b33fbbd4-6672-4412-9200-3d890ffe1bb9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":4143,"total_pss":28627,"rss":85100,"native_total_heap":26296,"native_free_heap":3406,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9ab31e1-c7ba-4249-bf09-b6217d0252c6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.02000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2006,"total_pss":30014,"rss":84812,"native_total_heap":26296,"native_free_heap":2972,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb24f1db-fe37-4677-8aa4-900c8769d71d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:04.30000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1359320,"utime":514,"cutime":0,"cstime":0,"stime":574,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bd7e69fe-d040-4fee-b7a9-33832419f289","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:40.01900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2218,"total_pss":29887,"rss":84716,"native_total_heap":26296,"native_free_heap":3061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c155c115-2e57-4330-a7ce-a959e8016593","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:57.40900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1352422,"end_time":1352429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c27d7de1-e12d-4141-aeaf-2c4a5a3eef22","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:15.35000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":250,"total_pss":31263,"rss":87144,"native_total_heap":26296,"native_free_heap":2737,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2dac04a-85f5-4440-954e-5450c830cd78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:25:01.20700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1356227,"utime":513,"cutime":0,"cstime":0,"stime":573,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c96a6d08-cd09-42eb-ba74-8a68bc7e5c4a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:10.34900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1341226,"utime":503,"cutime":0,"cstime":0,"stime":561,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cdbd9cc6-4933-46c2-b660-4a893db2009e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:15.22200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1312400,"end_time":1312410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d68b1383-d8fa-4233-beff-ac12ffa60172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:24:55.20600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1350226,"utime":509,"cutime":0,"cstime":0,"stime":568,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbdc30e5-a281-4446-8164-618289b8e87c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1314229,"utime":489,"cutime":0,"cstime":0,"stime":549,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e09024a1-5d3b-43d5-9498-fc3a74bdda18","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:37.01700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1323229,"utime":494,"cutime":0,"cstime":0,"stime":553,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e59633ea-2230-413c-bfd0-87c89c6f9802","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:16.35000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1347227,"utime":506,"cutime":0,"cstime":0,"stime":567,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8f8a928-541d-4fea-b4b2-237dffbd0a39","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:46.23100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1332437,"end_time":1332443,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efaecff7-36ef-4ef2-b8c7-71020015a322","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:44.01500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2110,"total_pss":29962,"rss":84812,"native_total_heap":26296,"native_free_heap":3009,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"efc698e8-a320-4634-9355-2fc98b1b6375","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T05:21:13.35200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1344229,"utime":505,"cutime":0,"cstime":0,"stime":564,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fea4bc17-7cac-4039-98c1-ae07271c23a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:56:38.01600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":2322,"total_pss":29835,"rss":84640,"native_total_heap":26296,"native_free_heap":3098,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ff25e758-e926-4038-9094-b70c0b4983c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-24T04:55:17.04300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8565,"java_free_heap":3306,"total_pss":29424,"rss":84464,"native_total_heap":26296,"native_free_heap":3274,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json b/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json index a6e83497e..2281531a5 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json +++ b/self-host/session-data/sh.measure.sample/1.0/b2e27af1-675d-435b-98b9-df5fd22e72e5.json @@ -1 +1 @@ -[{"id":"0487f8aa-1fc4-4468-b51e-9a75133c1dfa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32204,"total_pss":50867,"rss":125776,"native_total_heap":23804,"native_free_heap":1652,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07945d25-b935-4a82-9b38-8a3eb0345482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522409,"end_time":522420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"093ba921-a903-4bf8-8089-bbca39798769","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522397,"end_time":522404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10ded645-e619-466d-8ff6-5c4a6c0195b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502413,"end_time":502417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11841007-2085-458b-9e4c-d22a05250569","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31896,"total_pss":49882,"rss":126076,"native_total_heap":23804,"native_free_heap":1410,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"156888ef-e58f-456a-a8c5-6b5165d7a116","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":504227,"utime":28,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bb5bbd0-0889-4d19-821f-bb8a1e762fff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.74600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22053695-9e4e-473c-a519-394624404c0f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:42.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":531226,"utime":41,"cutime":0,"cstime":0,"stime":49,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2234af35-1a7d-4b69-bd43-18b83989f887","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532412,"end_time":532420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22e27086-70bb-495b-ac55-1b59618ce88a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532396,"end_time":532405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22ecbf1b-8db8-486b-aafb-de68a5cba591","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":507228,"utime":30,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274d15ec-ad0c-487d-8ac8-3c3efbf192a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3632,"total_pss":45816,"rss":119860,"native_total_heap":25016,"native_free_heap":2575,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28cc260d-bf7b-4ca0-b743-d6da3cf595d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":519227,"utime":35,"cutime":0,"cstime":0,"stime":42,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a0514c1-57f5-47c8-a404-a7efff8c4cb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.19700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":808,"total_pss":47134,"rss":122352,"native_total_heap":25016,"native_free_heap":2224,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c4918a8-b99e-4119-bd9a-63b00a25ebe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f7c8446-e347-4b33-bc0f-056ee6646312","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3808,"total_pss":46341,"rss":119036,"native_total_heap":25016,"native_free_heap":2643,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f3ecf2-6ba3-4b96-99e0-6dcc64516abf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1772,"total_pss":46240,"rss":121256,"native_total_heap":25016,"native_free_heap":2265,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3692dee3-3a49-40c8-a9b7-0ad9f28e1230","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":525227,"utime":39,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"410b8632-7599-4081-95b7-1ada1359adac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":528228,"utime":40,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"463310d8-8f11-4132-9baf-36e4510bef88","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":498226,"utime":17,"cutime":0,"cstime":0,"stime":25,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59062ca1-b7ae-4049-ae4a-fea864215233","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1860,"total_pss":46188,"rss":121256,"native_total_heap":25016,"native_free_heap":2302,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c450269-b3ca-4c76-8f72-a20da6dca770","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502398,"end_time":502406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d6eef18-962c-4672-b4fc-276ce35d47db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f47b545-ad9e-4e28-aa70-78290a7fe6f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.78100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65693d2f-8d95-464c-831c-415fa37b2681","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666f21e5-7819-43fc-985f-e5443f40f90f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2648,"total_pss":45595,"rss":120532,"native_total_heap":25016,"native_free_heap":2408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684b68a1-86bc-41fc-8c9d-4029dceed3bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.26800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6900f217-420f-4bd3-975e-11a993b0cba8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.35100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512396,"end_time":512403,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cbc0cb4-8d8a-4c6f-af26-bf001f295f28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2756,"total_pss":45769,"rss":120532,"native_total_heap":25016,"native_free_heap":2460,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"713f2665-7a23-4934-bdb6-7fdbdeab9ad7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.71600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":413.96484,"y":1714.931,"touch_down_time":500712,"touch_up_time":500767},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b4adae6-dc4a-4633-9961-95b28769a5c8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2860,"total_pss":45719,"rss":120532,"native_total_heap":25016,"native_free_heap":2492,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"817bca42-dc1b-4a5b-aaee-9134d28227ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.29200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6b8c33a-4794-46df-be03-18dd0bdd0c2b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2720,"total_pss":45792,"rss":120532,"native_total_heap":25016,"native_free_heap":2440,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac5cc551-ef09-4ab2-bf8f-8ebbe3f0d51a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":510227,"utime":30,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"adaafd4c-ee13-4159-93a8-145642f127b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18251,"java_free_heap":0,"total_pss":55142,"rss":132740,"native_total_heap":24760,"native_free_heap":1538,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7caddea-dfbc-4902-b8dc-2c1d8b3e551c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1560,"total_pss":46392,"rss":121508,"native_total_heap":25016,"native_free_heap":2227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c787697a-fbc7-4bec-af84-af0a2228a4e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:12.17400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":501227,"utime":24,"cutime":0,"cstime":0,"stime":33,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c81191e6-5c28-48eb-be11-e6214e4c2c95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.17800000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":534230,"utime":42,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cce5273c-0745-4f1f-b2a5-80c2b1cddf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512407,"end_time":512416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55a508e-5330-4df5-915e-2435575a10bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3580,"total_pss":45840,"rss":119860,"native_total_heap":25016,"native_free_heap":2559,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7de74d0-981c-4d51-b243-b8b2a236584a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2544,"total_pss":45617,"rss":120536,"native_total_heap":25016,"native_free_heap":2371,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d993184e-c36c-4684-ab22-9baf7903b8cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1684,"total_pss":46292,"rss":121256,"native_total_heap":25016,"native_free_heap":2233,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da17cb26-b85a-4d52-8866-e5cf0581a5ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.24100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcf1120f-3885-4006-8221-669bd701442e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":522229,"utime":36,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e571b1b6-6efa-4e75-97fe-63b204a4ce58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":516227,"utime":34,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6969df5-f1ba-403b-851e-296c2527bc70","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3704,"total_pss":46271,"rss":119860,"native_total_heap":25016,"native_free_heap":2611,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea7950e6-e1e3-4543-b0ff-942fd3eb2cac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bbe3d7-dcd1-40de-a720-2a8ab5e3ef27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":513228,"utime":33,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9346409-8cc1-46ca-a2c8-90bde0af5705","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1664,"total_pss":46316,"rss":121256,"native_total_heap":25016,"native_free_heap":2213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc7c7803-514f-40dc-a97f-7b8816e158f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3860,"total_pss":47084,"rss":119012,"native_total_heap":25016,"native_free_heap":2663,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0487f8aa-1fc4-4468-b51e-9a75133c1dfa","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32204,"total_pss":50867,"rss":125776,"native_total_heap":23804,"native_free_heap":1652,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07945d25-b935-4a82-9b38-8a3eb0345482","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522409,"end_time":522420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"093ba921-a903-4bf8-8089-bbca39798769","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.35200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":522397,"end_time":522404,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"10ded645-e619-466d-8ff6-5c4a6c0195b8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502413,"end_time":502417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11841007-2085-458b-9e4c-d22a05250569","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31896,"total_pss":49882,"rss":126076,"native_total_heap":23804,"native_free_heap":1410,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"156888ef-e58f-456a-a8c5-6b5165d7a116","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":504227,"utime":28,"cutime":0,"cstime":0,"stime":35,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1bb5bbd0-0889-4d19-821f-bb8a1e762fff","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.74600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22053695-9e4e-473c-a519-394624404c0f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:42.17400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":531226,"utime":41,"cutime":0,"cstime":0,"stime":49,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2234af35-1a7d-4b69-bd43-18b83989f887","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532412,"end_time":532420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22e27086-70bb-495b-ac55-1b59618ce88a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":532396,"end_time":532405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22ecbf1b-8db8-486b-aafb-de68a5cba591","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:18.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":507228,"utime":30,"cutime":0,"cstime":0,"stime":36,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"274d15ec-ad0c-487d-8ac8-3c3efbf192a6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3632,"total_pss":45816,"rss":119860,"native_total_heap":25016,"native_free_heap":2575,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28cc260d-bf7b-4ca0-b743-d6da3cf595d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:30.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":519227,"utime":35,"cutime":0,"cstime":0,"stime":42,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a0514c1-57f5-47c8-a404-a7efff8c4cb7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.19700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":808,"total_pss":47134,"rss":122352,"native_total_heap":25016,"native_free_heap":2224,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c4918a8-b99e-4119-bd9a-63b00a25ebe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2f7c8446-e347-4b33-bc0f-056ee6646312","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:17.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3808,"total_pss":46341,"rss":119036,"native_total_heap":25016,"native_free_heap":2643,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f3ecf2-6ba3-4b96-99e0-6dcc64516abf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1772,"total_pss":46240,"rss":121256,"native_total_heap":25016,"native_free_heap":2265,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3692dee3-3a49-40c8-a9b7-0ad9f28e1230","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:36.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":525227,"utime":39,"cutime":0,"cstime":0,"stime":46,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"410b8632-7599-4081-95b7-1ada1359adac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":528228,"utime":40,"cutime":0,"cstime":0,"stime":47,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"463310d8-8f11-4132-9baf-36e4510bef88","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:09.17400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":498226,"utime":17,"cutime":0,"cstime":0,"stime":25,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"59062ca1-b7ae-4049-ae4a-fea864215233","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1860,"total_pss":46188,"rss":121256,"native_total_heap":25016,"native_free_heap":2302,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c450269-b3ca-4c76-8f72-a20da6dca770","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.35400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":502398,"end_time":502406,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d6eef18-962c-4672-b4fc-276ce35d47db","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5f47b545-ad9e-4e28-aa70-78290a7fe6f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.78100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"65693d2f-8d95-464c-831c-415fa37b2681","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.76100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"666f21e5-7819-43fc-985f-e5443f40f90f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2648,"total_pss":45595,"rss":120532,"native_total_heap":25016,"native_free_heap":2408,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"684b68a1-86bc-41fc-8c9d-4029dceed3bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.26800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6900f217-420f-4bd3-975e-11a993b0cba8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.35100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512396,"end_time":512403,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6cbc0cb4-8d8a-4c6f-af26-bf001f295f28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2756,"total_pss":45769,"rss":120532,"native_total_heap":25016,"native_free_heap":2460,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"713f2665-7a23-4934-bdb6-7fdbdeab9ad7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.71600000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":413.96484,"y":1714.931,"touch_down_time":500712,"touch_up_time":500767},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b4adae6-dc4a-4633-9961-95b28769a5c8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:25.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2860,"total_pss":45719,"rss":120532,"native_total_heap":25016,"native_free_heap":2492,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"817bca42-dc1b-4a5b-aaee-9134d28227ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:11.29200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6b8c33a-4794-46df-be03-18dd0bdd0c2b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:29.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2720,"total_pss":45792,"rss":120532,"native_total_heap":25016,"native_free_heap":2440,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac5cc551-ef09-4ab2-bf8f-8ebbe3f0d51a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:21.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":510227,"utime":30,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"adaafd4c-ee13-4159-93a8-145642f127b4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":18251,"java_free_heap":0,"total_pss":55142,"rss":132740,"native_total_heap":24760,"native_free_heap":1538,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b7caddea-dfbc-4902-b8dc-2c1d8b3e551c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1560,"total_pss":46392,"rss":121508,"native_total_heap":25016,"native_free_heap":2227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c787697a-fbc7-4bec-af84-af0a2228a4e2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:12.17400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":501227,"utime":24,"cutime":0,"cstime":0,"stime":33,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c81191e6-5c28-48eb-be11-e6214e4c2c95","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:45.17800000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":534230,"utime":42,"cutime":0,"cstime":0,"stime":50,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cce5273c-0745-4f1f-b2a5-80c2b1cddf78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":512407,"end_time":512416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55a508e-5330-4df5-915e-2435575a10bf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3580,"total_pss":45840,"rss":119860,"native_total_heap":25016,"native_free_heap":2559,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d7de74d0-981c-4d51-b243-b8b2a236584a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":2544,"total_pss":45617,"rss":120536,"native_total_heap":25016,"native_free_heap":2371,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d993184e-c36c-4684-ab22-9baf7903b8cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1684,"total_pss":46292,"rss":121256,"native_total_heap":25016,"native_free_heap":2233,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da17cb26-b85a-4d52-8866-e5cf0581a5ac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:08.24100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dcf1120f-3885-4006-8221-669bd701442e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:33.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":522229,"utime":36,"cutime":0,"cstime":0,"stime":43,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e571b1b6-6efa-4e75-97fe-63b204a4ce58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:27.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":516227,"utime":34,"cutime":0,"cstime":0,"stime":40,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6969df5-f1ba-403b-851e-296c2527bc70","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3704,"total_pss":46271,"rss":119860,"native_total_heap":25016,"native_free_heap":2611,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea7950e6-e1e3-4543-b0ff-942fd3eb2cac","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:10.74300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bbe3d7-dcd1-40de-a720-2a8ab5e3ef27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:24.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":513228,"utime":33,"cutime":0,"cstime":0,"stime":39,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f9346409-8cc1-46ca-a2c8-90bde0af5705","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":1664,"total_pss":46316,"rss":121256,"native_total_heap":25016,"native_free_heap":2213,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc7c7803-514f-40dc-a97f-7b8816e158f8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:02:15.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":3860,"total_pss":47084,"rss":119012,"native_total_heap":25016,"native_free_heap":2663,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json b/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json index f137bc3b1..5e41cbd76 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json +++ b/self-host/session-data/sh.measure.sample/1.0/b3d6e0f8-d610-4e24-827a-fd4c75918b66.json @@ -1 +1 @@ -[{"id":"0e3e195f-ddf5-4ce1-9996-1cad4313ff7d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.18700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":232,"total_pss":35929,"rss":105628,"native_total_heap":25272,"native_free_heap":2188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b8398f9-79d7-4970-9fab-5e2ac7591892","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":606227,"utime":94,"cutime":0,"cstime":0,"stime":112,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1caeb8b2-bf4f-47c9-9dcf-264d3b7dc14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":585227,"utime":82,"cutime":0,"cstime":0,"stime":91,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e5f0425-c323-4845-aa4c-bba8d7734e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":612228,"utime":96,"cutime":0,"cstime":0,"stime":117,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1fb141a2-1a1c-4c2c-a71d-8b89e001ee61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4124,"total_pss":32078,"rss":101672,"native_total_heap":25272,"native_free_heap":3381,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2390d198-9214-4d89-8cc7-6ae7de7f6192","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1144,"total_pss":34690,"rss":104436,"native_total_heap":25528,"native_free_heap":2886,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"240a5127-fcf6-4ad3-91bd-93e728df0ceb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":621228,"utime":105,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed97ef6-9b13-406e-a397-f7b28d01ce7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622425,"end_time":622437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2fc46c3b-30d8-4354-bd18-db7f59945750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":594228,"utime":88,"cutime":0,"cstime":0,"stime":100,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35470867-5215-48ae-a258-4f03f0660661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2216,"total_pss":33905,"rss":103360,"native_total_heap":25528,"native_free_heap":3094,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3976cae1-941d-4fc0-9e01-c1aa55b87e50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2128,"total_pss":33934,"rss":103360,"native_total_heap":25528,"native_free_heap":3062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c8ee1ad-c2c3-4fb4-bbfc-0cbffb73e777","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":615228,"utime":101,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4207cf94-1893-43fd-9b06-21e2583c782f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":627227,"utime":110,"cutime":0,"cstime":0,"stime":127,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"422ceae4-5855-4250-bac0-fd6172feed1d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592426,"end_time":592435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b15f7dc-2966-4b65-bd11-b12e524918b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":591228,"utime":86,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"509911e7-01df-4a24-8a1f-8b2059aa6f19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.17900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":588231,"utime":83,"cutime":0,"cstime":0,"stime":94,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50c1bef5-f496-4e4d-afc0-4e74956cb172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1180,"total_pss":34666,"rss":104436,"native_total_heap":25528,"native_free_heap":2902,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6263db89-5e38-4af6-8238-18ab890a7524","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":392,"total_pss":35831,"rss":105408,"native_total_heap":25016,"native_free_heap":2193,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6432f1d9-6083-403e-8ba5-259401e70c57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622398,"end_time":622417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"672706f5-50fb-456a-804f-5acb81b0cee3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3340,"total_pss":32722,"rss":102104,"native_total_heap":25272,"native_free_heap":3314,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81d4960a-d685-443f-ba36-822e6338e3c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1284,"total_pss":34698,"rss":104436,"native_total_heap":25528,"native_free_heap":2938,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a4ff800-fdae-428f-ba9b-bd3380a9bda5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2340,"total_pss":33836,"rss":103360,"native_total_heap":25528,"native_free_heap":3146,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b2ce96c-fced-4092-829e-dcc8f20a757a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632397,"end_time":632413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90eccd70-7203-42ca-a8e5-54cb9eab7e73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4105,"total_pss":32195,"rss":102172,"native_total_heap":25528,"native_free_heap":3400,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"926061f7-593e-4663-a381-1348abfc71b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":624228,"utime":108,"cutime":0,"cstime":0,"stime":124,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9291c2ec-6b02-4121-8a31-6f99af5fcb73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3304,"total_pss":32746,"rss":102104,"native_total_heap":25272,"native_free_heap":3298,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96829291-b76b-4099-81fe-7a55b70c4f29","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":92,"total_pss":35455,"rss":105268,"native_total_heap":25528,"native_free_heap":2680,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a28f1149-a271-4762-b574-dc1f6a3df9c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2056,"total_pss":33994,"rss":103608,"native_total_heap":25528,"native_free_heap":3021,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b19c1c98-159b-4fd8-bfe5-d8688d61a75f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592399,"end_time":592416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1e0b2c0-9684-4967-bf44-3a650ad58282","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":600229,"utime":90,"cutime":0,"cstime":0,"stime":106,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b29595c3-eb91-4bed-afcd-3602ffe7887d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1356,"total_pss":34646,"rss":104224,"native_total_heap":25528,"native_free_heap":2970,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b918c202-9dac-4da5-a814-7b78ca84d6d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":304,"total_pss":35208,"rss":104940,"native_total_heap":25528,"native_free_heap":2769,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9c73c45-f130-42ff-a584-3f34706a21b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602417,"end_time":602427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba0c7e47-39de-4fea-a679-55fc76fd513f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":609227,"utime":95,"cutime":0,"cstime":0,"stime":115,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfe96429-fbfa-42f4-bf6c-a54d7b3d801d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":597228,"utime":90,"cutime":0,"cstime":0,"stime":103,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d086aa8f-5bb5-4e1c-8113-f71b9c109b86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3076,"total_pss":33152,"rss":102604,"native_total_heap":25272,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3781dd4-8bf0-4954-b281-04677b28a5c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1072,"total_pss":34742,"rss":104436,"native_total_heap":25528,"native_free_heap":2854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d40099ab-425a-4d61-97ee-c409e488a23a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3216,"total_pss":32798,"rss":102104,"native_total_heap":25272,"native_free_heap":3266,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5e1f619-8f72-468c-ad52-d5f7170287f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":630232,"utime":112,"cutime":0,"cstime":0,"stime":129,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9919b9f-805f-46c7-ba36-b97d465f1055","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2268,"total_pss":33892,"rss":103360,"native_total_heap":25528,"native_free_heap":3110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df0d1a85-b0c2-4e88-bef1-f536b42d3e12","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3144,"total_pss":32886,"rss":102308,"native_total_heap":25272,"native_free_heap":3225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa598c3-3fb2-4332-bab5-b6d91c3008c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4212,"total_pss":32022,"rss":101672,"native_total_heap":25272,"native_free_heap":3417,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dffc3f14-0be9-42a1-ba58-0b020c080195","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612427,"end_time":612435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3cec7ab-11c6-4a94-bc7c-7674fd5a8a55","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":180,"total_pss":35271,"rss":104940,"native_total_heap":25528,"native_free_heap":2716,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ed872c-c417-46a1-860b-84344c57aa76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":284,"total_pss":35219,"rss":104940,"native_total_heap":25528,"native_free_heap":2748,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ede71c85-92c1-43ab-bb56-62df01ccc7c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":320,"total_pss":35907,"rss":105408,"native_total_heap":25016,"native_free_heap":2173,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f05d8b3a-0f8c-4f64-9a20-bb4866f7282d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612398,"end_time":612419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8ad8d9b-bc0d-4796-9c3a-cf9e4261a426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602397,"end_time":602410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f98a4edd-514c-41bf-9ec1-c0d649c13540","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":603227,"utime":93,"cutime":0,"cstime":0,"stime":110,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc4d273-4b31-48d9-8350-7417d6305bd1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":618227,"utime":102,"cutime":0,"cstime":0,"stime":120,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0e3e195f-ddf5-4ce1-9996-1cad4313ff7d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.18700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":232,"total_pss":35929,"rss":105628,"native_total_heap":25272,"native_free_heap":2188,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b8398f9-79d7-4970-9fab-5e2ac7591892","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":606227,"utime":94,"cutime":0,"cstime":0,"stime":112,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1caeb8b2-bf4f-47c9-9dcf-264d3b7dc14d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:36.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":585227,"utime":82,"cutime":0,"cstime":0,"stime":91,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e5f0425-c323-4845-aa4c-bba8d7734e51","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":612228,"utime":96,"cutime":0,"cstime":0,"stime":117,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1fb141a2-1a1c-4c2c-a71d-8b89e001ee61","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4124,"total_pss":32078,"rss":101672,"native_total_heap":25272,"native_free_heap":3381,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2390d198-9214-4d89-8cc7-6ae7de7f6192","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1144,"total_pss":34690,"rss":104436,"native_total_heap":25528,"native_free_heap":2886,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"240a5127-fcf6-4ad3-91bd-93e728df0ceb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:12.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":621228,"utime":105,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2ed97ef6-9b13-406e-a397-f7b28d01ce7e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.38500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622425,"end_time":622437,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2fc46c3b-30d8-4354-bd18-db7f59945750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":594228,"utime":88,"cutime":0,"cstime":0,"stime":100,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35470867-5215-48ae-a258-4f03f0660661","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2216,"total_pss":33905,"rss":103360,"native_total_heap":25528,"native_free_heap":3094,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3976cae1-941d-4fc0-9e01-c1aa55b87e50","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2128,"total_pss":33934,"rss":103360,"native_total_heap":25528,"native_free_heap":3062,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c8ee1ad-c2c3-4fb4-bbfc-0cbffb73e777","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:06.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":615228,"utime":101,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4207cf94-1893-43fd-9b06-21e2583c782f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:18.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":627227,"utime":110,"cutime":0,"cstime":0,"stime":127,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"422ceae4-5855-4250-bac0-fd6172feed1d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592426,"end_time":592435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4b15f7dc-2966-4b65-bd11-b12e524918b6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:42.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":591228,"utime":86,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"509911e7-01df-4a24-8a1f-8b2059aa6f19","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:39.17900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":588231,"utime":83,"cutime":0,"cstime":0,"stime":94,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50c1bef5-f496-4e4d-afc0-4e74956cb172","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1180,"total_pss":34666,"rss":104436,"native_total_heap":25528,"native_free_heap":2902,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6263db89-5e38-4af6-8238-18ab890a7524","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":392,"total_pss":35831,"rss":105408,"native_total_heap":25016,"native_free_heap":2193,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6432f1d9-6083-403e-8ba5-259401e70c57","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.36500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":622398,"end_time":622417,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"672706f5-50fb-456a-804f-5acb81b0cee3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:45.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3340,"total_pss":32722,"rss":102104,"native_total_heap":25272,"native_free_heap":3314,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81d4960a-d685-443f-ba36-822e6338e3c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:07.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1284,"total_pss":34698,"rss":104436,"native_total_heap":25528,"native_free_heap":2938,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a4ff800-fdae-428f-ba9b-bd3380a9bda5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2340,"total_pss":33836,"rss":103360,"native_total_heap":25528,"native_free_heap":3146,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b2ce96c-fced-4092-829e-dcc8f20a757a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.36100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":632397,"end_time":632413,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90eccd70-7203-42ca-a8e5-54cb9eab7e73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:23.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4105,"total_pss":32195,"rss":102172,"native_total_heap":25528,"native_free_heap":3400,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"926061f7-593e-4663-a381-1348abfc71b1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":624228,"utime":108,"cutime":0,"cstime":0,"stime":124,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9291c2ec-6b02-4121-8a31-6f99af5fcb73","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3304,"total_pss":32746,"rss":102104,"native_total_heap":25272,"native_free_heap":3298,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96829291-b76b-4099-81fe-7a55b70c4f29","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":92,"total_pss":35455,"rss":105268,"native_total_heap":25528,"native_free_heap":2680,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a28f1149-a271-4762-b574-dc1f6a3df9c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2056,"total_pss":33994,"rss":103608,"native_total_heap":25528,"native_free_heap":3021,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b19c1c98-159b-4fd8-bfe5-d8688d61a75f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:43.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":592399,"end_time":592416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1e0b2c0-9684-4967-bf44-3a650ad58282","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":600229,"utime":90,"cutime":0,"cstime":0,"stime":106,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b29595c3-eb91-4bed-afcd-3602ffe7887d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1356,"total_pss":34646,"rss":104224,"native_total_heap":25528,"native_free_heap":2970,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b918c202-9dac-4da5-a814-7b78ca84d6d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:15.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":304,"total_pss":35208,"rss":104940,"native_total_heap":25528,"native_free_heap":2769,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b9c73c45-f130-42ff-a584-3f34706a21b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602417,"end_time":602427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ba0c7e47-39de-4fea-a679-55fc76fd513f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:00.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":609227,"utime":95,"cutime":0,"cstime":0,"stime":115,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfe96429-fbfa-42f4-bf6c-a54d7b3d801d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:48.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":597228,"utime":90,"cutime":0,"cstime":0,"stime":103,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d086aa8f-5bb5-4e1c-8113-f71b9c109b86","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3076,"total_pss":33152,"rss":102604,"native_total_heap":25272,"native_free_heap":3214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d3781dd4-8bf0-4954-b281-04677b28a5c0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":1072,"total_pss":34742,"rss":104436,"native_total_heap":25528,"native_free_heap":2854,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d40099ab-425a-4d61-97ee-c409e488a23a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:49.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3216,"total_pss":32798,"rss":102104,"native_total_heap":25272,"native_free_heap":3266,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d5e1f619-8f72-468c-ad52-d5f7170287f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:21.18000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":630232,"utime":112,"cutime":0,"cstime":0,"stime":129,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9919b9f-805f-46c7-ba36-b97d465f1055","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:57.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":2268,"total_pss":33892,"rss":103360,"native_total_heap":25528,"native_free_heap":3110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df0d1a85-b0c2-4e88-bef1-f536b42d3e12","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:51.18300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":3144,"total_pss":32886,"rss":102308,"native_total_heap":25272,"native_free_heap":3225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfa598c3-3fb2-4332-bab5-b6d91c3008c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":4212,"total_pss":32022,"rss":101672,"native_total_heap":25272,"native_free_heap":3417,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dffc3f14-0be9-42a1-ba58-0b020c080195","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.38300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612427,"end_time":612435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3cec7ab-11c6-4a94-bc7c-7674fd5a8a55","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":180,"total_pss":35271,"rss":104940,"native_total_heap":25528,"native_free_heap":2716,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ed872c-c417-46a1-860b-84344c57aa76","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8488,"java_free_heap":284,"total_pss":35219,"rss":104940,"native_total_heap":25528,"native_free_heap":2748,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ede71c85-92c1-43ab-bb56-62df01ccc7c1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9249,"java_free_heap":320,"total_pss":35907,"rss":105408,"native_total_heap":25016,"native_free_heap":2173,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f05d8b3a-0f8c-4f64-9a20-bb4866f7282d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:03.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":612398,"end_time":612419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f8ad8d9b-bc0d-4796-9c3a-cf9e4261a426","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:53.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":602397,"end_time":602410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f98a4edd-514c-41bf-9ec1-c0d649c13540","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:03:54.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":603227,"utime":93,"cutime":0,"cstime":0,"stime":110,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fcc4d273-4b31-48d9-8350-7417d6305bd1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:04:09.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":618227,"utime":102,"cutime":0,"cstime":0,"stime":120,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json b/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json index cdc3ed351..4cb85485c 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json +++ b/self-host/session-data/sh.measure.sample/1.0/b6299111-84cd-425e-bb72-6a03f343ae1e.json @@ -1 +1 @@ -[{"id":"0f486a31-13e0-4680-a006-bf8142f781f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":232,"total_pss":35933,"rss":108052,"native_total_heap":25784,"native_free_heap":2718,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e44115-74b1-4ab2-9045-467a1871ca0e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842419,"end_time":842428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19838b15-9daa-4dd0-b416-7cfc8bc76073","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":828228,"utime":238,"cutime":0,"cstime":0,"stime":270,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21e2de20-c222-44a2-b261-2b9a30f6fa3d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":867227,"utime":261,"cutime":0,"cstime":0,"stime":294,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"226d5075-ece6-4a45-8890-ff4775644e93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2108,"total_pss":34298,"rss":106248,"native_total_heap":25784,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"266b15ce-ea9e-4378-af21-d13dde13a303","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":117,"total_pss":36092,"rss":108236,"native_total_heap":25784,"native_free_heap":2693,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28695ebc-ddd2-466f-818a-2f46c3772100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3180,"total_pss":33432,"rss":105052,"native_total_heap":25784,"native_free_heap":3227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"311122e5-391d-47ea-932c-a7d14364b34a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":831228,"utime":240,"cutime":0,"cstime":0,"stime":273,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31188392-75e0-4301-89e2-04354ac18034","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862418,"end_time":862427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37cf933b-2d81-4ed2-9ebc-671a3c655899","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4248,"total_pss":32548,"rss":104544,"native_total_heap":25784,"native_free_heap":3415,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bd5b9c6-9da8-4f99-98cd-b77b4d1aef46","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":849227,"utime":251,"cutime":0,"cstime":0,"stime":284,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4952689c-b57c-4c83-99be-e901fc689228","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":852227,"utime":252,"cutime":0,"cstime":0,"stime":284,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4af015e6-b95d-4461-99ec-50adbba800bd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":864228,"utime":260,"cutime":0,"cstime":0,"stime":291,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ec5d6d0-8224-4f15-af3e-3e7b1bd52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":336,"total_pss":35877,"rss":108052,"native_total_heap":25784,"native_free_heap":2750,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ee150ba-add4-4b52-9601-697d535e55d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.37300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832414,"end_time":832425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"51bb64ce-7db3-4273-9516-54202752d9b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":846227,"utime":249,"cutime":0,"cstime":0,"stime":282,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5caf58d4-2c08-4b7a-a059-ab2a920f79e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4160,"total_pss":32604,"rss":104544,"native_total_heap":25784,"native_free_heap":3378,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d75ef0c-4c69-41a9-bf81-0bce01787d36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":840228,"utime":245,"cutime":0,"cstime":0,"stime":279,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0229e7-0f27-42da-8b35-6b52c715abbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":861227,"utime":257,"cutime":0,"cstime":0,"stime":289,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0ef01b-b51b-45ba-9d64-54647eebd643","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":858227,"utime":255,"cutime":0,"cstime":0,"stime":288,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6074cfbf-ff0a-4c5e-a487-5457554af19a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":144,"total_pss":35993,"rss":108392,"native_total_heap":25784,"native_free_heap":2682,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6202edd1-d5f5-43b2-8c0c-d4e303bf667c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:54.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":843227,"utime":248,"cutime":0,"cstime":0,"stime":281,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63c3bf45-503e-4835-9fb3-673cb6fba8a1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1196,"total_pss":35070,"rss":106972,"native_total_heap":25784,"native_free_heap":2870,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68be5ce3-9040-4668-8c9e-bf69321ae61c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:24.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":873227,"utime":265,"cutime":0,"cstime":0,"stime":297,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"695a11eb-504c-45b3-9248-53426a780ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852396,"end_time":852409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c9da54-59a0-4735-820b-5bae1a75f806","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2268,"total_pss":34216,"rss":106248,"native_total_heap":25784,"native_free_heap":3092,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79437902-df12-47aa-90ed-7fd3ef339d87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1336,"total_pss":34994,"rss":106972,"native_total_heap":25784,"native_free_heap":2922,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a37f81d-0971-464b-bdeb-f7903f57c70c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3252,"total_pss":33380,"rss":105052,"native_total_heap":25784,"native_free_heap":3264,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b995164-390e-4c94-9afe-45a4e96ca5c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4134,"total_pss":32837,"rss":105056,"native_total_heap":25784,"native_free_heap":3403,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f8e1a88-0288-42ff-a3bd-f2c63b92b038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872396,"end_time":872405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a01853c0-cece-4752-bcb2-950364fa7a72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832398,"end_time":832409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a300e144-952a-4300-ae34-f3939c6c01a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":356,"total_pss":35853,"rss":108052,"native_total_heap":25784,"native_free_heap":2771,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a30e40ee-67ca-4358-b531-c6e8d3cc3e9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:06.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":855227,"utime":255,"cutime":0,"cstime":0,"stime":287,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a3920866-30a0-46c4-bea8-01615cef31ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862398,"end_time":862409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa0c554a-dabc-44fa-a531-4c0018c7e7e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2320,"total_pss":34196,"rss":106248,"native_total_heap":25784,"native_free_heap":3108,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac01d7c1-be49-4ccd-b7df-58a9fcd1a29d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":870227,"utime":262,"cutime":0,"cstime":0,"stime":295,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac228053-25f7-4400-a05a-6552b1917dfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1124,"total_pss":35122,"rss":106972,"native_total_heap":25784,"native_free_heap":2838,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad35374d-e21f-4f45-b464-5500b53e5f27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:48.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":837228,"utime":244,"cutime":0,"cstime":0,"stime":277,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8d0617-f444-49f1-b592-be97bf080ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842397,"end_time":842409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdb2d5b6-23b0-45bc-b865-16e8c7650508","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3128,"total_pss":33456,"rss":105512,"native_total_heap":25784,"native_free_heap":3211,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beb81a25-2f59-420f-b32f-0e00f071a1cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1408,"total_pss":34942,"rss":106756,"native_total_heap":25784,"native_free_heap":2954,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6d926da-ceec-4e5b-8d6f-5ae51477520b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1232,"total_pss":35046,"rss":106972,"native_total_heap":25784,"native_free_heap":2886,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0dc1f41-70fc-4236-a0a9-b6ef0d3c9e38","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2180,"total_pss":34238,"rss":106248,"native_total_heap":25784,"native_free_heap":3060,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6ac5fda-cd8c-46ae-9a4f-5e2f723fe02c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872408,"end_time":872411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb5b09a-2fa6-4db8-a780-8e5b17914801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":834227,"utime":242,"cutime":0,"cstime":0,"stime":275,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f1ff5a-4564-490d-86b3-3be3776bb908","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2392,"total_pss":34140,"rss":106248,"native_total_heap":25784,"native_free_heap":3144,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e46af755-6ed5-428e-a4fb-10e06f0ade7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":205,"total_pss":36097,"rss":108152,"native_total_heap":25784,"native_free_heap":2730,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7fc7f66-1416-4e47-b988-22ea014213c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3376,"total_pss":33304,"rss":105052,"native_total_heap":25784,"native_free_heap":3311,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea225995-24a3-4870-9da6-9c8062db930c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3340,"total_pss":33328,"rss":105052,"native_total_heap":25784,"native_free_heap":3295,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffc0f21e-fd0d-445e-a5eb-a833b1658d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852415,"end_time":852420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0f486a31-13e0-4680-a006-bf8142f781f6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":232,"total_pss":35933,"rss":108052,"native_total_heap":25784,"native_free_heap":2718,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"15e44115-74b1-4ab2-9045-467a1871ca0e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842419,"end_time":842428,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"19838b15-9daa-4dd0-b416-7cfc8bc76073","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":828228,"utime":238,"cutime":0,"cstime":0,"stime":270,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21e2de20-c222-44a2-b261-2b9a30f6fa3d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:18.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":867227,"utime":261,"cutime":0,"cstime":0,"stime":294,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"226d5075-ece6-4a45-8890-ff4775644e93","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2108,"total_pss":34298,"rss":106248,"native_total_heap":25784,"native_free_heap":3023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"266b15ce-ea9e-4378-af21-d13dde13a303","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:39.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":117,"total_pss":36092,"rss":108236,"native_total_heap":25784,"native_free_heap":2693,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"28695ebc-ddd2-466f-818a-2f46c3772100","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3180,"total_pss":33432,"rss":105052,"native_total_heap":25784,"native_free_heap":3227,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"311122e5-391d-47ea-932c-a7d14364b34a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:42.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":831228,"utime":240,"cutime":0,"cstime":0,"stime":273,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31188392-75e0-4301-89e2-04354ac18034","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.37500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862418,"end_time":862427,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37cf933b-2d81-4ed2-9ebc-671a3c655899","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:41.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4248,"total_pss":32548,"rss":104544,"native_total_heap":25784,"native_free_heap":3415,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3bd5b9c6-9da8-4f99-98cd-b77b4d1aef46","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:00.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":849227,"utime":251,"cutime":0,"cstime":0,"stime":284,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4952689c-b57c-4c83-99be-e901fc689228","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":852227,"utime":252,"cutime":0,"cstime":0,"stime":284,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4af015e6-b95d-4461-99ec-50adbba800bd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":864228,"utime":260,"cutime":0,"cstime":0,"stime":291,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ec5d6d0-8224-4f15-af3e-3e7b1bd52558","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":336,"total_pss":35877,"rss":108052,"native_total_heap":25784,"native_free_heap":2750,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4ee150ba-add4-4b52-9601-697d535e55d2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.37300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832414,"end_time":832425,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"51bb64ce-7db3-4273-9516-54202752d9b5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":846227,"utime":249,"cutime":0,"cstime":0,"stime":282,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5caf58d4-2c08-4b7a-a059-ab2a920f79e5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4160,"total_pss":32604,"rss":104544,"native_total_heap":25784,"native_free_heap":3378,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d75ef0c-4c69-41a9-bf81-0bce01787d36","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:51.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":840228,"utime":245,"cutime":0,"cstime":0,"stime":279,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0229e7-0f27-42da-8b35-6b52c715abbf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:12.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":861227,"utime":257,"cutime":0,"cstime":0,"stime":289,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e0ef01b-b51b-45ba-9d64-54647eebd643","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":858227,"utime":255,"cutime":0,"cstime":0,"stime":288,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6074cfbf-ff0a-4c5e-a487-5457554af19a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":144,"total_pss":35993,"rss":108392,"native_total_heap":25784,"native_free_heap":2682,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6202edd1-d5f5-43b2-8c0c-d4e303bf667c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:54.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":843227,"utime":248,"cutime":0,"cstime":0,"stime":281,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"63c3bf45-503e-4835-9fb3-673cb6fba8a1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1196,"total_pss":35070,"rss":106972,"native_total_heap":25784,"native_free_heap":2870,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68be5ce3-9040-4668-8c9e-bf69321ae61c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:24.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":873227,"utime":265,"cutime":0,"cstime":0,"stime":297,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"695a11eb-504c-45b3-9248-53426a780ea3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852396,"end_time":852409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c9da54-59a0-4735-820b-5bae1a75f806","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:59.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2268,"total_pss":34216,"rss":106248,"native_total_heap":25784,"native_free_heap":3092,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79437902-df12-47aa-90ed-7fd3ef339d87","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1336,"total_pss":34994,"rss":106972,"native_total_heap":25784,"native_free_heap":2922,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a37f81d-0971-464b-bdeb-f7903f57c70c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3252,"total_pss":33380,"rss":105052,"native_total_heap":25784,"native_free_heap":3264,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7b995164-390e-4c94-9afe-45a4e96ca5c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":4134,"total_pss":32837,"rss":105056,"native_total_heap":25784,"native_free_heap":3403,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f8e1a88-0288-42ff-a3bd-f2c63b92b038","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872396,"end_time":872405,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a01853c0-cece-4752-bcb2-950364fa7a72","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:43.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":832398,"end_time":832409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a300e144-952a-4300-ae34-f3939c6c01a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":356,"total_pss":35853,"rss":108052,"native_total_heap":25784,"native_free_heap":2771,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a30e40ee-67ca-4358-b531-c6e8d3cc3e9e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:06.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":855227,"utime":255,"cutime":0,"cstime":0,"stime":287,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a3920866-30a0-46c4-bea8-01615cef31ae","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.35600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":862398,"end_time":862409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa0c554a-dabc-44fa-a531-4c0018c7e7e0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:57.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2320,"total_pss":34196,"rss":106248,"native_total_heap":25784,"native_free_heap":3108,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac01d7c1-be49-4ccd-b7df-58a9fcd1a29d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:21.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":870227,"utime":262,"cutime":0,"cstime":0,"stime":295,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ac228053-25f7-4400-a05a-6552b1917dfe","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1124,"total_pss":35122,"rss":106972,"native_total_heap":25784,"native_free_heap":2838,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad35374d-e21f-4f45-b464-5500b53e5f27","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:48.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":837228,"utime":244,"cutime":0,"cstime":0,"stime":277,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ad8d0617-f444-49f1-b592-be97bf080ccb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.35700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":842397,"end_time":842409,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdb2d5b6-23b0-45bc-b865-16e8c7650508","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:53.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3128,"total_pss":33456,"rss":105512,"native_total_heap":25784,"native_free_heap":3211,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"beb81a25-2f59-420f-b32f-0e00f071a1cf","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1408,"total_pss":34942,"rss":106756,"native_total_heap":25784,"native_free_heap":2954,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6d926da-ceec-4e5b-8d6f-5ae51477520b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":1232,"total_pss":35046,"rss":106972,"native_total_heap":25784,"native_free_heap":2886,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0dc1f41-70fc-4236-a0a9-b6ef0d3c9e38","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2180,"total_pss":34238,"rss":106248,"native_total_heap":25784,"native_free_heap":3060,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d6ac5fda-cd8c-46ae-9a4f-5e2f723fe02c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":872408,"end_time":872411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dfb5b09a-2fa6-4db8-a780-8e5b17914801","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":834227,"utime":242,"cutime":0,"cstime":0,"stime":275,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1f1ff5a-4564-490d-86b3-3be3776bb908","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":2392,"total_pss":34140,"rss":106248,"native_total_heap":25784,"native_free_heap":3144,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e46af755-6ed5-428e-a4fb-10e06f0ade7b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8559,"java_free_heap":205,"total_pss":36097,"rss":108152,"native_total_heap":25784,"native_free_heap":2730,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e7fc7f66-1416-4e47-b988-22ea014213c9","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:45.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3376,"total_pss":33304,"rss":105052,"native_total_heap":25784,"native_free_heap":3311,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea225995-24a3-4870-9da6-9c8062db930c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:07:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8560,"java_free_heap":3340,"total_pss":33328,"rss":105052,"native_total_heap":25784,"native_free_heap":3295,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffc0f21e-fd0d-445e-a5eb-a833b1658d99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:08:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":852415,"end_time":852420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json b/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json index 51b1acdde..ff32a1448 100644 --- a/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json +++ b/self-host/session-data/sh.measure.sample/1.0/b871f71a-2596-49bc-809e-ec3e571347fe.json @@ -1 +1 @@ -[{"id":"0cbcb287-239d-4edf-a059-819b8d20ecf3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":380672,"utime":157,"cutime":0,"cstime":0,"stime":182,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11fab02a-de0e-424f-a8cd-a06e4bdca118","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2628,"total_pss":24534,"rss":76728,"native_total_heap":23548,"native_free_heap":2247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea4dc70-1ef9-4fb0-8a43-a923d833f3e2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3193,"total_pss":25414,"rss":77888,"native_total_heap":23548,"native_free_heap":2308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2222020f-1644-4dac-b630-fef43fdf6a56","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1592,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":2059,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c9db8c-6a9c-44f2-8d78-ab17c031e5ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364904,"end_time":364910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"292e2417-3f3b-4cef-9212-085f3dddcc9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2540,"total_pss":24586,"rss":76728,"native_total_heap":23548,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a1afb70-ad7a-4369-8d21-e8585aa587a8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":265,"total_pss":25672,"rss":78084,"native_total_heap":23548,"native_free_heap":1839,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c3e9ef7-54a2-42f5-9628-930e1b7ef469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2145,"total_pss":24319,"rss":76300,"native_total_heap":23548,"native_free_heap":2134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2da38509-b26c-428b-93ab-392183f24b8e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":374675,"utime":153,"cutime":0,"cstime":0,"stime":178,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"314afe3d-0657-41c3-9773-d5803a8b92fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1409,"total_pss":25768,"rss":78228,"native_total_heap":23548,"native_free_heap":2079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31819259-e996-4bce-bee1-590e95222a10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:14.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":383672,"utime":158,"cutime":0,"cstime":0,"stime":184,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c92d8dc-641b-4b3c-8025-79b7d4a139c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2416,"total_pss":22130,"rss":71716,"native_total_heap":23548,"native_free_heap":2162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e65096e-6a80-4d95-9927-c642422c7263","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394921,"end_time":394925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"456f1fa0-78b6-470b-989f-f36e7eea253b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354906,"end_time":354920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bb9c6c4-05c2-4a0d-8a3a-fffc614d137f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2680,"total_pss":24510,"rss":76728,"native_total_heap":23548,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b956937-e426-434c-ae65-35234339436b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:08.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":377675,"utime":156,"cutime":0,"cstime":0,"stime":181,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c0f2ac9-4a3a-4593-8bf4-f0a9b6aa7fa6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1556,"total_pss":27313,"rss":78864,"native_total_heap":23548,"native_free_heap":2043,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"617ce1bd-027a-45d6-8e05-39094287e253","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374910,"end_time":374929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f001c7b-77da-4bc1-89d3-069f17764980","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394905,"end_time":394916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70dd649b-1a93-4daf-bb5b-934ebafb6558","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374936,"end_time":374944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"725c64fc-bc0e-4c6c-b51e-efea29398ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364916,"end_time":364931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74ab64b9-a709-4c68-980d-cec9405a4b8f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1285,"total_pss":24754,"rss":77044,"native_total_heap":23548,"native_free_heap":2031,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f5ad0d2-0198-40d4-b81c-23b0e26c7b6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":356673,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83bfdc13-4e3c-43df-ab00-2ecbd68aedab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":425,"total_pss":25575,"rss":77984,"native_total_heap":23548,"native_free_heap":1911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8516c22e-53f4-44a9-b023-198af6e8846e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2377,"total_pss":26183,"rss":79176,"native_total_heap":23548,"native_free_heap":2223,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"885d459e-516e-4293-bd75-527046f6fe0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2341,"total_pss":26207,"rss":79176,"native_total_heap":23548,"native_free_heap":2202,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a602213-4814-4a1f-954a-1aecfa8f4f51","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:56.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":365674,"utime":150,"cutime":0,"cstime":0,"stime":172,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b27bb8f-f3e6-444f-bca2-9f0084360bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":398673,"utime":167,"cutime":0,"cstime":0,"stime":191,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29bec-d903-4388-8f38-046a8bcd9a40","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":337,"total_pss":25620,"rss":78084,"native_total_heap":23548,"native_free_heap":1875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9af2a974-45e9-481c-9534-403c5ce247a4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":395674,"utime":166,"cutime":0,"cstime":0,"stime":190,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f037313-683a-4c39-ac57-5901a3bdf727","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2269,"total_pss":26048,"rss":79428,"native_total_heap":23548,"native_free_heap":2170,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acfbeaa0-aae8-4199-a06b-a7622e6c81bc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":213,"total_pss":25693,"rss":78084,"native_total_heap":23548,"native_free_heap":1823,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0a023d0-b619-4a91-91bc-a26ca23b9792","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":359675,"utime":147,"cutime":0,"cstime":0,"stime":169,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf11e0d-321f-48ce-a3f5-49c5304e8efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":386672,"utime":163,"cutime":0,"cstime":0,"stime":185,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf6b5cac-f3c6-419c-a4ad-3b345aa523f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:32.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":401672,"utime":167,"cutime":0,"cstime":0,"stime":192,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfb2972c-e237-4448-aa8e-0c144b806932","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384921,"end_time":384929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c0fd90d5-c261-4e78-ae0b-8b66fe31d8f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2468,"total_pss":24545,"rss":76932,"native_total_heap":23548,"native_free_heap":2178,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2fd6d74-1018-4edb-9a54-754858c1147d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1125,"total_pss":24880,"rss":77160,"native_total_heap":23548,"native_free_heap":1963,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4f2a858-2a14-4408-8400-c1177dcf0a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:02.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":371675,"utime":152,"cutime":0,"cstime":0,"stime":177,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7d4b70f-731f-4ee5-80d3-8c204896efc7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1484,"total_pss":27366,"rss":78864,"native_total_heap":23548,"native_free_heap":2007,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd24d5ef-ca90-4565-af08-db47bc537b91","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354925,"end_time":354936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfa2939e-8a61-4f6d-a1a7-593bd4797cd1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":368674,"utime":150,"cutime":0,"cstime":0,"stime":174,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cffe8fca-abe5-468e-8f50-2a4c664e0141","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384904,"end_time":384914,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d1e4dda0-8acf-4da7-abb2-50b7b2229113","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":141,"total_pss":25758,"rss":78100,"native_total_heap":23548,"native_free_heap":1786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d72032a4-6549-4e42-8680-806027c9b8c0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1696,"total_pss":27372,"rss":78760,"native_total_heap":23548,"native_free_heap":2095,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d737136a-3fda-4e44-8b1e-be5cc874406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1197,"total_pss":24852,"rss":77160,"native_total_heap":23548,"native_free_heap":1995,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e41116af-54aa-4ce8-8eb9-2844ce541171","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:53.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2181,"total_pss":24166,"rss":76052,"native_total_heap":23548,"native_free_heap":2154,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37a61c8-1eaf-4b31-8351-fcd8a0fe8c62","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:20.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":389673,"utime":164,"cutime":0,"cstime":0,"stime":187,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe275941-76c7-4316-80d0-221b491f5871","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.61900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":392671,"utime":165,"cutime":0,"cstime":0,"stime":187,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffbc8b09-cbfa-4ee7-b0ca-3dd7754ecea0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1321,"total_pss":25779,"rss":78228,"native_total_heap":23548,"native_free_heap":2047,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"0cbcb287-239d-4edf-a059-819b8d20ecf3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":380672,"utime":157,"cutime":0,"cstime":0,"stime":182,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11fab02a-de0e-424f-a8cd-a06e4bdca118","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2628,"total_pss":24534,"rss":76728,"native_total_heap":23548,"native_free_heap":2247,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ea4dc70-1ef9-4fb0-8a43-a923d833f3e2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":3193,"total_pss":25414,"rss":77888,"native_total_heap":23548,"native_free_heap":2308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2222020f-1644-4dac-b630-fef43fdf6a56","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1592,"total_pss":27405,"rss":78864,"native_total_heap":23548,"native_free_heap":2059,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"26c9db8c-6a9c-44f2-8d78-ab17c031e5ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.85800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364904,"end_time":364910,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"292e2417-3f3b-4cef-9212-085f3dddcc9b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2540,"total_pss":24586,"rss":76728,"native_total_heap":23548,"native_free_heap":2210,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2a1afb70-ad7a-4369-8d21-e8585aa587a8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:11.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":265,"total_pss":25672,"rss":78084,"native_total_heap":23548,"native_free_heap":1839,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c3e9ef7-54a2-42f5-9628-930e1b7ef469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2145,"total_pss":24319,"rss":76300,"native_total_heap":23548,"native_free_heap":2134,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2da38509-b26c-428b-93ab-392183f24b8e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":374675,"utime":153,"cutime":0,"cstime":0,"stime":178,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"314afe3d-0657-41c3-9773-d5803a8b92fc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1409,"total_pss":25768,"rss":78228,"native_total_heap":23548,"native_free_heap":2079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31819259-e996-4bce-bee1-590e95222a10","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:14.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":383672,"utime":158,"cutime":0,"cstime":0,"stime":184,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3c92d8dc-641b-4b3c-8025-79b7d4a139c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2416,"total_pss":22130,"rss":71716,"native_total_heap":23548,"native_free_heap":2162,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3e65096e-6a80-4d95-9927-c642422c7263","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394921,"end_time":394925,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"456f1fa0-78b6-470b-989f-f36e7eea253b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.86800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354906,"end_time":354920,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4bb9c6c4-05c2-4a0d-8a3a-fffc614d137f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2680,"total_pss":24510,"rss":76728,"native_total_heap":23548,"native_free_heap":2262,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5b956937-e426-434c-ae65-35234339436b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:08.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":377675,"utime":156,"cutime":0,"cstime":0,"stime":181,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5c0f2ac9-4a3a-4593-8bf4-f0a9b6aa7fa6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:31.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1556,"total_pss":27313,"rss":78864,"native_total_heap":23548,"native_free_heap":2043,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"617ce1bd-027a-45d6-8e05-39094287e253","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374910,"end_time":374929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f001c7b-77da-4bc1-89d3-069f17764980","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:25.86400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":394905,"end_time":394916,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"70dd649b-1a93-4daf-bb5b-934ebafb6558","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.89200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":374936,"end_time":374944,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"725c64fc-bc0e-4c6c-b51e-efea29398ea1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:55.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":364916,"end_time":364931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74ab64b9-a709-4c68-980d-cec9405a4b8f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:01.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1285,"total_pss":24754,"rss":77044,"native_total_heap":23548,"native_free_heap":2031,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7f5ad0d2-0198-40d4-b81c-23b0e26c7b6f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":356673,"utime":146,"cutime":0,"cstime":0,"stime":168,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83bfdc13-4e3c-43df-ab00-2ecbd68aedab","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:07.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":425,"total_pss":25575,"rss":77984,"native_total_heap":23548,"native_free_heap":1911,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8516c22e-53f4-44a9-b023-198af6e8846e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:47.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2377,"total_pss":26183,"rss":79176,"native_total_heap":23548,"native_free_heap":2223,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"885d459e-516e-4293-bd75-527046f6fe0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2341,"total_pss":26207,"rss":79176,"native_total_heap":23548,"native_free_heap":2202,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8a602213-4814-4a1f-954a-1aecfa8f4f51","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:56.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":365674,"utime":150,"cutime":0,"cstime":0,"stime":172,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b27bb8f-f3e6-444f-bca2-9f0084360bb9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:29.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":398673,"utime":167,"cutime":0,"cstime":0,"stime":191,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"97f29bec-d903-4388-8f38-046a8bcd9a40","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":337,"total_pss":25620,"rss":78084,"native_total_heap":23548,"native_free_heap":1875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9af2a974-45e9-481c-9534-403c5ce247a4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:26.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":395674,"utime":166,"cutime":0,"cstime":0,"stime":190,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9f037313-683a-4c39-ac57-5901a3bdf727","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2269,"total_pss":26048,"rss":79428,"native_total_heap":23548,"native_free_heap":2170,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"acfbeaa0-aae8-4199-a06b-a7622e6c81bc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":213,"total_pss":25693,"rss":78084,"native_total_heap":23548,"native_free_heap":1823,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b0a023d0-b619-4a91-91bc-a26ca23b9792","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:50.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":359675,"utime":147,"cutime":0,"cstime":0,"stime":169,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bdf11e0d-321f-48ce-a3f5-49c5304e8efb","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:17.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":386672,"utime":163,"cutime":0,"cstime":0,"stime":185,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf6b5cac-f3c6-419c-a4ad-3b345aa523f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:32.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":401672,"utime":167,"cutime":0,"cstime":0,"stime":192,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfb2972c-e237-4448-aa8e-0c144b806932","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384921,"end_time":384929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c0fd90d5-c261-4e78-ae0b-8b66fe31d8f7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":2468,"total_pss":24545,"rss":76932,"native_total_heap":23548,"native_free_heap":2178,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2fd6d74-1018-4edb-9a54-754858c1147d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:05.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1125,"total_pss":24880,"rss":77160,"native_total_heap":23548,"native_free_heap":1963,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c4f2a858-2a14-4408-8400-c1177dcf0a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:02.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":371675,"utime":152,"cutime":0,"cstime":0,"stime":177,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7d4b70f-731f-4ee5-80d3-8c204896efc7","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:33.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1484,"total_pss":27366,"rss":78864,"native_total_heap":23548,"native_free_heap":2007,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cd24d5ef-ca90-4565-af08-db47bc537b91","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:45.88400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":354925,"end_time":354936,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cfa2939e-8a61-4f6d-a1a7-593bd4797cd1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":368674,"utime":150,"cutime":0,"cstime":0,"stime":174,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cffe8fca-abe5-468e-8f50-2a4c664e0141","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.86200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":384904,"end_time":384914,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d1e4dda0-8acf-4da7-abb2-50b7b2229113","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:15.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":141,"total_pss":25758,"rss":78100,"native_total_heap":23548,"native_free_heap":1786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d72032a4-6549-4e42-8680-806027c9b8c0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6889,"java_free_heap":1696,"total_pss":27372,"rss":78760,"native_total_heap":23548,"native_free_heap":2095,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d737136a-3fda-4e44-8b1e-be5cc874406d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1197,"total_pss":24852,"rss":77160,"native_total_heap":23548,"native_free_heap":1995,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e41116af-54aa-4ce8-8eb9-2844ce541171","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:53.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":2181,"total_pss":24166,"rss":76052,"native_total_heap":23548,"native_free_heap":2154,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37a61c8-1eaf-4b31-8351-fcd8a0fe8c62","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:20.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":389673,"utime":164,"cutime":0,"cstime":0,"stime":187,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe275941-76c7-4316-80d0-221b491f5871","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T20:00:23.61900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":392671,"utime":165,"cutime":0,"cstime":0,"stime":187,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ffbc8b09-cbfa-4ee7-b0ca-3dd7754ecea0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:59:59.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6707,"java_free_heap":1321,"total_pss":25779,"rss":78228,"native_total_heap":23548,"native_free_heap":2047,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json b/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json index 5fa7ec5d4..13d799e43 100644 --- a/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json +++ b/self-host/session-data/sh.measure.sample/1.0/bda41c20-e157-4f84-b20a-9b33cb05e4b1.json @@ -1 +1 @@ -[{"id":"028c7f23-dc82-4f1a-b215-709d59060ad0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1602,"total_pss":25099,"rss":78832,"native_total_heap":23036,"native_free_heap":1965,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05e8f240-1ebe-48aa-8740-bdc7a34c4735","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":340,"total_pss":25844,"rss":80496,"native_total_heap":23036,"native_free_heap":1702,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1662fed0-5455-4aa8-a5ca-0c377ba195b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":552,"total_pss":25706,"rss":80496,"native_total_heap":23036,"native_free_heap":1786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1d1ad68d-c7ed-411e-b61d-95ab46864c71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":254673,"utime":74,"cutime":0,"cstime":0,"stime":92,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2274ac98-7f9f-4c63-8a46-9c338175f023","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2654,"total_pss":25020,"rss":80260,"native_total_heap":23036,"native_free_heap":2148,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c13fedf-6820-4d00-bb14-928784c8c9d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1390,"total_pss":25218,"rss":78864,"native_total_heap":23036,"native_free_heap":1876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33233ada-7758-4d28-af16-4063cdee24c3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":236673,"utime":61,"cutime":0,"cstime":0,"stime":80,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dfe3e13-643b-428a-813e-50cf6fe479ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2468,"total_pss":26213,"rss":81260,"native_total_heap":23036,"native_free_heap":2109,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f1d348a-fc39-419b-91fc-ee1583978549","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2308,"total_pss":25722,"rss":80428,"native_total_heap":23036,"native_free_heap":2037,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4432e916-ba81-4c44-a388-da6002652983","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:26.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":215673,"utime":47,"cutime":0,"cstime":0,"stime":64,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d981eec-320c-4368-ae32-c8ecb826c516","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234945,"end_time":234954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57620ccb-6daf-4451-818b-18490e6eb09a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:50.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":239672,"utime":65,"cutime":0,"cstime":0,"stime":82,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a541fb5-944c-4f47-adbd-31a3a0900729","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2256,"total_pss":26692,"rss":81216,"native_total_heap":23036,"native_free_heap":2025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a7c11b4-753f-4aa4-ae7b-bc73db57ff1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224908,"end_time":224924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d193e09-1ba4-4274-8235-40a46b2d34d5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2690,"total_pss":24956,"rss":80208,"native_total_heap":23036,"native_free_heap":2169,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dfe63c8-4ef7-4ad4-8643-cdce88166408","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":248673,"utime":70,"cutime":0,"cstime":0,"stime":88,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e4aba50-769f-43c4-a856-624fe4f18b42","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":242672,"utime":66,"cutime":0,"cstime":0,"stime":84,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6086be72-9137-457a-93c4-4b3060a4e3e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":464,"total_pss":25762,"rss":80496,"native_total_heap":23036,"native_free_heap":1754,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71031e9f-5567-42b9-8fab-13ee0270babf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1536,"total_pss":27335,"rss":81732,"native_total_heap":23036,"native_free_heap":1958,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7122bffe-f314-4f01-8fa4-f84c9951d3a3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1236,"total_pss":25051,"rss":79816,"native_total_heap":23036,"native_free_heap":1837,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b1ffa9-d7f1-4548-b797-bf44cd704f9d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1324,"total_pss":27004,"rss":81772,"native_total_heap":23036,"native_free_heap":1874,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8408f885-0b82-4703-b806-c10d650b444f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:44.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":233674,"utime":56,"cutime":0,"cstime":0,"stime":78,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"85a1fd3e-1dd6-486a-8952-40f6b46b8f0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254910,"end_time":254927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89c39b3f-fa6c-484a-a306-ff660aacf455","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244908,"end_time":244927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ef48228-6c5a-4638-a97d-d38451b9d7f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1412,"total_pss":26952,"rss":81772,"native_total_heap":23036,"native_free_heap":1905,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"952231a8-2050-43aa-a48e-e324a52ae8b6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1448,"total_pss":27326,"rss":81772,"native_total_heap":23036,"native_free_heap":1921,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5a8aa8-5e0d-4de1-88cf-61b83014b546","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2478,"total_pss":25120,"rss":80260,"native_total_heap":23036,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a10d72fb-3416-4dc2-9b02-51e9a0fe6bf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":224673,"utime":51,"cutime":0,"cstime":0,"stime":69,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a271d9ce-b77b-42b7-883c-7a0c6d48309c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:38.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":227674,"utime":54,"cutime":0,"cstime":0,"stime":73,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a29afe73-624d-41b9-939c-0b2d005d864a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":212672,"utime":44,"cutime":0,"cstime":0,"stime":61,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9a89101-14c5-45a9-be92-00506d6087bf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1550,"total_pss":25114,"rss":78832,"native_total_heap":23036,"native_free_heap":1944,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa56e14d-0977-4073-baaa-60920caada61","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244936,"end_time":244950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af01f6d6-8385-4077-ba96-5d8f76064c5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":230674,"utime":55,"cutime":0,"cstime":0,"stime":75,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b260e08c-d76d-4716-96ae-050d8103790c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1690,"total_pss":25901,"rss":80856,"native_total_heap":23036,"native_free_heap":1997,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb63f099-39ae-415e-962e-7142f1c508ce","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1478,"total_pss":25166,"rss":78864,"native_total_heap":23036,"native_free_heap":1913,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf20eff4-7ae2-463e-990b-a38af54894cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:02.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":251674,"utime":72,"cutime":0,"cstime":0,"stime":90,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1bf924d-b99e-4006-bd32-5634d0a490a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":218672,"utime":48,"cutime":0,"cstime":0,"stime":65,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c283c551-4d24-4857-87b6-7043d2db0106","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224934,"end_time":224943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6e39438-299f-4d46-81ee-cd6826c6a277","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2442,"total_pss":25130,"rss":80260,"native_total_heap":23036,"native_free_heap":2064,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c76c0cc7-f6da-4178-b5cb-6847df86428c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":209676,"utime":42,"cutime":0,"cstime":0,"stime":60,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df5efd7b-dcc1-4e2c-b220-0eb0e0b43b81","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214908,"end_time":214929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1b12a45-9262-44a4-b908-c5291a7cfcf9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234917,"end_time":234933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea336e04-8e5a-4d91-9d7d-9e2b0abb8b26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":252,"total_pss":25918,"rss":80720,"native_total_heap":23036,"native_free_heap":1670,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb53e195-a3c2-4143-9a1c-e892cb4d8677","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:32.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":221675,"utime":50,"cutime":0,"cstime":0,"stime":67,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed813b8a-33f6-43d2-990a-649d50175845","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:56.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":245674,"utime":69,"cutime":0,"cstime":0,"stime":87,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee9ea633-8382-40c4-9b29-d482c4e743c2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":392,"total_pss":25808,"rss":80496,"native_total_heap":23036,"native_free_heap":1718,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2071c66-1b86-4f3e-b9e2-0466f2c0aff9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254936,"end_time":254948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4b6e509-890c-4b33-96aa-9dadaf8c6be6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2396,"total_pss":26354,"rss":81456,"native_total_heap":23036,"native_free_heap":2077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa27e4d8-4f0b-4697-be72-95c1f06b7143","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2550,"total_pss":25072,"rss":80260,"native_total_heap":23036,"native_free_heap":2116,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbae44c6-3e76-444f-8557-1cdae0a72d75","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214939,"end_time":214945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"028c7f23-dc82-4f1a-b215-709d59060ad0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1602,"total_pss":25099,"rss":78832,"native_total_heap":23036,"native_free_heap":1965,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"05e8f240-1ebe-48aa-8740-bdc7a34c4735","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":340,"total_pss":25844,"rss":80496,"native_total_heap":23036,"native_free_heap":1702,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1662fed0-5455-4aa8-a5ca-0c377ba195b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:37.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":552,"total_pss":25706,"rss":80496,"native_total_heap":23036,"native_free_heap":1786,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1d1ad68d-c7ed-411e-b61d-95ab46864c71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":254673,"utime":74,"cutime":0,"cstime":0,"stime":92,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2274ac98-7f9f-4c63-8a46-9c338175f023","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2654,"total_pss":25020,"rss":80260,"native_total_heap":23036,"native_free_heap":2148,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2c13fedf-6820-4d00-bb14-928784c8c9d0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1390,"total_pss":25218,"rss":78864,"native_total_heap":23036,"native_free_heap":1876,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"33233ada-7758-4d28-af16-4063cdee24c3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":236673,"utime":61,"cutime":0,"cstime":0,"stime":80,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3dfe3e13-643b-428a-813e-50cf6fe479ff","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:19.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2468,"total_pss":26213,"rss":81260,"native_total_heap":23036,"native_free_heap":2109,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3f1d348a-fc39-419b-91fc-ee1583978549","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2308,"total_pss":25722,"rss":80428,"native_total_heap":23036,"native_free_heap":2037,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4432e916-ba81-4c44-a388-da6002652983","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:26.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":215673,"utime":47,"cutime":0,"cstime":0,"stime":64,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4d981eec-320c-4368-ae32-c8ecb826c516","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.90200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234945,"end_time":234954,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"57620ccb-6daf-4451-818b-18490e6eb09a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:50.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":239672,"utime":65,"cutime":0,"cstime":0,"stime":82,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a541fb5-944c-4f47-adbd-31a3a0900729","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2256,"total_pss":26692,"rss":81216,"native_total_heap":23036,"native_free_heap":2025,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a7c11b4-753f-4aa4-ae7b-bc73db57ff1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.87200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224908,"end_time":224924,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5d193e09-1ba4-4274-8235-40a46b2d34d5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:47.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2690,"total_pss":24956,"rss":80208,"native_total_heap":23036,"native_free_heap":2169,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5dfe63c8-4ef7-4ad4-8643-cdce88166408","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:59.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":248673,"utime":70,"cutime":0,"cstime":0,"stime":88,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5e4aba50-769f-43c4-a856-624fe4f18b42","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":242672,"utime":66,"cutime":0,"cstime":0,"stime":84,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6086be72-9137-457a-93c4-4b3060a4e3e8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":464,"total_pss":25762,"rss":80496,"native_total_heap":23036,"native_free_heap":1754,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"71031e9f-5567-42b9-8fab-13ee0270babf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:27.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1536,"total_pss":27335,"rss":81732,"native_total_heap":23036,"native_free_heap":1958,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7122bffe-f314-4f01-8fa4-f84c9951d3a3","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1236,"total_pss":25051,"rss":79816,"native_total_heap":23036,"native_free_heap":1837,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"74b1ffa9-d7f1-4548-b797-bf44cd704f9d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1324,"total_pss":27004,"rss":81772,"native_total_heap":23036,"native_free_heap":1874,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8408f885-0b82-4703-b806-c10d650b444f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:44.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":233674,"utime":56,"cutime":0,"cstime":0,"stime":78,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"85a1fd3e-1dd6-486a-8952-40f6b46b8f0d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254910,"end_time":254927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"89c39b3f-fa6c-484a-a306-ff660aacf455","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244908,"end_time":244927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8ef48228-6c5a-4638-a97d-d38451b9d7f5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1412,"total_pss":26952,"rss":81772,"native_total_heap":23036,"native_free_heap":1905,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"952231a8-2050-43aa-a48e-e324a52ae8b6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1448,"total_pss":27326,"rss":81772,"native_total_heap":23036,"native_free_heap":1921,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9d5a8aa8-5e0d-4de1-88cf-61b83014b546","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:53.62400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2478,"total_pss":25120,"rss":80260,"native_total_heap":23036,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a10d72fb-3416-4dc2-9b02-51e9a0fe6bf8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":224673,"utime":51,"cutime":0,"cstime":0,"stime":69,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a271d9ce-b77b-42b7-883c-7a0c6d48309c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:38.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":227674,"utime":54,"cutime":0,"cstime":0,"stime":73,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a29afe73-624d-41b9-939c-0b2d005d864a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:23.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":212672,"utime":44,"cutime":0,"cstime":0,"stime":61,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9a89101-14c5-45a9-be92-00506d6087bf","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:01.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1550,"total_pss":25114,"rss":78832,"native_total_heap":23036,"native_free_heap":1944,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa56e14d-0977-4073-baaa-60920caada61","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.89800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":244936,"end_time":244950,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"af01f6d6-8385-4077-ba96-5d8f76064c5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":230674,"utime":55,"cutime":0,"cstime":0,"stime":75,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b260e08c-d76d-4716-96ae-050d8103790c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:57.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1690,"total_pss":25901,"rss":80856,"native_total_heap":23036,"native_free_heap":1997,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb63f099-39ae-415e-962e-7142f1c508ce","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:03.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":1478,"total_pss":25166,"rss":78864,"native_total_heap":23036,"native_free_heap":1913,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf20eff4-7ae2-463e-990b-a38af54894cc","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:02.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":251674,"utime":72,"cutime":0,"cstime":0,"stime":90,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c1bf924d-b99e-4006-bd32-5634d0a490a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:29.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":218672,"utime":48,"cutime":0,"cstime":0,"stime":65,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c283c551-4d24-4857-87b6-7043d2db0106","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:35.89000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":224934,"end_time":224943,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c6e39438-299f-4d46-81ee-cd6826c6a277","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2442,"total_pss":25130,"rss":80260,"native_total_heap":23036,"native_free_heap":2064,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c76c0cc7-f6da-4178-b5cb-6847df86428c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:20.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":209676,"utime":42,"cutime":0,"cstime":0,"stime":60,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"df5efd7b-dcc1-4e2c-b220-0eb0e0b43b81","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.87700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214908,"end_time":214929,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1b12a45-9262-44a4-b908-c5291a7cfcf9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.88100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":234917,"end_time":234933,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ea336e04-8e5a-4d91-9d7d-9e2b0abb8b26","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":252,"total_pss":25918,"rss":80720,"native_total_heap":23036,"native_free_heap":1670,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb53e195-a3c2-4143-9a1c-e892cb4d8677","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:32.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":221675,"utime":50,"cutime":0,"cstime":0,"stime":67,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ed813b8a-33f6-43d2-990a-649d50175845","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:56.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":245674,"utime":69,"cutime":0,"cstime":0,"stime":87,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ee9ea633-8382-40c4-9b29-d482c4e743c2","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":392,"total_pss":25808,"rss":80496,"native_total_heap":23036,"native_free_heap":1718,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f2071c66-1b86-4f3e-b9e2-0466f2c0aff9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:05.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":254936,"end_time":254948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4b6e509-890c-4b33-96aa-9dadaf8c6be6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2396,"total_pss":26354,"rss":81456,"native_total_heap":23036,"native_free_heap":2077,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fa27e4d8-4f0b-4697-be72-95c1f06b7143","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:51.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":2550,"total_pss":25072,"rss":80260,"native_total_heap":23036,"native_free_heap":2116,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fbae44c6-3e76-444f-8557-1cdae0a72d75","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:57:25.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":214939,"end_time":214945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json b/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json index 2eb1a331e..0173dc338 100644 --- a/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json +++ b/self-host/session-data/sh.measure.sample/1.0/c0aa4d6b-3ee6-46af-a48e-67e783bc94d9.json @@ -1 +1 @@ -[{"id":"0902c41b-d08b-43ce-be5d-7141ad64d8f6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:47.86000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5681818,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"18589455-4374-492b-a213-f55c4c39bfe6","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:45.06100000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14491"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3d30add3-7377-410d-bdd3-bb69518c226f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185465,"total_pss":28355,"rss":126000,"native_total_heap":16996,"native_free_heap":1250,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"42abfcfe-e6f8-48db-9086-3dfab3b79d9f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.02200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5678764,"process_start_requested_uptime":5678636,"content_provider_attach_uptime":5678804,"on_next_draw_uptime":5678980,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d046e79-56e5-455c-a960-d4330a4d302e","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.11100000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7b3ef638-264b-4dd1-9e80-e99fcbdbea86","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:46.85800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35794,"total_pss":49254,"rss":141368,"native_total_heap":22268,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b392ccee-6ad7-487b-bc91-dbea1c651c0c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.07100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5d88d48-15bb-4e8f-952f-13ccd2eb281b","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7771e4e-ad71-4b29-a908-2e59f3d07ae0","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:48.85900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35642,"total_pss":49479,"rss":141368,"native_total_heap":22268,"native_free_heap":1023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7f6228e-f953-4c14-9599-c23ce4143cca","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5679044,"end_time":5679064,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"6745","content-type":"multipart/form-data; boundary=ce80998b-e4d8-407d-97f2-36aa7df1a3b3","host":"10.0.2.2:8080","msr-req-id":"7c66168e-48b5-445e-9910-72b56fce54d3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:47 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f5a36b36-7e21-4413-b379-d3aa287647c8","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fb8db3eb-1fee-4336-9f6c-904694dcc1fc","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"0902c41b-d08b-43ce-be5d-7141ad64d8f6","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:47.86000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":567866,"uptime":5681818,"utime":8,"cutime":0,"cstime":0,"stime":10,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"18589455-4374-492b-a213-f55c4c39bfe6","session_id":"a3d629f5-6bab-4a43-8e75-fa5d6b539d33","timestamp":"2024-04-29T11:46:45.06100000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"CACHED","trace":null,"process_name":"sh.measure.sample","pid":"14491"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3d30add3-7377-410d-bdd3-bb69518c226f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:44.87800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185465,"total_pss":28355,"rss":126000,"native_total_heap":16996,"native_free_heap":1250,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"42abfcfe-e6f8-48db-9086-3dfab3b79d9f","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.02200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5678764,"process_start_requested_uptime":5678636,"content_provider_attach_uptime":5678804,"on_next_draw_uptime":5678980,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d046e79-56e5-455c-a960-d4330a4d302e","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.11100000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"7b3ef638-264b-4dd1-9e80-e99fcbdbea86","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:46.85800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35794,"total_pss":49254,"rss":141368,"native_total_heap":22268,"native_free_heap":1061,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b392ccee-6ad7-487b-bc91-dbea1c651c0c","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.07100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c5d88d48-15bb-4e8f-952f-13ccd2eb281b","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08700000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c7771e4e-ad71-4b29-a908-2e59f3d07ae0","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:48.85900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35642,"total_pss":49479,"rss":141368,"native_total_heap":22268,"native_free_heap":1023,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e7f6228e-f953-4c14-9599-c23ce4143cca","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:45.10600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5679044,"end_time":5679064,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"6745","content-type":"multipart/form-data; boundary=ce80998b-e4d8-407d-97f2-36aa7df1a3b3","host":"10.0.2.2:8080","msr-req-id":"7c66168e-48b5-445e-9910-72b56fce54d3","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:46:47 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"f5a36b36-7e21-4413-b379-d3aa287647c8","session_id":"d314d291-0b2b-459e-a449-0bb2a1a6546c","timestamp":"2024-04-29T11:46:49.08000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"fb8db3eb-1fee-4336-9f6c-904694dcc1fc","session_id":"57e8f051-b57e-4018-a252-79abad741295","timestamp":"2024-04-29T11:46:51.09400000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json b/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json index ab88b335e..36df2c010 100644 --- a/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json +++ b/self-host/session-data/sh.measure.sample/1.0/c7887d60-9823-4018-8b79-0e2c8399258c.json @@ -1 +1 @@ -[{"id":"080e74f2-5adb-4a61-9e67-c88f1c964e6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08ae34c4-563b-47fd-831f-dc49010421ac","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.06400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5182110,"end_time":5183561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:35:14 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"092aa6f8-181c-45bc-9d99-aea4ea3bd5a6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c9cd45a-0fb8-4e0a-8237-ebb77a116be5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.14600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1215d131-110e-4cf5-b714-577e30444ad0","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.40900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22272a41-bace-4b70-9606-7b078327f998","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.19500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5182659,"end_time":5182691,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"95485","content-type":"multipart/form-data; boundary=5d47d260-f826-49c7-859a-696a9e4fa238","host":"10.0.2.2:8080","msr-req-id":"846997c8-5161-4a7a-877e-c38595ade128","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:13 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27eea315-a598-4a50-9f54-190142202219","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":223.98926,"y":457.9834,"touch_down_time":5179536,"touch_up_time":5179616},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d7225b4-4844-4580-9ce5-804a1c967f1e","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.91100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":519392,"uptime":5194407,"utime":17,"cutime":0,"cstime":0,"stime":6,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319ce33f-e90a-402f-9e77-df6ac1751485","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.23700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5169734,"utime":158,"cutime":0,"cstime":0,"stime":79,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4244b553-4bdd-4958-870c-5702eb19139c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.81300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"439deed3-53b7-4fbf-aed1-4bd869306c13","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3685,"total_pss":88789,"rss":175800,"native_total_heap":25084,"native_free_heap":2393,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46f51a6c-b57b-418b-a9b3-6cf43aba754f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.18200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5172644,"on_next_draw_uptime":5172678,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527f8622-cd65-414f-b6fe-6fe3ff2efd62","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:25.11200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5561cff0-5f38-4d2e-82c9-283d08b8d496","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69ffd79a-bbaa-4a69-910e-fcfca2ed92ad","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.67200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":529.98047,"y":1327.9486,"touch_down_time":5184070,"touch_up_time":5184167},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f58e4c8-ece8-4614-8f6e-6edb5592c5ea","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.36300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":507.96387,"y":1712.8986,"touch_down_time":5176782,"touch_up_time":5176858},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73bf7a76-a09a-4502-b8e0-6b96ede52e2e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31800000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":127.97974,"y":338.94836,"touch_down_time":5177728,"touch_up_time":5177809},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77405e5c-8615-4879-9d7b-cfa7b7d9e86d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:09.55100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818b4c3a-eab7-4f92-b0a3-60426139db8b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3680,"total_pss":87919,"rss":174516,"native_total_heap":25084,"native_free_heap":1449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"887a383f-82c8-476c-9251-9e15ea29b414","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.62100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8992c540-1ded-4a03-b20b-bb5c31bef39a","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.99800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9eb916f7-168f-4c7f-9aef-12233d13c2c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":422.88593,"y":1927.934,"end_x":620.9802,"end_y":774.9133,"direction":"up","touch_down_time":5169189,"touch_up_time":5169331},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5c39f29-a4ec-45cb-b965-5fc1e67a6859","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.27300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5171732,"end_time":5171769,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"90342","content-type":"multipart/form-data; boundary=6b6e60b5-acf3-46ab-b65a-494968f8f368","host":"10.0.2.2:8080","msr-req-id":"25b45a45-20a2-4ed8-b8f5-43148e8ee35e","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:02 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a82f2770-66df-4a62-80ed-19cdedaf1220","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.15000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8563cb7-b419-492b-817c-916f3a4203b1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab8d1271-4d9f-4088-9e7f-45a04451e7eb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.17500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b234fda2-0da4-427e-b979-b56cbd8c7f07","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.75700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":697.9724,"y":326.9568,"end_x":697.9724,"end_y":998.95935,"direction":"down","touch_down_time":5170129,"touch_up_time":5170251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bae61d19-589a-4b34-a20f-1f37040df90e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31600000Z","type":"navigation","navigation":{"to":"checkout"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcb2354b-df61-4b85-8cff-34bb8fbb4086","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.71200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c25f401e-757f-4b8f-adb5-acd1b7f0932c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.45800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2aaf009-c12b-4399-96eb-42853ef6343c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.24700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9ee072-83d8-4b64-a525-8ce15f0f7880","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12300000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc289fd0-a231-4aa5-9641-a0e80a397653","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf86902a-f4be-404c-8a8f-1fc8b1182e00","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.59500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d33cb8ba-cc0a-4eaa-98c3-2ca6c7aba1ee","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.69800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d46455ab-4151-4f4b-80b4-9790b64d74b8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1841b96-56a4-4daa-8687-b9a497dd83c1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8962829-1896-4527-8adc-241f40ea5d4e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.43700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ca4b1-bd1e-4e38-9552-51e69d671077","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.16700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6697a3d-ccb8-4241-ad39-3a4128e2607b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.53500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":552.9529,"y":1468.9343,"touch_down_time":5181960,"touch_up_time":5182029},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7eaa0b7-a0a9-43d7-9e98-41e7eca3f54c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.20400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb24b291-e2a3-4dd8-ab69-513927eb1d91","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.80000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"080e74f2-5adb-4a61-9e67-c88f1c964e6a","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.58100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"08ae34c4-563b-47fd-831f-dc49010421ac","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.06400000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":5182110,"end_time":5183561,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 03 May 2024 23:35:14 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"092aa6f8-181c-45bc-9d99-aea4ea3bd5a6","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0c9cd45a-0fb8-4e0a-8237-ebb77a116be5","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.14600000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1215d131-110e-4cf5-b714-577e30444ad0","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.40900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22272a41-bace-4b70-9606-7b078327f998","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.19500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5182659,"end_time":5182691,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"95485","content-type":"multipart/form-data; boundary=5d47d260-f826-49c7-859a-696a9e4fa238","host":"10.0.2.2:8080","msr-req-id":"846997c8-5161-4a7a-877e-c38595ade128","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:13 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"27eea315-a598-4a50-9f54-190142202219","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12400000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":223.98926,"y":457.9834,"touch_down_time":5179536,"touch_up_time":5179616},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2d7225b4-4844-4580-9ce5-804a1c967f1e","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.91100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":519392,"uptime":5194407,"utime":17,"cutime":0,"cstime":0,"stime":6,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"319ce33f-e90a-402f-9e77-df6ac1751485","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.23700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":514814,"uptime":5169734,"utime":158,"cutime":0,"cstime":0,"stime":79,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4244b553-4bdd-4958-870c-5702eb19139c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.81300000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"439deed3-53b7-4fbf-aed1-4bd869306c13","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3685,"total_pss":88789,"rss":175800,"native_total_heap":25084,"native_free_heap":2393,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"46f51a6c-b57b-418b-a9b3-6cf43aba754f","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.18200000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":5172644,"on_next_draw_uptime":5172678,"launched_activity":"sh.measure.sample.ComposeActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527f8622-cd65-414f-b6fe-6fe3ff2efd62","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:25.11200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5561cff0-5f38-4d2e-82c9-283d08b8d496","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"69ffd79a-bbaa-4a69-910e-fcfca2ed92ad","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.67200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_deadlock","width":311,"height":132,"x":529.98047,"y":1327.9486,"touch_down_time":5184070,"touch_up_time":5184167},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6f58e4c8-ece8-4614-8f6e-6edb5592c5ea","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.36300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":507.96387,"y":1712.8986,"touch_down_time":5176782,"touch_up_time":5176858},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73bf7a76-a09a-4502-b8e0-6b96ede52e2e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31800000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":127.97974,"y":338.94836,"touch_down_time":5177728,"touch_up_time":5177809},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77405e5c-8615-4879-9d7b-cfa7b7d9e86d","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:09.55100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"818b4c3a-eab7-4f92-b0a3-60426139db8b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.23100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":12395,"java_free_heap":3680,"total_pss":87919,"rss":174516,"native_total_heap":25084,"native_free_heap":1449,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"887a383f-82c8-476c-9251-9e15ea29b414","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.62100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8992c540-1ded-4a03-b20b-bb5c31bef39a","session_id":"630a954e-a86f-4349-aab8-9e3d068fc5f9","timestamp":"2024-05-03T23:35:24.99800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9eb916f7-168f-4c7f-9aef-12233d13c2c3","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:34:59.83800000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":422.88593,"y":1927.934,"end_x":620.9802,"end_y":774.9133,"direction":"up","touch_down_time":5169189,"touch_up_time":5169331},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a5c39f29-a4ec-45cb-b965-5fc1e67a6859","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.27300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5171732,"end_time":5171769,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"90342","content-type":"multipart/form-data; boundary=6b6e60b5-acf3-46ab-b65a-494968f8f368","host":"10.0.2.2:8080","msr-req-id":"25b45a45-20a2-4ed8-b8f5-43148e8ee35e","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 03 May 2024 23:35:02 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a82f2770-66df-4a62-80ed-19cdedaf1220","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:03.15000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a8563cb7-b419-492b-817c-916f3a4203b1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab8d1271-4d9f-4088-9e7f-45a04451e7eb","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.17500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b234fda2-0da4-427e-b979-b56cbd8c7f07","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:00.75700000Z","type":"gesture_scroll","gesture_scroll":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"x":697.9724,"y":326.9568,"end_x":697.9724,"end_y":998.95935,"direction":"down","touch_down_time":5170129,"touch_up_time":5170251},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bae61d19-589a-4b34-a20f-1f37040df90e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:08.31600000Z","type":"navigation","navigation":{"to":"checkout"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bcb2354b-df61-4b85-8cff-34bb8fbb4086","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.71200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c25f401e-757f-4b8f-adb5-acd1b7f0932c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.45800000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c2aaf009-c12b-4399-96eb-42853ef6343c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.24700000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cb9ee072-83d8-4b64-a525-8ce15f0f7880","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.12300000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc289fd0-a231-4aa5-9641-a0e80a397653","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:07.42800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cf86902a-f4be-404c-8a8f-1fc8b1182e00","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.59500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d33cb8ba-cc0a-4eaa-98c3-2ca6c7aba1ee","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:01.69800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d46455ab-4151-4f4b-80b4-9790b64d74b8","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:06.24400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1841b96-56a4-4daa-8687-b9a497dd83c1","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:13.85200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e8962829-1896-4527-8adc-241f40ea5d4e","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:14.43700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ca4b1-bd1e-4e38-9552-51e69d671077","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:11.16700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f6697a3d-ccb8-4241-ad39-3a4128e2607b","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:12.53500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":552.9529,"y":1468.9343,"touch_down_time":5181960,"touch_up_time":5182029},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f7eaa0b7-a0a9-43d7-9e98-41e7eca3f54c","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:02.20400000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fb24b291-e2a3-4dd8-ab69-513927eb1d91","session_id":"460765ab-1834-454e-b207-d8235b2160d9","timestamp":"2024-05-03T23:35:10.80000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"ee40eb0e-c579-473d-bc10-557049f51cda","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json b/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json index 46beb2690..4bed68a47 100644 --- a/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json +++ b/self-host/session-data/sh.measure.sample/1.0/cfaee6a6-d764-4084-a290-30490abb96a4.json @@ -1 +1 @@ -[{"id":"00c90e10-8f2b-4364-9876-43247515b357","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3440,"total_pss":33003,"rss":106124,"native_total_heap":26040,"native_free_heap":3369,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b09b1ce-1d50-47e2-8392-4bb1654f615c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1050229,"utime":370,"cutime":0,"cstime":0,"stime":411,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e86dc39-f03e-45c2-864e-be0b0ad18886","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1035228,"utime":363,"cutime":0,"cstime":0,"stime":402,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1086631b-fb88-4893-9a73-e610fd8bef8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2280,"total_pss":33939,"rss":106956,"native_total_heap":26040,"native_free_heap":3111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11310f57-3006-41aa-8410-5a600303cb34","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3244,"total_pss":33127,"rss":106120,"native_total_heap":26040,"native_free_heap":3284,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13c37652-f87b-49a9-b8b0-a918f9d555f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3264,"total_pss":33099,"rss":106120,"native_total_heap":26040,"native_free_heap":3300,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14106de6-562e-45e3-a242-2a403646f6d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":34618,"rss":107492,"native_total_heap":25784,"native_free_heap":2863,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16beb44c-18e9-4fb8-ae84-aaaa47999f2f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":332,"total_pss":35611,"rss":108656,"native_total_heap":26040,"native_free_heap":2773,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16d85b58-10a4-49e5-a035-05c87ca77b74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:31.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1208,"total_pss":34831,"rss":108028,"native_total_heap":26040,"native_free_heap":2907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18452145-6a88-4974-b87e-b2b7bd6a9a28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":146,"total_pss":35495,"rss":108556,"native_total_heap":26040,"native_free_heap":2684,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"194edb31-bb57-41f6-b64a-20147cbc6bd4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1044227,"utime":367,"cutime":0,"cstime":0,"stime":408,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1999254c-4858-4b70-b327-e7c6c59e4621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":35375,"rss":108428,"native_total_heap":26040,"native_free_heap":2752,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c367a36-4e42-48be-ae56-b5dfe3d96962","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1038227,"utime":364,"cutime":0,"cstime":0,"stime":404,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ff36937-2b5d-45b0-9435-c4f1b4c5d597","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":420,"total_pss":35555,"rss":108656,"native_total_heap":26040,"native_free_heap":2805,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2103131b-e13e-4cd5-9883-2cf32ea0b599","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052418,"end_time":1052433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"230e941d-14c6-471f-8026-8d284e05da67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1059227,"utime":374,"cutime":0,"cstime":0,"stime":419,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"317be00d-c425-4e87-9c7e-296b8f14b2f4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1053228,"utime":372,"cutime":0,"cstime":0,"stime":415,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"330d6041-6aeb-4f52-affb-5d8977c92153","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:36.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1065228,"utime":380,"cutime":0,"cstime":0,"stime":420,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38706358-fd9c-4b4b-b0bb-6e3709035cbb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1296,"total_pss":34779,"rss":107780,"native_total_heap":26040,"native_free_heap":2943,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a38a9cb-94ad-45fb-8c60-d77e1a4d98af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2404,"total_pss":33863,"rss":106956,"native_total_heap":26040,"native_free_heap":3163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465dc9cf-5233-4032-be63-13f25716e830","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1348,"total_pss":34751,"rss":107780,"native_total_heap":26040,"native_free_heap":2959,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4aa5b716-9239-405e-8c23-ddea2a7fbfc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1136,"total_pss":34883,"rss":108028,"native_total_heap":26040,"native_free_heap":2875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dfbbc20-e54d-4424-8394-d5ccbbb796a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:00.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1029227,"utime":357,"cutime":0,"cstime":0,"stime":400,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f268f86-9f14-4312-a206-d9876181ceab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3352,"total_pss":33051,"rss":106120,"native_total_heap":26040,"native_free_heap":3332,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f9a7851-697b-47a8-a33e-a5bf2e08384e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1056229,"utime":372,"cutime":0,"cstime":0,"stime":417,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5628699e-d852-4ab3-8409-b04d4b039d13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032416,"end_time":1032421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6992e320-4122-45f6-8fca-030e34721f78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1026227,"utime":355,"cutime":0,"cstime":0,"stime":398,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"752ca335-8f95-4112-aaf0-29c34d683768","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:18.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1047227,"utime":368,"cutime":0,"cstime":0,"stime":410,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7901ce74-5a87-4456-873b-6f797dbb65d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":234,"total_pss":35431,"rss":108428,"native_total_heap":26040,"native_free_heap":2716,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7945bd2d-fc66-4d2e-89c6-f916972490c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2208,"total_pss":33991,"rss":106956,"native_total_heap":26040,"native_free_heap":3079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb55a47-ade5-4ba3-8b77-f098b982ca3f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052398,"end_time":1052411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8134fc8d-b4fa-4cd7-9920-298dff346e54","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:12.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1041227,"utime":365,"cutime":0,"cstime":0,"stime":406,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83966fd9-d015-4180-8e4d-cbed274a65ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1032227,"utime":358,"cutime":0,"cstime":0,"stime":400,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86560cf5-eae6-4e68-9530-60a955c8aa58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1062228,"utime":375,"cutime":0,"cstime":0,"stime":419,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"867f6b3f-3f60-4dc0-b7c7-4e844b2d4745","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1420,"total_pss":34699,"rss":107568,"native_total_heap":26040,"native_free_heap":2996,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d72fa6a-4252-43af-ab99-8e8884b6307e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":446,"total_pss":35303,"rss":108220,"native_total_heap":26040,"native_free_heap":2800,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e6f210c-bd77-4991-b9b5-aede36e28b17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022418,"end_time":1022426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90f9549d-1e45-456b-bf63-9a732ff3ec1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042397,"end_time":1042410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a2107103-48a3-4606-be7a-8aa8030ebe52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:54.17700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1023229,"utime":354,"cutime":0,"cstime":0,"stime":397,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7196326-8bc4-48af-b2d2-405502b9b4d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1068228,"utime":381,"cutime":0,"cstime":0,"stime":422,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d05ab351-2161-4e08-a875-296734c1bbd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2368,"total_pss":33887,"rss":106956,"native_total_heap":26040,"native_free_heap":3147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22a2195-b9d5-47e4-9025-7da263561772","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1234,"total_pss":34594,"rss":107492,"native_total_heap":25784,"native_free_heap":2884,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da6a0f20-6b41-4e6a-b214-d1f27f2d1530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042416,"end_time":1042419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbefdab9-97ab-4810-a033-2f04f9e9977b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":358,"total_pss":35355,"rss":108432,"native_total_heap":26040,"native_free_heap":2768,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e144ec7c-1330-49ae-9fd4-2490bd329762","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3140,"total_pss":33179,"rss":106332,"native_total_heap":26040,"native_free_heap":3248,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e21ad5f6-c58d-4653-a769-7cbb96788615","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2156,"total_pss":34019,"rss":106956,"native_total_heap":26040,"native_free_heap":3063,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e882164f-482a-4a95-827b-2508c9a2d776","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032399,"end_time":1032411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a792fa-be9c-494c-9cb5-118823a63fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062397,"end_time":1062412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0d11afe-369c-4f15-bf3c-6e994696a097","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062418,"end_time":1062429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc096f19-96f8-44f0-8a18-5fc16c740f91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022397,"end_time":1022411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"00c90e10-8f2b-4364-9876-43247515b357","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3440,"total_pss":33003,"rss":106124,"native_total_heap":26040,"native_free_heap":3369,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b09b1ce-1d50-47e2-8392-4bb1654f615c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1050229,"utime":370,"cutime":0,"cstime":0,"stime":411,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e86dc39-f03e-45c2-864e-be0b0ad18886","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:06.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1035228,"utime":363,"cutime":0,"cstime":0,"stime":402,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1086631b-fb88-4893-9a73-e610fd8bef8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2280,"total_pss":33939,"rss":106956,"native_total_heap":26040,"native_free_heap":3111,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"11310f57-3006-41aa-8410-5a600303cb34","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3244,"total_pss":33127,"rss":106120,"native_total_heap":26040,"native_free_heap":3284,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"13c37652-f87b-49a9-b8b0-a918f9d555f7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3264,"total_pss":33099,"rss":106120,"native_total_heap":26040,"native_free_heap":3300,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"14106de6-562e-45e3-a242-2a403646f6d4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1198,"total_pss":34618,"rss":107492,"native_total_heap":25784,"native_free_heap":2863,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16beb44c-18e9-4fb8-ae84-aaaa47999f2f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:37.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":332,"total_pss":35611,"rss":108656,"native_total_heap":26040,"native_free_heap":2773,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"16d85b58-10a4-49e5-a035-05c87ca77b74","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:31.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1208,"total_pss":34831,"rss":108028,"native_total_heap":26040,"native_free_heap":2907,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"18452145-6a88-4974-b87e-b2b7bd6a9a28","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":146,"total_pss":35495,"rss":108556,"native_total_heap":26040,"native_free_heap":2684,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"194edb31-bb57-41f6-b64a-20147cbc6bd4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1044227,"utime":367,"cutime":0,"cstime":0,"stime":408,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1999254c-4858-4b70-b327-e7c6c59e4621","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:59.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":338,"total_pss":35375,"rss":108428,"native_total_heap":26040,"native_free_heap":2752,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1c367a36-4e42-48be-ae56-b5dfe3d96962","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:09.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1038227,"utime":364,"cutime":0,"cstime":0,"stime":404,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1ff36937-2b5d-45b0-9435-c4f1b4c5d597","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:35.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":420,"total_pss":35555,"rss":108656,"native_total_heap":26040,"native_free_heap":2805,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2103131b-e13e-4cd5-9883-2cf32ea0b599","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.38100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052418,"end_time":1052433,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"230e941d-14c6-471f-8026-8d284e05da67","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:30.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1059227,"utime":374,"cutime":0,"cstime":0,"stime":419,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"317be00d-c425-4e87-9c7e-296b8f14b2f4","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:24.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1053228,"utime":372,"cutime":0,"cstime":0,"stime":415,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"330d6041-6aeb-4f52-affb-5d8977c92153","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:36.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1065228,"utime":380,"cutime":0,"cstime":0,"stime":420,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38706358-fd9c-4b4b-b0bb-6e3709035cbb","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1296,"total_pss":34779,"rss":107780,"native_total_heap":26040,"native_free_heap":2943,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a38a9cb-94ad-45fb-8c60-d77e1a4d98af","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:15.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2404,"total_pss":33863,"rss":106956,"native_total_heap":26040,"native_free_heap":3163,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"465dc9cf-5233-4032-be63-13f25716e830","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1348,"total_pss":34751,"rss":107780,"native_total_heap":26040,"native_free_heap":2959,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4aa5b716-9239-405e-8c23-ddea2a7fbfc3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.18100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1136,"total_pss":34883,"rss":108028,"native_total_heap":26040,"native_free_heap":2875,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4dfbbc20-e54d-4424-8394-d5ccbbb796a0","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:00.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1029227,"utime":357,"cutime":0,"cstime":0,"stime":400,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f268f86-9f14-4312-a206-d9876181ceab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3352,"total_pss":33051,"rss":106120,"native_total_heap":26040,"native_free_heap":3332,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4f9a7851-697b-47a8-a33e-a5bf2e08384e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:27.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1056229,"utime":372,"cutime":0,"cstime":0,"stime":417,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5628699e-d852-4ab3-8409-b04d4b039d13","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.36900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032416,"end_time":1032421,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6992e320-4122-45f6-8fca-030e34721f78","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1026227,"utime":355,"cutime":0,"cstime":0,"stime":398,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"752ca335-8f95-4112-aaf0-29c34d683768","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:18.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1047227,"utime":368,"cutime":0,"cstime":0,"stime":410,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7901ce74-5a87-4456-873b-6f797dbb65d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:01.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":234,"total_pss":35431,"rss":108428,"native_total_heap":26040,"native_free_heap":2716,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7945bd2d-fc66-4d2e-89c6-f916972490c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2208,"total_pss":33991,"rss":106956,"native_total_heap":26040,"native_free_heap":3079,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7cb55a47-ade5-4ba3-8b77-f098b982ca3f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1052398,"end_time":1052411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8134fc8d-b4fa-4cd7-9920-298dff346e54","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:12.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1041227,"utime":365,"cutime":0,"cstime":0,"stime":406,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"83966fd9-d015-4180-8e4d-cbed274a65ed","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1032227,"utime":358,"cutime":0,"cstime":0,"stime":400,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86560cf5-eae6-4e68-9530-60a955c8aa58","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1062228,"utime":375,"cutime":0,"cstime":0,"stime":419,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"867f6b3f-3f60-4dc0-b7c7-4e844b2d4745","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:25.17600000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1420,"total_pss":34699,"rss":107568,"native_total_heap":26040,"native_free_heap":2996,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d72fa6a-4252-43af-ab99-8e8884b6307e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:55.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":446,"total_pss":35303,"rss":108220,"native_total_heap":26040,"native_free_heap":2800,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8e6f210c-bd77-4991-b9b5-aede36e28b17","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022418,"end_time":1022426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"90f9549d-1e45-456b-bf63-9a732ff3ec1f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042397,"end_time":1042410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a2107103-48a3-4606-be7a-8aa8030ebe52","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:54.17700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1023229,"utime":354,"cutime":0,"cstime":0,"stime":397,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c7196326-8bc4-48af-b2d2-405502b9b4d6","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:39.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1068228,"utime":381,"cutime":0,"cstime":0,"stime":422,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d05ab351-2161-4e08-a875-296734c1bbd7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:17.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2368,"total_pss":33887,"rss":106956,"native_total_heap":26040,"native_free_heap":3147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d22a2195-b9d5-47e4-9025-7da263561772","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1234,"total_pss":34594,"rss":107492,"native_total_heap":25784,"native_free_heap":2884,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"da6a0f20-6b41-4e6a-b214-d1f27f2d1530","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.36700000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1042416,"end_time":1042419,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dbefdab9-97ab-4810-a033-2f04f9e9977b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:57.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":358,"total_pss":35355,"rss":108432,"native_total_heap":26040,"native_free_heap":2768,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e144ec7c-1330-49ae-9fd4-2490bd329762","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3140,"total_pss":33179,"rss":106332,"native_total_heap":26040,"native_free_heap":3248,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e21ad5f6-c58d-4653-a769-7cbb96788615","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:23.17700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2156,"total_pss":34019,"rss":106956,"native_total_heap":26040,"native_free_heap":3063,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e882164f-482a-4a95-827b-2508c9a2d776","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:03.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1032399,"end_time":1032411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e9a792fa-be9c-494c-9cb5-118823a63fee","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062397,"end_time":1062412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f0d11afe-369c-4f15-bf3c-6e994696a097","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:11:33.37600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1062418,"end_time":1062429,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fc096f19-96f8-44f0-8a18-5fc16c740f91","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:53.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1022397,"end_time":1022411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json b/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json index c98074bba..92958815d 100644 --- a/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json +++ b/self-host/session-data/sh.measure.sample/1.0/e75f76c8-c1bb-452a-81a9-1f9c193a61d1.json @@ -1 +1 @@ -[{"id":"16eb3bfa-5694-4da1-ab93-3c1ea9085f7b","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.21600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5210157,"end_time":5210174,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11639","content-type":"multipart/form-data; boundary=6dfe4c68-8662-4855-bfa9-2b793a5c1811","host":"10.0.2.2:8080","msr-req-id":"0530d43a-f7ab-42d1-8bbf-96e789a04b1a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:58 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1d91daeb-dedb-40d2-85ae-43e5d20ae955","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:50.13900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5204097,"utime":9,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1efdd6f9-c531-4e46-95b0-38480146484a","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.70500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5201479,"end_time":5201663,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"5232","content-type":"multipart/form-data; boundary=ad877c80-ce58-4aec-af87-d87510f3649a","host":"10.0.2.2:8080","msr-req-id":"9ba32a49-6884-4183-bb88-330089292b4f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:50 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3fc019d1-621a-4fb2-bdcf-aa2da9733327","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.13500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":464.98535,"y":692.937,"touch_down_time":5209943,"touch_up_time":5210069},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4ca1b5ae-dbf1-41fe-9c8d-13ce738b1620","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:51.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35673,"total_pss":52124,"rss":139500,"native_total_heap":22268,"native_free_heap":1039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d7e417a-c2b0-4a64-ae59-4deba5bc93a8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.69100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5d55d029-c8c0-4049-90cd-6ed40ed91bf0","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34505,"total_pss":53138,"rss":141208,"native_total_heap":22524,"native_free_heap":1299,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"68840f59-b4e6-4cf5-bcee-6b8c1da31c21","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:55.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34453,"total_pss":54383,"rss":141208,"native_total_heap":22524,"native_free_heap":1308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8d65ffbf-fb81-4563-86aa-c3a23a331802","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.22900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5210187,"utime":14,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b95a3ee3-3f51-42e4-81b4-28d4d539806e","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:49.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35761,"total_pss":52204,"rss":139492,"native_total_heap":22268,"native_free_heap":1056,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c31d6c94-f0bc-4af8-a53e-e21dfad79055","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5207098,"utime":10,"cutime":0,"cstime":0,"stime":13,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1490e0b-1b9b-488e-bfe2-defd3878a0e3","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.55900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5200891,"process_start_requested_uptime":5200621,"content_provider_attach_uptime":5201075,"on_next_draw_uptime":5201516,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ea1d5380-c64a-4455-8ada-548908a16c2e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file +[{"id":"16eb3bfa-5694-4da1-ab93-3c1ea9085f7b","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.21600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5210157,"end_time":5210174,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"11639","content-type":"multipart/form-data; boundary=6dfe4c68-8662-4855-bfa9-2b793a5c1811","host":"10.0.2.2:8080","msr-req-id":"0530d43a-f7ab-42d1-8bbf-96e789a04b1a","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:58 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1d91daeb-dedb-40d2-85ae-43e5d20ae955","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:50.13900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5204097,"utime":9,"cutime":0,"cstime":0,"stime":11,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"1efdd6f9-c531-4e46-95b0-38480146484a","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.70500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":5201479,"end_time":5201663,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"5232","content-type":"multipart/form-data; boundary=ad877c80-ce58-4aec-af87-d87510f3649a","host":"10.0.2.2:8080","msr-req-id":"9ba32a49-6884-4183-bb88-330089292b4f","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Mon, 29 Apr 2024 11:38:50 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"3fc019d1-621a-4fb2-bdcf-aa2da9733327","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.13500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":464.98535,"y":692.937,"touch_down_time":5209943,"touch_up_time":5210069},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4ca1b5ae-dbf1-41fe-9c8d-13ce738b1620","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:51.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35673,"total_pss":52124,"rss":139500,"native_total_heap":22268,"native_free_heap":1039,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"4d7e417a-c2b0-4a64-ae59-4deba5bc93a8","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.69100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"5d55d029-c8c0-4049-90cd-6ed40ed91bf0","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34505,"total_pss":53138,"rss":141208,"native_total_heap":22524,"native_free_heap":1299,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"68840f59-b4e6-4cf5-bcee-6b8c1da31c21","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:55.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":34453,"total_pss":54383,"rss":141208,"native_total_heap":22524,"native_free_heap":1308,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"8d65ffbf-fb81-4563-86aa-c3a23a331802","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:56.22900000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5210187,"utime":14,"cutime":0,"cstime":0,"stime":17,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"b95a3ee3-3f51-42e4-81b4-28d4d539806e","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:49.13900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":35761,"total_pss":52204,"rss":139492,"native_total_heap":22268,"native_free_heap":1056,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"c31d6c94-f0bc-4af8-a53e-e21dfad79055","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:53.14000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":520062,"uptime":5207098,"utime":10,"cutime":0,"cstime":0,"stime":13,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"e1490e0b-1b9b-488e-bfe2-defd3878a0e3","session_id":"9282323c-3c11-4415-bad3-802ea4acb9a1","timestamp":"2024-04-29T11:38:47.55900000Z","type":"cold_launch","cold_launch":{"process_start_uptime":5200891,"process_start_requested_uptime":5200621,"content_provider_attach_uptime":5201075,"on_next_draw_uptime":5201516,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}},{"id":"ea1d5380-c64a-4455-8ada-548908a16c2e","session_id":"9e44aa3a-3d67-4a56-8a76-a9fff7e2aae9","timestamp":"2024-04-29T11:38:58.71000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"network_type":"wifi","network_generation":"unknown","network_provider_name":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f577ccfe-277b-4ebf-8569-f1a98f0bd0bb"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json b/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json index 2476c04be..c9d4b58ec 100644 --- a/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json +++ b/self-host/session-data/sh.measure.sample/1.0/e822f6c2-cb1d-4e31-af3c-63693afba6ff.json @@ -1 +1 @@ -[{"id":"044f6811-23c4-48bb-ba0b-40c2b95d886b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3322,"total_pss":23453,"rss":78180,"native_total_heap":23036,"native_free_heap":2214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07d2f623-8d46-4443-91ee-0faae55e70a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1378,"total_pss":24715,"rss":75384,"native_total_heap":23292,"native_free_heap":1893,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0afc36f5-1edd-48a9-b19b-a56657047ba8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2438,"total_pss":24961,"rss":77056,"native_total_heap":23292,"native_free_heap":2110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2142bf80-e29c-454a-b199-b33b923ef757","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2386,"total_pss":25580,"rss":78192,"native_total_heap":23292,"native_free_heap":2099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2554c31c-2657-4e28-9144-676ac740bc38","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":466,"total_pss":25684,"rss":76792,"native_total_heap":23292,"native_free_heap":1757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"282f2835-76f6-46b8-b1ed-3f17f85bb5e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264934,"end_time":264945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29212164-90d1-47e8-9660-76d55621449c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.89900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294943,"end_time":294951,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3123ef64-de2e-4faf-907d-5a176fafc318","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274918,"end_time":274931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37232496-b07f-47a1-bc21-48bc1c062f71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2510,"total_pss":24605,"rss":76180,"native_total_heap":23292,"native_free_heap":2147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39fa3676-5b49-4cf1-98a6-f2be1deb5525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2238,"total_pss":22622,"rss":72788,"native_total_heap":23036,"native_free_heap":2012,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4216e425-0b26-4efd-8f7b-e4beb2b30cc0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304909,"end_time":304926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42d16d28-a5a9-461b-bfc8-602b68147e52","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":260675,"utime":77,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47416fc4-43e7-4816-8a27-8f6e7fa9a56d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.63200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2434,"total_pss":22612,"rss":72788,"native_total_heap":23036,"native_free_heap":2096,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54afe8be-7eef-47f2-95c2-3727d30f4a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3218,"total_pss":24069,"rss":78992,"native_total_heap":23036,"native_free_heap":2182,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a6dc4e7-b589-4454-8c35-f0f4fce64918","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2598,"total_pss":24554,"rss":76140,"native_total_heap":23292,"native_free_heap":2183,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ee8dfcf-a0f9-4d56-8e72-dcc50f7397cd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":290,"total_pss":25716,"rss":76956,"native_total_heap":23292,"native_free_heap":1684,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66244426-b45e-4ee3-a783-7f8c973c67a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:08.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":257673,"utime":77,"cutime":0,"cstime":0,"stime":95,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6800b0c9-77c6-4310-bb33-f2d5ba20a2e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":290672,"utime":99,"cutime":0,"cstime":0,"stime":123,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b81473-e103-4549-be3c-34a9bfa313e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284941,"end_time":284952,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6de5e570-72ee-4482-9c3b-5f7f4e7f63c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":272675,"utime":86,"cutime":0,"cstime":0,"stime":108,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77ee3745-4992-4787-84f4-40db731e725f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":302673,"utime":106,"cutime":0,"cstime":0,"stime":134,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7823f289-6ee0-49b1-85b4-547c90522543","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:27.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1450,"total_pss":24655,"rss":75384,"native_total_heap":23292,"native_free_heap":1924,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79d8b79b-a3a7-45d9-80f6-2b891e7a937d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":254,"total_pss":25751,"rss":76956,"native_total_heap":23292,"native_free_heap":1668,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"835d48a7-175f-4c84-be2d-ac8521b781c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:20.62400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":269676,"utime":84,"cutime":0,"cstime":0,"stime":108,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87bd04eb-4a69-4b36-83a1-265870297862","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":278673,"utime":90,"cutime":0,"cstime":0,"stime":115,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88ebdce6-3337-4061-8026-91c1613bbdf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264911,"end_time":264926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9003d593-922e-4794-ac27-61b4480c755e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284910,"end_time":284927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92a63902-436b-47e0-8daa-50b761d7f469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":394,"total_pss":25738,"rss":76956,"native_total_heap":23292,"native_free_heap":1720,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a8c874-7fb7-4fa6-bd04-eac94109156a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:14.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":263675,"utime":80,"cutime":0,"cstime":0,"stime":101,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a911c129-a22f-4205-9a0e-f989734626b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.62600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":266678,"utime":82,"cutime":0,"cstime":0,"stime":105,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9b927fa-132e-4d6b-b4d3-0584206e7701","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274940,"end_time":274948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec0c7f1-200a-47e2-aa35-ef9ad083cf3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":674,"total_pss":25874,"rss":79540,"native_total_heap":23036,"native_free_heap":1829,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1d271a7-afc4-484e-ae89-8753d2572b2e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":514,"total_pss":25977,"rss":79500,"native_total_heap":23036,"native_free_heap":1761,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b53e1242-fdaf-453a-898b-ad2537754e0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":602,"total_pss":25925,"rss":79540,"native_total_heap":23036,"native_free_heap":1793,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b548ca1b-762d-4437-b8d8-57b0bc8bb18f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":296675,"utime":103,"cutime":0,"cstime":0,"stime":130,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b62d1fa3-08ff-4005-ba4b-58785612d431","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2650,"total_pss":24642,"rss":76104,"native_total_heap":23292,"native_free_heap":2199,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8fb8fc8-e07a-4089-8c42-03188e3e6d5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2186,"total_pss":22646,"rss":72788,"native_total_heap":23036,"native_free_heap":1992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"baafe43d-b700-4b66-962d-4724a53eed53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2310,"total_pss":22598,"rss":72788,"native_total_heap":23036,"native_free_heap":2044,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb9506b8-fadb-40bf-9aa5-1d5d4ea44dbe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:26.62200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":275674,"utime":89,"cutime":0,"cstime":0,"stime":113,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be8fb032-3c8a-4713-81e6-93aea14b8d6d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:32.62700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":281679,"utime":92,"cutime":0,"cstime":0,"stime":116,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8ae03a-e316-48d5-baed-f49f80c6b6e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":284672,"utime":93,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd8d51e-800b-486e-9b7a-c0fdad1f0632","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:50.62300000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":299675,"utime":106,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8f4a686-d90c-43a3-8f45-59d9a495f7c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:19.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2398,"total_pss":22504,"rss":72788,"native_total_heap":23036,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0c70861-3a1b-4c69-9426-24a7791d8e1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1166,"total_pss":24776,"rss":75384,"native_total_heap":23292,"native_free_heap":1808,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d52579fd-a963-4178-ab08-a58aa2320311","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1326,"total_pss":24734,"rss":75384,"native_total_heap":23292,"native_free_heap":1877,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d991188a-4f71-4995-92ef-d8310189cc8b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294909,"end_time":294930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4debb78-ceb8-43f8-9ab1-5fc6619f80ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1238,"total_pss":24789,"rss":75384,"native_total_heap":23292,"native_free_heap":1840,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eed53a23-6b3f-4762-bcf2-083aaaa98658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:44.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":293673,"utime":101,"cutime":0,"cstime":0,"stime":125,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ae50f-f985-47b2-84f9-adf01fad645a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:38.62100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":13437,"uptime":287673,"utime":97,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37aee22-5e89-4afa-abd7-3e1a3ad8b071","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":182,"total_pss":25537,"rss":76552,"native_total_heap":23292,"native_free_heap":1632,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"044f6811-23c4-48bb-ba0b-40c2b95d886b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:13.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3322,"total_pss":23453,"rss":78180,"native_total_heap":23036,"native_free_heap":2214,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"07d2f623-8d46-4443-91ee-0faae55e70a0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1378,"total_pss":24715,"rss":75384,"native_total_heap":23292,"native_free_heap":1893,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0afc36f5-1edd-48a9-b19b-a56657047ba8","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2438,"total_pss":24961,"rss":77056,"native_total_heap":23292,"native_free_heap":2110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2142bf80-e29c-454a-b199-b33b923ef757","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2386,"total_pss":25580,"rss":78192,"native_total_heap":23292,"native_free_heap":2099,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2554c31c-2657-4e28-9144-676ac740bc38","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:37.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":466,"total_pss":25684,"rss":76792,"native_total_heap":23292,"native_free_heap":1757,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"282f2835-76f6-46b8-b1ed-3f17f85bb5e9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.89300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264934,"end_time":264945,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"29212164-90d1-47e8-9660-76d55621449c","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.89900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294943,"end_time":294951,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3123ef64-de2e-4faf-907d-5a176fafc318","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.87900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274918,"end_time":274931,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"37232496-b07f-47a1-bc21-48bc1c062f71","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:51.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2510,"total_pss":24605,"rss":76180,"native_total_heap":23292,"native_free_heap":2147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"39fa3676-5b49-4cf1-98a6-f2be1deb5525","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2238,"total_pss":22622,"rss":72788,"native_total_heap":23036,"native_free_heap":2012,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4216e425-0b26-4efd-8f7b-e4beb2b30cc0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:55.87400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":304909,"end_time":304926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"42d16d28-a5a9-461b-bfc8-602b68147e52","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":260675,"utime":77,"cutime":0,"cstime":0,"stime":98,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"47416fc4-43e7-4816-8a27-8f6e7fa9a56d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.63200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2434,"total_pss":22612,"rss":72788,"native_total_heap":23036,"native_free_heap":2096,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"54afe8be-7eef-47f2-95c2-3727d30f4a7f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":3218,"total_pss":24069,"rss":78992,"native_total_heap":23036,"native_free_heap":2182,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5a6dc4e7-b589-4454-8c35-f0f4fce64918","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:49.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2598,"total_pss":24554,"rss":76140,"native_total_heap":23292,"native_free_heap":2183,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"5ee8dfcf-a0f9-4d56-8e72-dcc50f7397cd","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":290,"total_pss":25716,"rss":76956,"native_total_heap":23292,"native_free_heap":1684,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"66244426-b45e-4ee3-a783-7f8c973c67a6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:08.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":257673,"utime":77,"cutime":0,"cstime":0,"stime":95,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6800b0c9-77c6-4310-bb33-f2d5ba20a2e0","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:41.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":290672,"utime":99,"cutime":0,"cstime":0,"stime":123,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"68b81473-e103-4549-be3c-34a9bfa313e4","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.90000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284941,"end_time":284952,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6de5e570-72ee-4482-9c3b-5f7f4e7f63c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:23.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":272675,"utime":86,"cutime":0,"cstime":0,"stime":108,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"77ee3745-4992-4787-84f4-40db731e725f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:53.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":302673,"utime":106,"cutime":0,"cstime":0,"stime":134,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7823f289-6ee0-49b1-85b4-547c90522543","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:27.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1450,"total_pss":24655,"rss":75384,"native_total_heap":23292,"native_free_heap":1924,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79d8b79b-a3a7-45d9-80f6-2b891e7a937d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:43.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":254,"total_pss":25751,"rss":76956,"native_total_heap":23292,"native_free_heap":1668,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"835d48a7-175f-4c84-be2d-ac8521b781c9","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:20.62400000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":269676,"utime":84,"cutime":0,"cstime":0,"stime":108,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"87bd04eb-4a69-4b36-83a1-265870297862","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:29.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":278673,"utime":90,"cutime":0,"cstime":0,"stime":115,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"88ebdce6-3337-4061-8026-91c1613bbdf5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:15.87300000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":264911,"end_time":264926,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"9003d593-922e-4794-ac27-61b4480c755e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.87500000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":284910,"end_time":284927,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"92a63902-436b-47e0-8daa-50b761d7f469","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:39.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":394,"total_pss":25738,"rss":76956,"native_total_heap":23292,"native_free_heap":1720,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96a8c874-7fb7-4fa6-bd04-eac94109156a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:14.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":263675,"utime":80,"cutime":0,"cstime":0,"stime":101,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a911c129-a22f-4205-9a0e-f989734626b5","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:17.62600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":266678,"utime":82,"cutime":0,"cstime":0,"stime":105,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a9b927fa-132e-4d6b-b4d3-0584206e7701","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.89600000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":274940,"end_time":274948,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aec0c7f1-200a-47e2-aa35-ef9ad083cf3f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:07.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":674,"total_pss":25874,"rss":79540,"native_total_heap":23036,"native_free_heap":1829,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b1d271a7-afc4-484e-ae89-8753d2572b2e","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:11.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":514,"total_pss":25977,"rss":79500,"native_total_heap":23036,"native_free_heap":1761,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b53e1242-fdaf-453a-898b-ad2537754e0a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:09.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6704,"java_free_heap":602,"total_pss":25925,"rss":79540,"native_total_heap":23036,"native_free_heap":1793,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b548ca1b-762d-4437-b8d8-57b0bc8bb18f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":296675,"utime":103,"cutime":0,"cstime":0,"stime":130,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b62d1fa3-08ff-4005-ba4b-58785612d431","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:47.63000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2650,"total_pss":24642,"rss":76104,"native_total_heap":23292,"native_free_heap":2199,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"b8fb8fc8-e07a-4089-8c42-03188e3e6d5f","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:25.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2186,"total_pss":22646,"rss":72788,"native_total_heap":23036,"native_free_heap":1992,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"baafe43d-b700-4b66-962d-4724a53eed53","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:21.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2310,"total_pss":22598,"rss":72788,"native_total_heap":23036,"native_free_heap":2044,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bb9506b8-fadb-40bf-9aa5-1d5d4ea44dbe","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:26.62200000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":275674,"utime":89,"cutime":0,"cstime":0,"stime":113,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"be8fb032-3c8a-4713-81e6-93aea14b8d6d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:32.62700000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":281679,"utime":92,"cutime":0,"cstime":0,"stime":116,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bf8ae03a-e316-48d5-baed-f49f80c6b6e6","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":284672,"utime":93,"cutime":0,"cstime":0,"stime":119,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bfd8d51e-800b-486e-9b7a-c0fdad1f0632","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:50.62300000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":299675,"utime":106,"cutime":0,"cstime":0,"stime":132,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8f4a686-d90c-43a3-8f45-59d9a495f7c1","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:19.62300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":2398,"total_pss":22504,"rss":72788,"native_total_heap":23036,"native_free_heap":2080,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d0c70861-3a1b-4c69-9426-24a7791d8e1d","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:35.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1166,"total_pss":24776,"rss":75384,"native_total_heap":23292,"native_free_heap":1808,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d52579fd-a963-4178-ab08-a58aa2320311","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:31.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1326,"total_pss":24734,"rss":75384,"native_total_heap":23292,"native_free_heap":1877,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d991188a-4f71-4995-92ef-d8310189cc8b","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.87800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":294909,"end_time":294930,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e4debb78-ceb8-43f8-9ab1-5fc6619f80ef","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:33.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":1238,"total_pss":24789,"rss":75384,"native_total_heap":23292,"native_free_heap":1840,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eed53a23-6b3f-4762-bcf2-083aaaa98658","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:44.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":293673,"utime":101,"cutime":0,"cstime":0,"stime":125,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f22ae50f-f985-47b2-84f9-adf01fad645a","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:38.62100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":13437,"uptime":287673,"utime":97,"cutime":0,"cstime":0,"stime":122,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f37aee22-5e89-4afa-abd7-3e1a3ad8b071","session_id":"802849cf-e02c-4491-8d66-a24870364e4d","timestamp":"2024-05-23T19:58:45.62200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":6708,"java_free_heap":182,"total_pss":25537,"rss":76552,"native_total_heap":23292,"native_free_heap":1632,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json b/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json index 69bacaeb6..2e0df4100 100644 --- a/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json +++ b/self-host/session-data/sh.measure.sample/1.0/f936f133-3581-4f2f-bd6d-670ef03b70b0.json @@ -1 +1 @@ -[{"id":"004b0389-e3c3-4c65-a86b-a80521a2c87a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.12700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"04e4a443-c6bb-4afd-87dc-29444c305727","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"050e178b-fee1-405a-97af-1a59d25f5632","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:40.63600000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"msr-ee\" prio=5 tid=22 Runnable\n at K2.p.e(SourceFile:1)\n at x2.y.d(SourceFile:157)\n at x2.y.c(SourceFile:2)\n at C2.b.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at B2.a.a(SourceFile:97)\n at C2.f.b(SourceFile:124)\n at z2.a.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at C2.a.a(SourceFile:171)\n at C2.f.b(SourceFile:124)\n at C2.g.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at Z2.f.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at J2.b.a(SourceFile:513)\n at C2.f.b(SourceFile:124)\n at U2.q.a(SourceFile:32)\n at C2.f.b(SourceFile:124)\n at B2.j.g(SourceFile:97)\n at B2.j.e(SourceFile:42)\n at U2.n.a(SourceFile:432)\n at U2.g.run(SourceFile:44)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:463)\n at java.util.concurrent.FutureTask.run(FutureTask.java:264)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at androidx.activity.d.run(SourceFile:35)\n - waiting to lock \u003c0x0c91569a\u003e (a java.lang.Object) held by thread 27\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"perfetto_hprof_listener\" prio=10 tid=4 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=5 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=18 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=19 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Okio Watchdog\" daemon prio=5 tid=21 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at F2.d.d(SourceFile:64)\n at K2.b.run(SourceFile:8)\n\n\"hwuiTask1\" daemon prio=6 tid=23 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"x2.A TaskRunner\" daemon prio=5 tid=25 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x099e4266\u003e (a A2.f)\n at A2.f.c(SourceFile:175)\n at A2.e.run(SourceFile:4)\n - locked \u003c0x099e4266\u003e (a A2.f)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"APP: Locker\" prio=5 tid=27 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at d3.l.run(SourceFile:11)\n - locked \u003c0x0c91569a\u003e (a java.lang.Object)\n\n\"Thread-3\" prio=10 tid=3 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 000000000005f868 /apex/com.android.runtime/lib64/bionic/libc.so (sem_wait+108) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 0000000000001a68 /data/app/~~uZvFgqbP6TTH_8urrT3qkg==/sh.measure.sample-pq4zBuoHJGkFAtdQKvWBjQ==/lib/arm64/libmeasure-ndk.so (???) (BuildId: 771b5405e3fafa88592fb3ab23027ba272fab25e)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 20679 -----\n","process_name":"sh.measure.sample","pid":"20679"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e190efc-6b52-4579-b47a-0b409e3a431a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1192ccb0-73a1-4f6a-aded-0db6c1f694f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2941507,"utime":28,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1592579d-2567-4a65-b942-c4a07340af66","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184017,"total_pss":32476,"rss":129632,"native_total_heap":16996,"native_free_heap":1147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b00da30-9c11-481b-9a18-f11271a845fd","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.07100000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f4cfa48-8a5e-431a-9ae4-f9fbd6f1d296","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227e6bee-dcc0-4aa9-9e58-0cd00d311854","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22d8f4b7-ed9e-4756-8194-c7ca5950c884","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.97000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bb7dcc-480f-4f01-8292-172fc1dfad86","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16500000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bfa3dd-4ca8-4b3c-a529-92a3c2129776","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.11000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":730.96436,"y":1730.9198,"touch_down_time":2934739,"touch_up_time":2934891},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f5dd72-33c0-452f-9389-94d96e81b406","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.55200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4617a449-d25a-421d-94ee-cd864dc007ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":125.96924,"y":419.9762,"touch_down_time":2935847,"touch_up_time":2935941},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50dd2a6e-fd89-4cbd-a155-f76dca1feac8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.15100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"594a6693-7353-47ac-8691-f66ea41df793","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3459,"total_pss":53645,"rss":140784,"native_total_heap":25016,"native_free_heap":1858,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dbfb483-d7eb-4842-b540-cc0222edc5e3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:49.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30753,"total_pss":58235,"rss":150468,"native_total_heap":24504,"native_free_heap":1083,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7070d524-fb56-492c-b0d1-1773bb036720","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.14800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"735d5da4-23bc-4a3d-92c4-7be2f53fa1f1","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.58100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2932996,"process_start_requested_uptime":2932897,"content_provider_attach_uptime":2933047,"on_next_draw_uptime":2933360,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"787520b0-e84b-447c-87b1-31200ee84958","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.01900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79a41b42-c5c5-443f-bc5d-b32d29aae2aa","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.29500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a9ecd53-37ac-495a-9a47-02e99eaf3a73","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2938506,"utime":21,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8146c76a-abee-4e19-8948-a42744985be0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.96100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b8a50c8-0f1b-4234-a8d4-393f072698a6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28100000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2933061,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94403699-701d-4fba-a0db-325e6e15f19f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.77100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1722e60-9409-4d73-88f5-33668051f0da","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.18000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae6bd79e-565d-415b-906a-af0291cf9592","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.85600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2938507,"on_next_draw_uptime":2938636,"launched_activity":"sh.measure.sample.ComposeNavigationActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc14c963-e8ff-4b87-9a1b-d42f658fc673","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bca3c6b4-0d72-45be-a437-e2fc0ce04f4c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31597,"total_pss":57503,"rss":149460,"native_total_heap":24504,"native_free_heap":1278,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c62917ae-43cd-4d0e-ac5d-687e95ae3b51","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.95400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":602.95166,"y":1432.8918,"touch_down_time":2943644,"touch_up_time":2943734},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c65901d1-5124-4d63-96ad-6c42681e8b7d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31765,"total_pss":57132,"rss":148476,"native_total_heap":24504,"native_free_heap":1201,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc9d89a0-d3e0-4f90-a26e-d1e4fc7e73c3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31481,"total_pss":57522,"rss":149260,"native_total_heap":24504,"native_free_heap":1261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce83b7c2-cf52-418f-82e3-3952a752b8a8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.05400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d134c47d-6cfa-4574-8fc1-290fad029db0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.05300000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2943811,"end_time":2944834,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:15:52 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dab97ddd-9752-44e2-84a5-5b15788771ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.97600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ca87e1-3867-43d3-88f8-2456424c8909","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.63800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2933179,"end_time":2933419,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"1704","content-type":"multipart/form-data; boundary=1aef0466-47e1-4851-9325-5b391bd08f3e","host":"10.0.2.2:8080","msr-req-id":"a3bfa946-2188-4819-bedd-97c963c47e68","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:41 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e63b6174-6c09-44e7-b0fb-4d5b8dc079d4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2944507,"utime":36,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6d7d23d-e811-41d7-b0a4-6a610608557b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e972dfac-410b-4cc3-851c-8d714f8151bf","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32318,"total_pss":56535,"rss":148032,"native_total_heap":23992,"native_free_heap":1045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaf4eb88-b070-4ec0-a663-950e3735ce12","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.54700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f26a76c6-2831-47aa-af88-18b764b112c7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.08100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bd500d-b5d3-4a3c-9095-79de67564a9c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50f79b5-0e73-48a0-bc8c-4b6085776f78","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.28000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2936060,"utime":16,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f68f3795-3bc9-49a3-8576-5fe3c478b7db","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"004b0389-e3c3-4c65-a86b-a80521a2c87a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.12700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"04e4a443-c6bb-4afd-87dc-29444c305727","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"050e178b-fee1-405a-97af-1a59d25f5632","session_id":"cfcabb5f-11f2-4264-9d8e-b0fa2a7f5468","timestamp":"2024-05-24T08:15:40.63600000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (27):\n\"msr-ee\" prio=5 tid=22 Runnable\n at K2.p.e(SourceFile:1)\n at x2.y.d(SourceFile:157)\n at x2.y.c(SourceFile:2)\n at C2.b.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at B2.a.a(SourceFile:97)\n at C2.f.b(SourceFile:124)\n at z2.a.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at C2.a.a(SourceFile:171)\n at C2.f.b(SourceFile:124)\n at C2.g.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at Z2.f.a(SourceFile:145)\n at C2.f.b(SourceFile:124)\n at J2.b.a(SourceFile:513)\n at C2.f.b(SourceFile:124)\n at U2.q.a(SourceFile:32)\n at C2.f.b(SourceFile:124)\n at B2.j.g(SourceFile:97)\n at B2.j.e(SourceFile:42)\n at U2.n.a(SourceFile:432)\n at U2.g.run(SourceFile:44)\n at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:463)\n at java.util.concurrent.FutureTask.run(FutureTask.java:264)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"main\" prio=5 tid=1 Blocked\n at androidx.activity.d.run(SourceFile:35)\n - waiting to lock \u003c0x0c91569a\u003e (a java.lang.Object) held by thread 27\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"perfetto_hprof_listener\" prio=10 tid=4 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=5 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000047cb18 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 00000000006199e4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #06 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x0760fbcb\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x0b053fa8\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)\n - locked \u003c0x0e917ac1\u003e (a java.lang.Daemons$FinalizerWatchdogDaemon)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=14 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 0000000000543774 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+372) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-cmu\" prio=5 tid=15 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=17 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"msr-ep\" prio=5 tid=18 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-eh\" prio=5 tid=19 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-bg\" prio=5 tid=20 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Okio Watchdog\" daemon prio=5 tid=21 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at F2.d.d(SourceFile:64)\n at K2.b.run(SourceFile:8)\n\n\"hwuiTask1\" daemon prio=6 tid=23 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=24 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"x2.A TaskRunner\" daemon prio=5 tid=25 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x099e4266\u003e (a A2.f)\n at A2.f.c(SourceFile:175)\n at A2.e.run(SourceFile:4)\n - locked \u003c0x099e4266\u003e (a A2.f)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:20679_4\" prio=5 tid=26 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"APP: Locker\" prio=5 tid=27 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x018189a7\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at d3.l.run(SourceFile:11)\n - locked \u003c0x0c91569a\u003e (a java.lang.Object)\n\n\"Thread-3\" prio=10 tid=3 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 000000000005f868 /apex/com.android.runtime/lib64/bionic/libc.so (sem_wait+108) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 0000000000001a68 /data/app/~~uZvFgqbP6TTH_8urrT3qkg==/sh.measure.sample-pq4zBuoHJGkFAtdQKvWBjQ==/lib/arm64/libmeasure-ndk.so (???) (BuildId: 771b5405e3fafa88592fb3ab23027ba272fab25e)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:20679_4\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 20679 -----\n","process_name":"sh.measure.sample","pid":"20679"},"attachments":null,"attribute":{"thread_name":"msr-bg","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0e190efc-6b52-4579-b47a-0b409e3a431a","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72200000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1192ccb0-73a1-4f6a-aded-0db6c1f694f3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.72600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2941507,"utime":28,"cutime":0,"cstime":0,"stime":30,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1592579d-2567-4a65-b942-c4a07340af66","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":184017,"total_pss":32476,"rss":129632,"native_total_heap":16996,"native_free_heap":1147,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1b00da30-9c11-481b-9a18-f11271a845fd","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.07100000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1f4cfa48-8a5e-431a-9ae4-f9fbd6f1d296","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54800000Z","type":"lifecycle_app","lifecycle_app":{"type":"background"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"227e6bee-dcc0-4aa9-9e58-0cd00d311854","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.54600000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"22d8f4b7-ed9e-4756-8194-c7ca5950c884","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.97000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bb7dcc-480f-4f01-8292-172fc1dfad86","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16500000Z","type":"navigation","navigation":{"to":"profile"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"30bfa3dd-4ca8-4b3c-a529-92a3c2129776","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.11000000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":730.96436,"y":1730.9198,"touch_down_time":2934739,"touch_up_time":2934891},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"31f5dd72-33c0-452f-9389-94d96e81b406","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.55200000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4617a449-d25a-421d-94ee-cd864dc007ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.16700000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":125.96924,"y":419.9762,"touch_down_time":2935847,"touch_up_time":2935941},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"50dd2a6e-fd89-4cbd-a155-f76dca1feac8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.15100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"594a6693-7353-47ac-8691-f66ea41df793","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8748,"java_free_heap":3459,"total_pss":53645,"rss":140784,"native_total_heap":25016,"native_free_heap":1858,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"6dbfb483-d7eb-4842-b540-cc0222edc5e3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:49.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":30753,"total_pss":58235,"rss":150468,"native_total_heap":24504,"native_free_heap":1083,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7070d524-fb56-492c-b0d1-1773bb036720","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.14800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"735d5da4-23bc-4a3d-92c4-7be2f53fa1f1","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.58100000Z","type":"cold_launch","cold_launch":{"process_start_uptime":2932996,"process_start_requested_uptime":2932897,"content_provider_attach_uptime":2933047,"on_next_draw_uptime":2933360,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"787520b0-e84b-447c-87b1-31200ee84958","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.01900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"79a41b42-c5c5-443f-bc5d-b32d29aae2aa","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.29500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7a9ecd53-37ac-495a-9a47-02e99eaf3a73","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2938506,"utime":21,"cutime":0,"cstime":0,"stime":21,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8146c76a-abee-4e19-8948-a42744985be0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.96100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8b8a50c8-0f1b-4234-a8d4-393f072698a6","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.28100000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2933061,"utime":1,"cutime":0,"cstime":0,"stime":3,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"94403699-701d-4fba-a0db-325e6e15f19f","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.77100000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a1722e60-9409-4d73-88f5-33668051f0da","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.18000000Z","type":"navigation","navigation":{"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ae6bd79e-565d-415b-906a-af0291cf9592","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.85600000Z","type":"hot_launch","hot_launch":{"app_visible_uptime":2938507,"on_next_draw_uptime":2938636,"launched_activity":"sh.measure.sample.ComposeNavigationActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc14c963-e8ff-4b87-9a1b-d42f658fc673","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34000000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bca3c6b4-0d72-45be-a437-e2fc0ce04f4c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31597,"total_pss":57503,"rss":149460,"native_total_heap":24504,"native_free_heap":1278,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c62917ae-43cd-4d0e-ac5d-687e95ae3b51","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.95400000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_okhttp","width":262,"height":132,"x":602.95166,"y":1432.8918,"touch_down_time":2943644,"touch_up_time":2943734},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c65901d1-5124-4d63-96ad-6c42681e8b7d","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:44.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31765,"total_pss":57132,"rss":148476,"native_total_heap":24504,"native_free_heap":1201,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"cc9d89a0-d3e0-4f90-a26e-d1e4fc7e73c3","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:47.72700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":31481,"total_pss":57522,"rss":149260,"native_total_heap":24504,"native_free_heap":1261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ce83b7c2-cf52-418f-82e3-3952a752b8a8","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.05400000Z","type":"trim_memory","trim_memory":{"level":"TRIM_MEMORY_UI_HIDDEN"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d134c47d-6cfa-4574-8fc1-290fad029db0","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.05300000Z","type":"http","http":{"url":"https://httpbin.org/","method":"get","status_code":200,"start_time":2943811,"end_time":2944834,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","connection":"Keep-Alive","host":"httpbin.org","user-agent":"okhttp/4.12.0"},"response_headers":{"access-control-allow-credentials":"true","access-control-allow-origin":"*","content-length":"9593","content-type":"text/html; charset=utf-8","date":"Fri, 24 May 2024 08:15:52 GMT","server":"gunicorn/19.9.0"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"OkHttp https://httpbin.org/...","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"dab97ddd-9752-44e2-84a5-5b15788771ea","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:50.97600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e3ca87e1-3867-43d3-88f8-2456424c8909","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.63800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":202,"start_time":2933179,"end_time":2933419,"failure_reason":null,"failure_description":null,"request_headers":{"accept-encoding":"gzip","authorization":"Bearer msrsh_9d70ac1bd13db099b8c712bfb88c1891bd1bd3c023d39951ca9be1cff731e0b6_66d3cfb6","connection":"Keep-Alive","content-length":"1704","content-type":"multipart/form-data; boundary=1aef0466-47e1-4851-9325-5b391bd08f3e","host":"10.0.2.2:8080","msr-req-id":"a3bfa946-2188-4819-bedd-97c963c47e68","user-agent":"okhttp/4.12.0"},"response_headers":{"content-length":"17","content-type":"application/json; charset=utf-8","date":"Fri, 24 May 2024 08:15:41 GMT"},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e63b6174-6c09-44e7-b0fb-4d5b8dc079d4","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.72600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2944507,"utime":36,"cutime":0,"cstime":0,"stime":37,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e6d7d23d-e811-41d7-b0a4-6a610608557b","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:51.03100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e972dfac-410b-4cc3-851c-8d714f8151bf","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:42.27900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32318,"total_pss":56535,"rss":148032,"native_total_heap":23992,"native_free_heap":1045,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eaf4eb88-b070-4ec0-a663-950e3735ce12","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:48.54700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f26a76c6-2831-47aa-af88-18b764b112c7","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:52.08100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.OkHttpActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4bd500d-b5d3-4a3c-9095-79de67564a9c","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:45.72800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f50f79b5-0e73-48a0-bc8c-4b6085776f78","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:43.28000000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":293292,"uptime":2936060,"utime":16,"cutime":0,"cstime":0,"stime":18,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f68f3795-3bc9-49a3-8576-5fe3c478b7db","session_id":"1b151844-71c9-4ab9-955d-fecd1c535efe","timestamp":"2024-05-24T08:15:40.34600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"d9731194-11d5-4c39-9927-da33c18990d6","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json b/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json index 2ceac11f3..4dd659413 100644 --- a/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json +++ b/self-host/session-data/sh.measure.sample/1.0/fa8f3249-669d-441a-8eed-d7c19fc16cfd.json @@ -1 +1 @@ -[{"id":"03e7b12a-cf90-449e-82ce-80eb72717abd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":147,"total_pss":36383,"rss":108580,"native_total_heap":25784,"native_free_heap":2707,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0600f378-a7b2-4d27-b608-2386fcbcd488","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3466,"total_pss":33008,"rss":105896,"native_total_heap":25784,"native_free_heap":3345,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"087e48f9-efb6-494f-838e-9510cd18a245","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1002228,"utime":339,"cutime":0,"cstime":0,"stime":383,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b833aa1-4b74-487a-963c-77238b9e3460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":978227,"utime":326,"cutime":0,"cstime":0,"stime":368,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0dd1b1f2-f923-486a-a938-41d60ec9e736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3378,"total_pss":33060,"rss":105896,"native_total_heap":25784,"native_free_heap":3313,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1828cab3-59e0-4755-8bd3-0a61bf4d24e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012398,"end_time":1012411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e340e46-68e9-44f7-ae48-be1bea0d0bc2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:18.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":987228,"utime":331,"cutime":0,"cstime":0,"stime":374,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21117a22-c6cd-48b9-8c57-5c1dd8cc5386","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32835,"rss":105052,"native_total_heap":25784,"native_free_heap":3412,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24aaf589-af76-4c32-a07b-2d0f106e647e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":33969,"rss":106732,"native_total_heap":25784,"native_free_heap":3089,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cc795cd-0f58-42f1-809b-975e6a777a0c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:42.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1011228,"utime":346,"cutime":0,"cstime":0,"stime":388,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35b9034d-b735-4ebf-80c8-2064961d35c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2111,"total_pss":34693,"rss":106860,"native_total_heap":25784,"native_free_heap":3049,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38c657c1-43b0-4f85-9439-d40edd46b750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:30.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":999227,"utime":337,"cutime":0,"cstime":0,"stime":382,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a1ade52-9d45-432d-9a89-2fbec53cb3d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972397,"end_time":972410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4090f269-ad89-477d-9a30-b100d7e6d960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:36.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1005227,"utime":343,"cutime":0,"cstime":0,"stime":385,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"415fae18-4a68-40a1-a953-769ffc94a81b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992397,"end_time":992412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"437ef994-eb9f-4e11-9386-a79953102c69","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":33134,"rss":105896,"native_total_heap":25784,"native_free_heap":3261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527731ba-59d5-445e-ae2f-1c7044025514","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":34542,"rss":107492,"native_total_heap":25784,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c6cba9-1a51-421b-9be8-ce4dcf782460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1323,"total_pss":35430,"rss":107556,"native_total_heap":25784,"native_free_heap":2965,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771ecb1f-30f3-453a-9bd8-bf473da9a0a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2322,"total_pss":33949,"rss":106520,"native_total_heap":25784,"native_free_heap":3110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d2b2e48-dffe-4ea7-bc6e-e53c6b9cc9f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:48.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1017227,"utime":351,"cutime":0,"cstime":0,"stime":392,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95dd8d-0d85-4d32-b377-bf2b253a5235","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1020228,"utime":351,"cutime":0,"cstime":0,"stime":393,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"809d57c8-1b0e-49d4-b5da-dfcfe24f847a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":984227,"utime":329,"cutime":0,"cstime":0,"stime":372,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81527836-87dd-4d28-a217-03282dd52373","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1199,"total_pss":35506,"rss":107768,"native_total_heap":25784,"native_free_heap":2913,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86761167-fd11-47ff-b216-c9f1da59831d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":33893,"rss":106520,"native_total_heap":25784,"native_free_heap":3142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d77a68d-aefa-4837-80e1-79a3c3f39fd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":375,"total_pss":36254,"rss":108388,"native_total_heap":25784,"native_free_heap":2796,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f91a3fa-7e89-4952-97de-76219931aa99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1014228,"utime":349,"cutime":0,"cstime":0,"stime":390,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95742f93-babf-4031-8f89-e6e32b02327f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002424,"end_time":1002435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96881eb2-7250-4e91-a674-413312d1afe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1411,"total_pss":35378,"rss":107556,"native_total_heap":25784,"native_free_heap":2997,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"98da78ed-4325-49c0-9477-c19623bb8765","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1251,"total_pss":35482,"rss":107556,"native_total_heap":25784,"native_free_heap":2929,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a265af96-9434-4b7e-964f-c8fe51564181","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:12.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":981228,"utime":327,"cutime":0,"cstime":0,"stime":371,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a33b5708-fdd5-43ca-884a-e7084c6af268","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":990227,"utime":332,"cutime":0,"cstime":0,"stime":375,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6ede295-76a7-48ee-b5e2-fb8c2d6b1503","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982399,"end_time":982412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7a7bb5b-f37f-41b3-8b4a-2ede4637246d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:17.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":323,"total_pss":36290,"rss":108388,"native_total_heap":25784,"native_free_heap":2775,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa038917-a792-4ae6-9a7d-679fa961946f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1446,"total_pss":34705,"rss":107492,"native_total_heap":25784,"native_free_heap":2968,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab77a95a-a020-4afb-9916-f355110c2c04","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":33841,"rss":106520,"native_total_heap":25784,"native_free_heap":3178,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc0c55a7-d1c9-4cfe-8c8f-40dbbb2a9564","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1008227,"utime":344,"cutime":0,"cstime":0,"stime":387,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc1c933b-465c-4569-b6fb-c9b8d5b91833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1111,"total_pss":35558,"rss":107768,"native_total_heap":25784,"native_free_heap":2881,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bec1dcfc-39c3-45eb-b70f-b16166909a90","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":33082,"rss":105896,"native_total_heap":25784,"native_free_heap":3293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8d3412f-8aec-48d5-bfc9-47c43b341bc5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:24.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":993228,"utime":336,"cutime":0,"cstime":0,"stime":377,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccfbcbe0-e7e6-4b7d-81b3-02988be6be8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:06.17600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":975228,"utime":325,"cutime":0,"cstime":0,"stime":367,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55958f9-2dc5-4190-98c8-2c62929d09ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3182,"total_pss":33186,"rss":105896,"native_total_heap":25784,"native_free_heap":3225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d65ba0cd-72f0-4145-8e62-1b9f7735862d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982417,"end_time":982426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9132edf-8ff8-41c1-b71c-aed31220e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":34025,"rss":106732,"native_total_heap":25784,"native_free_heap":3058,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"db35a27e-0650-4a45-9e2f-efe89b56a5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002399,"end_time":1002416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de326c1a-1b19-4ad2-a193-43b4ea0e781b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012418,"end_time":1012423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1857895-882b-4678-8aeb-41290b2b6f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":251,"total_pss":36342,"rss":108632,"native_total_heap":25784,"native_free_heap":2743,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4f07da-587d-4720-a467-1222469c090f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":34492,"rss":107492,"native_total_heap":25784,"native_free_heap":2952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb986b05-7d8c-46cb-ba4a-9584e24892c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972415,"end_time":972420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4f6275b-c3a4-47da-abb5-8fa3bba7283c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":49174,"uptime":996227,"utime":337,"cutime":0,"cstime":0,"stime":378,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe6514d4-3a9f-46b8-b591-46f5166228a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992418,"end_time":992422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file +[{"id":"03e7b12a-cf90-449e-82ce-80eb72717abd","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":147,"total_pss":36383,"rss":108580,"native_total_heap":25784,"native_free_heap":2707,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0600f378-a7b2-4d27-b608-2386fcbcd488","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:25.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3466,"total_pss":33008,"rss":105896,"native_total_heap":25784,"native_free_heap":3345,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"087e48f9-efb6-494f-838e-9510cd18a245","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1002228,"utime":339,"cutime":0,"cstime":0,"stime":383,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0b833aa1-4b74-487a-963c-77238b9e3460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":978227,"utime":326,"cutime":0,"cstime":0,"stime":368,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"0dd1b1f2-f923-486a-a938-41d60ec9e736","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3378,"total_pss":33060,"rss":105896,"native_total_heap":25784,"native_free_heap":3313,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1828cab3-59e0-4755-8bd3-0a61bf4d24e1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.35900000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012398,"end_time":1012411,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"1e340e46-68e9-44f7-ae48-be1bea0d0bc2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:18.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":987228,"utime":331,"cutime":0,"cstime":0,"stime":374,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"21117a22-c6cd-48b9-8c57-5c1dd8cc5386","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":4250,"total_pss":32835,"rss":105052,"native_total_heap":25784,"native_free_heap":3412,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"24aaf589-af76-4c32-a07b-2d0f106e647e","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:41.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2270,"total_pss":33969,"rss":106732,"native_total_heap":25784,"native_free_heap":3089,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"2cc795cd-0f58-42f1-809b-975e6a777a0c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:42.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1011228,"utime":346,"cutime":0,"cstime":0,"stime":388,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"35b9034d-b735-4ebf-80c8-2064961d35c7","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":2111,"total_pss":34693,"rss":106860,"native_total_heap":25784,"native_free_heap":3049,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"38c657c1-43b0-4f85-9439-d40edd46b750","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:30.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":999227,"utime":337,"cutime":0,"cstime":0,"stime":382,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"3a1ade52-9d45-432d-9a89-2fbec53cb3d3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.35800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972397,"end_time":972410,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"4090f269-ad89-477d-9a30-b100d7e6d960","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:36.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1005227,"utime":343,"cutime":0,"cstime":0,"stime":385,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"415fae18-4a68-40a1-a953-769ffc94a81b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992397,"end_time":992412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"437ef994-eb9f-4e11-9386-a79953102c69","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:31.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3254,"total_pss":33134,"rss":105896,"native_total_heap":25784,"native_free_heap":3261,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"527731ba-59d5-445e-ae2f-1c7044025514","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:49.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1338,"total_pss":34542,"rss":107492,"native_total_heap":25784,"native_free_heap":2915,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"73c6cba9-1a51-421b-9be8-ce4dcf782460","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:07.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1323,"total_pss":35430,"rss":107556,"native_total_heap":25784,"native_free_heap":2965,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"771ecb1f-30f3-453a-9bd8-bf473da9a0a3","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2322,"total_pss":33949,"rss":106520,"native_total_heap":25784,"native_free_heap":3110,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d2b2e48-dffe-4ea7-bc6e-e53c6b9cc9f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:48.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1017227,"utime":351,"cutime":0,"cstime":0,"stime":392,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"7d95dd8d-0d85-4d32-b377-bf2b253a5235","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:51.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1020228,"utime":351,"cutime":0,"cstime":0,"stime":393,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"809d57c8-1b0e-49d4-b5da-dfcfe24f847a","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":984227,"utime":329,"cutime":0,"cstime":0,"stime":372,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"81527836-87dd-4d28-a217-03282dd52373","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:11.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1199,"total_pss":35506,"rss":107768,"native_total_heap":25784,"native_free_heap":2913,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"86761167-fd11-47ff-b216-c9f1da59831d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:37.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2394,"total_pss":33893,"rss":106520,"native_total_heap":25784,"native_free_heap":3142,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8d77a68d-aefa-4837-80e1-79a3c3f39fd2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:15.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":375,"total_pss":36254,"rss":108388,"native_total_heap":25784,"native_free_heap":2796,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"8f91a3fa-7e89-4952-97de-76219931aa99","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1014228,"utime":349,"cutime":0,"cstime":0,"stime":390,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"95742f93-babf-4031-8f89-e6e32b02327f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.38200000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002424,"end_time":1002435,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"96881eb2-7250-4e91-a674-413312d1afe8","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:05.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1411,"total_pss":35378,"rss":107556,"native_total_heap":25784,"native_free_heap":2997,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"98da78ed-4325-49c0-9477-c19623bb8765","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:09.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1251,"total_pss":35482,"rss":107556,"native_total_heap":25784,"native_free_heap":2929,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a265af96-9434-4b7e-964f-c8fe51564181","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:12.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":981228,"utime":327,"cutime":0,"cstime":0,"stime":371,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a33b5708-fdd5-43ca-884a-e7084c6af268","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:21.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":990227,"utime":332,"cutime":0,"cstime":0,"stime":375,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a6ede295-76a7-48ee-b5e2-fb8c2d6b1503","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.36000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982399,"end_time":982412,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"a7a7bb5b-f37f-41b3-8b4a-2ede4637246d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:17.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":323,"total_pss":36290,"rss":108388,"native_total_heap":25784,"native_free_heap":2775,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"aa038917-a792-4ae6-9a7d-679fa961946f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:45.18000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1446,"total_pss":34705,"rss":107492,"native_total_heap":25784,"native_free_heap":2968,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ab77a95a-a020-4afb-9916-f355110c2c04","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:35.17400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2482,"total_pss":33841,"rss":106520,"native_total_heap":25784,"native_free_heap":3178,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc0c55a7-d1c9-4cfe-8c8f-40dbbb2a9564","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:39.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":1008227,"utime":344,"cutime":0,"cstime":0,"stime":387,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bc1c933b-465c-4569-b6fb-c9b8d5b91833","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":1111,"total_pss":35558,"rss":107768,"native_total_heap":25784,"native_free_heap":2881,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"bec1dcfc-39c3-45eb-b70f-b16166909a90","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:29.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3342,"total_pss":33082,"rss":105896,"native_total_heap":25784,"native_free_heap":3293,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"c8d3412f-8aec-48d5-bfc9-47c43b341bc5","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:24.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":993228,"utime":336,"cutime":0,"cstime":0,"stime":377,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"ccfbcbe0-e7e6-4b7d-81b3-02988be6be8c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:06.17600000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":975228,"utime":325,"cutime":0,"cstime":0,"stime":367,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d55958f9-2dc5-4190-98c8-2c62929d09ab","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.17900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":3182,"total_pss":33186,"rss":105896,"native_total_heap":25784,"native_free_heap":3225,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d65ba0cd-72f0-4145-8e62-1b9f7735862d","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:13.37400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":982417,"end_time":982426,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"d9132edf-8ff8-41c1-b71c-aed31220e972","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":2182,"total_pss":34025,"rss":106732,"native_total_heap":25784,"native_free_heap":3058,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"db35a27e-0650-4a45-9e2f-efe89b56a5f1","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:33.36400000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1002399,"end_time":1002416,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"de326c1a-1b19-4ad2-a193-43b4ea0e781b","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:43.37100000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":1012418,"end_time":1012423,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"e1857895-882b-4678-8aeb-41290b2b6f42","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:19.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8561,"java_free_heap":251,"total_pss":36342,"rss":108632,"native_total_heap":25784,"native_free_heap":2743,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb4f07da-587d-4720-a467-1222469c090f","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:47.17500000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":8564,"java_free_heap":1410,"total_pss":34492,"rss":107492,"native_total_heap":25784,"native_free_heap":2952,"interval":2000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"eb986b05-7d8c-46cb-ba4a-9584e24892c2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:03.36800000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":972415,"end_time":972420,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"f4f6275b-c3a4-47da-abb5-8fa3bba7283c","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:27.17500000Z","type":"cpu_usage","cpu_usage":{"percentage_usage":30, "num_cores":1,"clock_speed":100,"start_time":49174,"uptime":996227,"utime":337,"cutime":0,"cstime":0,"stime":378,"interval":3000},"attachments":null,"attribute":{"thread_name":"msr-cmu","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}},{"id":"fe6514d4-3a9f-46b8-b591-46f5166228a2","session_id":"2ad181a8-4c05-4b96-88db-f440a24d9659","timestamp":"2024-05-23T20:10:23.37000000Z","type":"http","http":{"url":"http://10.0.2.2:8080/events","method":"put","status_code":null,"start_time":992418,"end_time":992422,"failure_reason":"java.net.ConnectException","failure_description":"Failed to connect to /10.0.2.2:8080","request_headers":{},"response_headers":{},"request_body":null,"response_body":null,"client":"okhttp"},"attachments":null,"attribute":{"thread_name":"msr-ee","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.1.0","installation_id":"f8ce8c0b-ae72-44be-ad13-9feff7365aae","network_type":"wifi","network_generation":"unknown","network_provider_name":null}}] \ No newline at end of file From 990570d6d2d81addeb38adfdbb97e9c8ca2d2224 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 11:06:17 +0530 Subject: [PATCH 08/14] fix(backend): allow zero interval as it's valid value for first event --- measure-backend/measure-go/event/event.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/measure-backend/measure-go/event/event.go b/measure-backend/measure-go/event/event.go index be611e97a..a8468f8f5 100644 --- a/measure-backend/measure-go/event/event.go +++ b/measure-backend/measure-go/event/event.go @@ -851,12 +851,6 @@ func (e *EventField) Validate() error { } } - if e.IsMemoryUsage() { - if e.MemoryUsage.Interval <= 0 { - return fmt.Errorf(`%q must be greater than 0`, `memory_usage.interval`) - } - } - if e.IsTrimMemory() { if e.TrimMemory.Level == "" { return fmt.Errorf(`%q must not be empty`, `trim_memory.level`) @@ -873,9 +867,6 @@ func (e *EventField) Validate() error { if e.CPUUsage.ClockSpeed <= 0 { return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.clock_speed`) } - if e.CPUUsage.Interval <= 0 { - return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.interval`) - } if e.CPUUsage.PercentageUsage <= 0 { return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.percentage_usage`) } From 163057e8b46c0e0b9afd3c67f6a0a96d90d0123c Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 11:16:34 +0530 Subject: [PATCH 09/14] fix(backend): update app.go with new percwentage_usage field --- measure-backend/measure-go/measure/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/measure-backend/measure-go/measure/app.go b/measure-backend/measure-go/measure/app.go index 241f0af88..91dab5929 100644 --- a/measure-backend/measure-go/measure/app.go +++ b/measure-backend/measure-go/measure/app.go @@ -1477,6 +1477,7 @@ func (a *App) GetSessionEvents(ctx context.Context, sessionId uuid.UUID) (*Sessi &cpuUsage.STime, &cpuUsage.CSTime, &cpuUsage.Interval, + &cpuUsage.PercentageUsage, // navigation &navigation.To, From 8788539e8d5ce2aa9564e150be72cc20f737d191 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 11:16:55 +0530 Subject: [PATCH 10/14] fix(backend): remove validation for 0 percentage usage as it's valid value --- measure-backend/measure-go/event/event.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/measure-backend/measure-go/event/event.go b/measure-backend/measure-go/event/event.go index a8468f8f5..ec60f3191 100644 --- a/measure-backend/measure-go/event/event.go +++ b/measure-backend/measure-go/event/event.go @@ -867,9 +867,6 @@ func (e *EventField) Validate() error { if e.CPUUsage.ClockSpeed <= 0 { return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.clock_speed`) } - if e.CPUUsage.PercentageUsage <= 0 { - return fmt.Errorf(`%q must be greater than 0`, `cpu_usage.percentage_usage`) - } } if e.IsNavigation() { From b7e0396499009f3378e62d44b0a7e824fe748c3b Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 12:59:50 +0530 Subject: [PATCH 11/14] chore(backend): add new sessions with real cpu usage data --- .../457add42-0ade-4572-a416-655179fd8eb7.json | 1 + .../72fe0489-a9de-4884-9b9f-2c99114d413a.json | 1 + .../81c606fc-eab0-46a7-a43c-93582573e120.json | 5 +++++ .../blobs/480057f6-cf5b-4e1d-80dd-734e18040157 | Bin 0 -> 34022 bytes .../blobs/5868e30d-da1e-4579-ae04-838a0e3c2c6f | Bin 0 -> 33918 bytes .../d1f4c376-b2cd-4d41-929d-cc8a07353887.json | 1 + .../ffc4531f-f6dd-4b51-85a1-46a433576361.json | 1 + 7 files changed, 9 insertions(+) create mode 100644 self-host/session-data/sh.measure.sample/1.0/457add42-0ade-4572-a416-655179fd8eb7.json create mode 100644 self-host/session-data/sh.measure.sample/1.0/72fe0489-a9de-4884-9b9f-2c99114d413a.json create mode 100644 self-host/session-data/sh.measure.sample/1.0/blobs/480057f6-cf5b-4e1d-80dd-734e18040157 create mode 100644 self-host/session-data/sh.measure.sample/1.0/blobs/5868e30d-da1e-4579-ae04-838a0e3c2c6f create mode 100644 self-host/session-data/sh.measure.sample/1.0/d1f4c376-b2cd-4d41-929d-cc8a07353887.json create mode 100644 self-host/session-data/sh.measure.sample/1.0/ffc4531f-f6dd-4b51-85a1-46a433576361.json diff --git a/self-host/session-data/sh.measure.sample/1.0/457add42-0ade-4572-a416-655179fd8eb7.json b/self-host/session-data/sh.measure.sample/1.0/457add42-0ade-4572-a416-655179fd8eb7.json new file mode 100644 index 000000000..9ebff4667 --- /dev/null +++ b/self-host/session-data/sh.measure.sample/1.0/457add42-0ade-4572-a416-655179fd8eb7.json @@ -0,0 +1 @@ +[{"id":"0ccc882c-24ff-4b0c-89b7-4620b3a44499","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:58.08900000Z","type":"anr","anr":{"exceptions":[{"type":"sh.measure.android.anr.AnrError","message":"Application Not Responding for at least 5s","frames":[{"class_name":"sh.measure.sample.ExceptionDemoActivity","method_name":"infiniteLoop","file_name":"ExceptionDemoActivity.kt","line_num":62},{"class_name":"sh.measure.sample.ExceptionDemoActivity","method_name":"onCreate$lambda$4","file_name":"ExceptionDemoActivity.kt","line_num":39},{"class_name":"sh.measure.sample.ExceptionDemoActivity","method_name":"$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw","line_num":0},{"class_name":"sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda8","method_name":"onClick","file_name":"D8$$SyntheticClass","line_num":0},{"class_name":"android.view.View","method_name":"performClick","file_name":"View.java","line_num":7506},{"class_name":"com.google.android.material.button.MaterialButton","method_name":"performClick","file_name":"MaterialButton.java","line_num":1218},{"class_name":"android.view.View","method_name":"performClickInternal","file_name":"View.java","line_num":7483},{"class_name":"android.view.View","method_name":"-$$Nest$mperformClickInternal","line_num":0},{"class_name":"android.view.View$PerformClick","method_name":"run","file_name":"View.java","line_num":29334},{"class_name":"android.os.Handler","method_name":"handleCallback","file_name":"Handler.java","line_num":942},{"class_name":"android.os.Handler","method_name":"dispatchMessage","file_name":"Handler.java","line_num":99},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":201},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.app.ActivityThread","method_name":"main","file_name":"ActivityThread.java","line_num":7872},{"class_name":"java.lang.reflect.Method","method_name":"invoke","file_name":"Method.java","line_num":-2},{"class_name":"com.android.internal.os.RuntimeInit$MethodAndArgsCaller","method_name":"run","file_name":"RuntimeInit.java","line_num":548},{"class_name":"com.android.internal.os.ZygoteInit","method_name":"main","file_name":"ZygoteInit.java","line_num":936}]}],"threads":[{"name":"Okio Watchdog","frames":[{"class_name":"jdk.internal.misc.Unsafe","method_name":"park","file_name":"Unsafe.java","line_num":-2},{"class_name":"java.util.concurrent.locks.LockSupport","method_name":"parkNanos","file_name":"LockSupport.java","line_num":234},{"class_name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject","method_name":"await","file_name":"AbstractQueuedSynchronizer.java","line_num":2211},{"class_name":"okio.AsyncTimeout$Companion","method_name":"awaitTimeout","file_name":"AsyncTimeout.kt","line_num":358},{"class_name":"okio.AsyncTimeout$Watchdog","method_name":"run","file_name":"AsyncTimeout.kt","line_num":211}]},{"name":"FinalizerWatchdogDaemon","frames":[{"class_name":"java.lang.Thread","method_name":"sleep","file_name":"Thread.java","line_num":-2},{"class_name":"java.lang.Thread","method_name":"sleep","file_name":"Thread.java","line_num":450},{"class_name":"java.lang.Thread","method_name":"sleep","file_name":"Thread.java","line_num":355},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"sleepForNanos","file_name":"Daemons.java","line_num":438},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"waitForProgress","file_name":"Daemons.java","line_num":480},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":369},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"LeakCanary-Heap-Dump","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]},{"name":"FinalizerDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":203},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":224},{"class_name":"java.lang.Daemons$FinalizerDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":300},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"msr-io","frames":[{"class_name":"jdk.internal.misc.Unsafe","method_name":"park","file_name":"Unsafe.java","line_num":-2},{"class_name":"java.util.concurrent.locks.LockSupport","method_name":"park","file_name":"LockSupport.java","line_num":194},{"class_name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject","method_name":"await","file_name":"AbstractQueuedSynchronizer.java","line_num":2081},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":1176},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":905},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"getTask","file_name":"ThreadPoolExecutor.java","line_num":1063},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1123},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"queued-work-looper","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]},{"name":"OkHttp TaskRunner","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"okhttp3.internal.concurrent.TaskRunner$RealBackend","method_name":"coordinatorWait","file_name":"TaskRunner.kt","line_num":294},{"class_name":"okhttp3.internal.concurrent.TaskRunner","method_name":"awaitTaskToRun","file_name":"TaskRunner.kt","line_num":218},{"class_name":"okhttp3.internal.concurrent.TaskRunner$runnable$1","method_name":"run","file_name":"TaskRunner.kt","line_num":59},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1137},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"Thread-2","frames":[{"class_name":"dalvik.system.VMStack","method_name":"getThreadStackTrace","file_name":"VMStack.java","line_num":-2},{"class_name":"java.lang.Thread","method_name":"getStackTrace","file_name":"Thread.java","line_num":1841},{"class_name":"java.lang.Thread","method_name":"getAllStackTraces","file_name":"Thread.java","line_num":1909},{"class_name":"sh.measure.android.exceptions.ExceptionFactory","method_name":"createMeasureException","file_name":"ExceptionFactory.kt","line_num":36},{"class_name":"sh.measure.android.anr.AnrCollector","method_name":"toMeasureException","file_name":"AnrCollector.kt","line_num":48},{"class_name":"sh.measure.android.anr.AnrCollector","method_name":"onAnrDetected","file_name":"AnrCollector.kt","line_num":38},{"class_name":"sh.measure.android.NativeBridgeImpl","method_name":"notifyAnrDetected","file_name":"NativeBridge.kt","line_num":64}]},{"name":"msr-export","frames":[{"class_name":"jdk.internal.misc.Unsafe","method_name":"park","file_name":"Unsafe.java","line_num":-2},{"class_name":"java.util.concurrent.locks.LockSupport","method_name":"park","file_name":"LockSupport.java","line_num":194},{"class_name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject","method_name":"await","file_name":"AbstractQueuedSynchronizer.java","line_num":2081},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":1176},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":905},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"getTask","file_name":"ThreadPoolExecutor.java","line_num":1063},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1123},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"ConnectivityThread","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]},{"name":"ReferenceQueueDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":568},{"class_name":"java.lang.Daemons$ReferenceQueueDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":232},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]}],"handled":false,"foreground":true},"attachments":[{"id":"480057f6-cf5b-4e1d-80dd-734e18040157","type":"screenshot","name":"screenshot.webp"}],"attribute":{"thread_name":"Thread-2","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"11a115b1-20af-49bc-8a3d-d4d4e0033347","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":true,"timestamp":"2024-07-25T07:20:44.44000000Z","type":"navigation","navigation":{"source":null,"from":"sample-from","to":"sample-to"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"21b57ff2-1061-48e7-bb0e-00ea64bf73b4","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":true,"timestamp":"2024-07-25T07:20:44.46900000Z","type":"exception","exception":{"exceptions":[{"type":"java.lang.RuntimeException","message":"sample-handled-exception","frames":[{"class_name":"sh.measure.sample.SampleApp","method_name":"onCreate","file_name":"SampleApp.kt","line_num":29},{"class_name":"android.app.Instrumentation","method_name":"callApplicationOnCreate","file_name":"Instrumentation.java","line_num":1277},{"class_name":"android.app.ActivityThread","method_name":"handleBindApplication","file_name":"ActivityThread.java","line_num":6759},{"class_name":"android.app.ActivityThread","method_name":"-$$Nest$mhandleBindApplication","line_num":0},{"class_name":"android.app.ActivityThread$H","method_name":"handleMessage","file_name":"ActivityThread.java","line_num":2133},{"class_name":"android.os.Handler","method_name":"dispatchMessage","file_name":"Handler.java","line_num":106},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":201},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.app.ActivityThread","method_name":"main","file_name":"ActivityThread.java","line_num":7872},{"class_name":"java.lang.reflect.Method","method_name":"invoke","file_name":"Method.java","line_num":-2},{"class_name":"com.android.internal.os.RuntimeInit$MethodAndArgsCaller","method_name":"run","file_name":"RuntimeInit.java","line_num":548},{"class_name":"com.android.internal.os.ZygoteInit","method_name":"main","file_name":"ZygoteInit.java","line_num":936}]}],"threads":[{"name":"FinalizerWatchdogDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":568},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"sleepUntilNeeded","file_name":"Daemons.java","line_num":385},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":365},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"LeakCanary-Heap-Dump","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]},{"name":"FinalizerDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":203},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":224},{"class_name":"java.lang.Daemons$FinalizerDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":300},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"msr-io","frames":[{"class_name":"jdk.internal.misc.Unsafe","method_name":"park","file_name":"Unsafe.java","line_num":-2},{"class_name":"java.util.concurrent.locks.LockSupport","method_name":"park","file_name":"LockSupport.java","line_num":194},{"class_name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject","method_name":"await","file_name":"AbstractQueuedSynchronizer.java","line_num":2081},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":1176},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":905},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"getTask","file_name":"ThreadPoolExecutor.java","line_num":1063},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1123},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"ConnectivityThread","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]},{"name":"ReferenceQueueDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":568},{"class_name":"java.lang.Daemons$ReferenceQueueDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":232},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"msr-default","frames":[{"class_name":"kotlinx.serialization.json.internal.JsonStreamsKt","method_name":"encodeByWriter","file_name":"JsonStreams.kt","line_num":26},{"class_name":"kotlinx.serialization.json.Json","method_name":"encodeToString","file_name":"Json.kt","line_num":81},{"class_name":"sh.measure.android.storage.EventExtensionsKt","method_name":"serializeAttributes","file_name":"EventExtensions.kt","line_num":35},{"class_name":"sh.measure.android.storage.EventStoreImpl","method_name":"store","file_name":"EventStore.kt","line_num":33},{"class_name":"sh.measure.android.events.EventProcessorImpl$track$2$1","method_name":"call","file_name":"EventProcessor.kt","line_num":197},{"class_name":"sh.measure.android.events.EventProcessorImpl$track$2$1","method_name":"call","file_name":"EventProcessor.kt","line_num":179},{"class_name":"java.util.concurrent.FutureTask","method_name":"run","file_name":"FutureTask.java","line_num":264},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask","method_name":"run","file_name":"ScheduledThreadPoolExecutor.java","line_num":307},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1137},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]}],"handled":true,"foreground":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"245f3582-2ada-405a-a45e-f7d8800ea0f0","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:44.73500000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"2954771c-2f42-49f3-8c7e-6cc70651122e","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:48.64200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33166,"total_pss":77661,"rss":166060,"native_total_heap":22780,"native_free_heap":1081,"interval":2033},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"4285e362-960f-4b81-9059-ea262dd33045","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:50.42600000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1123023,"uptime":11237880,"utime":79,"cutime":0,"cstime":0,"stime":55,"interval":3001,"percentage_usage":7.666666666666668},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"5187dd8f-a83f-4a79-950f-79d56e8a61ca","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:54.95000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9547,"java_free_heap":4741,"total_pss":66573,"rss":148904,"native_total_heap":23292,"native_free_heap":1690,"interval":2088},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"5b3c1ebb-aaf5-469c-831f-90b8df42d8c8","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:45.18200000Z","type":"cold_launch","cold_launch":{"process_start_uptime":11230725,"process_start_requested_uptime":11230154,"content_provider_attach_uptime":11231764,"on_next_draw_uptime":11232632,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"5ffd1fdb-8346-477d-9c92-99fc3d58a99b","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:44.42400000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1123023,"uptime":11231878,"utime":32,"cutime":0,"cstime":0,"stime":36,"interval":0,"percentage_usage":0.0},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"unknown","network_generation":"unknown","network_provider":"unknown"}},{"id":"64c10b99-eee3-433c-aa5f-cfd91ad42b68","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:44.72900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"89d5f6bd-68a2-4d45-af84-8edb002f9745","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:50.81400000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32858,"total_pss":72038,"rss":159048,"native_total_heap":23292,"native_free_heap":1222,"interval":2023},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"8ea48ab5-f832-44db-8e50-85bce2cdc209","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:56.42700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1123023,"uptime":11243882,"utime":554,"cutime":0,"cstime":0,"stime":91,"interval":3001,"percentage_usage":90.66666666666667},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"9f3bf7d4-6a0b-4ce5-8c47-12f834cca3ed","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:57.00200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9547,"java_free_heap":4637,"total_pss":66630,"rss":148916,"native_total_heap":23292,"native_free_heap":1659,"interval":2049},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"a976663f-6b11-4249-986f-04515d2fe5bd","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:53.42700000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1123023,"uptime":11240881,"utime":298,"cutime":0,"cstime":0,"stime":75,"interval":3001,"percentage_usage":79.66666666666667},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"ab4da367-2ece-49aa-bb57-1108fa8e8338","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:44.56900000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"c9989f10-0ae3-4f7e-9217-1bf76dd9950a","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:47.42500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1123023,"uptime":11234879,"utime":61,"cutime":0,"cstime":0,"stime":50,"interval":3001,"percentage_usage":14.333333333333334},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"d7e558b8-21df-4e8c-b703-adef00b3ef61","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T07:20:45.27200000Z","type":"app_exit","app_exit":{"reason":"CRASH","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"7092"},"attachments":null,"attribute":{"thread_name":"msr-io","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"dc4352ac-0a54-4540-9b21-4ffa1cf97cb2","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:49.94200000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_infinite_loop","width":398,"height":132,"x":579.97925,"y":829.92554,"touch_down_time":11237295,"touch_up_time":11237395},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"ec61f531-707b-4215-ba53-7b1b7a07971c","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:44.58900000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185328,"total_pss":60009,"rss":151824,"native_total_heap":12120,"native_free_heap":1208,"interval":0},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"f5f6bbb4-b5a4-460f-ac3d-54dc14fd7228","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:52.90200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32806,"total_pss":71377,"rss":159064,"native_total_heap":23292,"native_free_heap":1198,"interval":2168},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"fe17d20a-5f69-4bc3-8c93-b45986c8ea94","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:46.62100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33270,"total_pss":80844,"rss":180140,"native_total_heap":22780,"native_free_heap":1112,"interval":2073},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/72fe0489-a9de-4884-9b9f-2c99114d413a.json b/self-host/session-data/sh.measure.sample/1.0/72fe0489-a9de-4884-9b9f-2c99114d413a.json new file mode 100644 index 000000000..4e6bf1d5b --- /dev/null +++ b/self-host/session-data/sh.measure.sample/1.0/72fe0489-a9de-4884-9b9f-2c99114d413a.json @@ -0,0 +1 @@ +[{"id":"0aeef006-e14a-4c45-a6c8-c026a0cceb7c","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T06:44:07.23900000Z","type":"exception","exception":{"exceptions":[{"type":"java.lang.RuntimeException","message":"java.lang.reflect.InvocationTargetException","frames":[{"class_name":"com.android.internal.os.RuntimeInit$MethodAndArgsCaller","method_name":"run","file_name":"RuntimeInit.java","line_num":558},{"class_name":"com.android.internal.os.ZygoteInit","method_name":"main","file_name":"ZygoteInit.java","line_num":936}]},{"type":"java.lang.reflect.InvocationTargetException","frames":[{"class_name":"java.lang.reflect.Method","method_name":"invoke","file_name":"Method.java","line_num":-2},{"class_name":"com.android.internal.os.RuntimeInit$MethodAndArgsCaller","method_name":"run","file_name":"RuntimeInit.java","line_num":548},{"class_name":"com.android.internal.os.ZygoteInit","method_name":"main","file_name":"ZygoteInit.java","line_num":936}]},{"type":"java.lang.IllegalAccessException","message":"This is a new exception","frames":[{"class_name":"sh.measure.sample.ExceptionDemoActivity","method_name":"onCreate$lambda$0","file_name":"ExceptionDemoActivity.kt","line_num":21},{"class_name":"sh.measure.sample.ExceptionDemoActivity","method_name":"$r8$lambda$Q_ui1nZ8w7tXFl-UGrB13ccXmnU","line_num":0},{"class_name":"sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda3","method_name":"onClick","file_name":"D8$$SyntheticClass","line_num":0},{"class_name":"android.view.View","method_name":"performClick","file_name":"View.java","line_num":7506},{"class_name":"com.google.android.material.button.MaterialButton","method_name":"performClick","file_name":"MaterialButton.java","line_num":1218},{"class_name":"android.view.View","method_name":"performClickInternal","file_name":"View.java","line_num":7483},{"class_name":"android.view.View","method_name":"-$$Nest$mperformClickInternal","line_num":0},{"class_name":"android.view.View$PerformClick","method_name":"run","file_name":"View.java","line_num":29334},{"class_name":"android.os.Handler","method_name":"handleCallback","file_name":"Handler.java","line_num":942},{"class_name":"android.os.Handler","method_name":"dispatchMessage","file_name":"Handler.java","line_num":99},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":201},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.app.ActivityThread","method_name":"main","file_name":"ActivityThread.java","line_num":7872},{"class_name":"java.lang.reflect.Method","method_name":"invoke","file_name":"Method.java","line_num":-2},{"class_name":"com.android.internal.os.RuntimeInit$MethodAndArgsCaller","method_name":"run","file_name":"RuntimeInit.java","line_num":548},{"class_name":"com.android.internal.os.ZygoteInit","method_name":"main","file_name":"ZygoteInit.java","line_num":936}]}],"threads":[{"name":"Okio Watchdog","frames":[{"class_name":"jdk.internal.misc.Unsafe","method_name":"park","file_name":"Unsafe.java","line_num":-2},{"class_name":"java.util.concurrent.locks.LockSupport","method_name":"parkNanos","file_name":"LockSupport.java","line_num":234},{"class_name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject","method_name":"await","file_name":"AbstractQueuedSynchronizer.java","line_num":2211},{"class_name":"okio.AsyncTimeout$Companion","method_name":"awaitTimeout","file_name":"AsyncTimeout.kt","line_num":370},{"class_name":"okio.AsyncTimeout$Watchdog","method_name":"run","file_name":"AsyncTimeout.kt","line_num":211}]},{"name":"msr-default","frames":[{"class_name":"jdk.internal.misc.Unsafe","method_name":"park","file_name":"Unsafe.java","line_num":-2},{"class_name":"java.util.concurrent.locks.LockSupport","method_name":"parkNanos","file_name":"LockSupport.java","line_num":234},{"class_name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject","method_name":"awaitNanos","file_name":"AbstractQueuedSynchronizer.java","line_num":2123},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":1188},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":905},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"getTask","file_name":"ThreadPoolExecutor.java","line_num":1063},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1123},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"LeakCanary-Heap-Dump","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]},{"name":"FinalizerDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":203},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":224},{"class_name":"java.lang.Daemons$FinalizerDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":300},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"OkHttp TaskRunner","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"okhttp3.internal.concurrent.TaskRunner$RealBackend","method_name":"coordinatorWait","file_name":"TaskRunner.kt","line_num":294},{"class_name":"okhttp3.internal.concurrent.TaskRunner","method_name":"awaitTaskToRun","file_name":"TaskRunner.kt","line_num":218},{"class_name":"okhttp3.internal.concurrent.TaskRunner$runnable$1","method_name":"run","file_name":"TaskRunner.kt","line_num":59},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1137},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"ReferenceQueueDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":568},{"class_name":"java.lang.Daemons$ReferenceQueueDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":232},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"msr-io","frames":[{"class_name":"jdk.internal.misc.Unsafe","method_name":"park","file_name":"Unsafe.java","line_num":-2},{"class_name":"java.util.concurrent.locks.LockSupport","method_name":"park","file_name":"LockSupport.java","line_num":194},{"class_name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject","method_name":"await","file_name":"AbstractQueuedSynchronizer.java","line_num":2081},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":1176},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue","method_name":"take","file_name":"ScheduledThreadPoolExecutor.java","line_num":905},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"getTask","file_name":"ThreadPoolExecutor.java","line_num":1063},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1123},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"FinalizerWatchdogDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":568},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"sleepUntilNeeded","file_name":"Daemons.java","line_num":385},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":365},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"queued-work-looper","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]}],"handled":false,"foreground":true},"attachments":[{"id":"5868e30d-da1e-4579-ae04-838a0e3c2c6f","type":"screenshot","name":"screenshot.webp"}],"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"2dff05d5-c3dd-44c8-bccc-dd71aa53ff35","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T06:44:07.25200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":902785,"uptime":9034706,"utime":77,"cutime":0,"cstime":0,"stime":47,"interval":3052,"percentage_usage":10.666666666666668},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"319ae5d9-b53f-4dab-980b-ee7d28637773","session_id":"814e8330-6591-4437-8b2d-9ca0d2517e32","user_triggered":false,"timestamp":"2024-07-25T06:44:01.46800000Z","type":"app_exit","app_exit":{"reason":"USER_REQUESTED","importance":"FOREGROUND","trace":null,"process_name":"sh.measure.sample","pid":"7000"},"attachments":null,"attribute":{"thread_name":"msr-io","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"53a15d92-583d-426b-9761-f82b02c4034c","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T06:44:04.20000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":902785,"uptime":9031654,"utime":57,"cutime":0,"cstime":0,"stime":35,"interval":3003,"percentage_usage":13.666666666666666},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"5ef0b853-d33f-435e-92b3-8154120d2d3f","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T06:44:07.97000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33193,"total_pss":95263,"rss":197352,"native_total_heap":37536,"native_free_heap":1277,"interval":2039},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"697a8610-9118-4b94-bc7d-113da2b65a0d","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T06:44:06.69100000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_single_exception","width":635,"height":132,"x":512.97363,"y":296.94397,"touch_down_time":9034014,"touch_up_time":9034073},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"96b61b9a-55cf-475b-b9f5-18cf503e83e2","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T06:44:05.40700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33566,"total_pss":84671,"rss":180800,"native_total_heap":22780,"native_free_heap":1064,"interval":2029},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"ca5ed869-7cda-41b9-b363-ea38e9fb1d20","session_id":"dd73d438-f47a-4771-b339-96f1e3506f0c","user_triggered":false,"timestamp":"2024-07-25T06:44:03.36700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":33654,"total_pss":84599,"rss":180800,"native_total_heap":22780,"native_free_heap":1096,"interval":2144},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json b/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json index 3ccddadd1..e1b4c3e02 100644 --- a/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json +++ b/self-host/session-data/sh.measure.sample/1.0/81c606fc-eab0-46a7-a43c-93582573e120.json @@ -91,6 +91,7 @@ "timestamp": "2024-06-13T13:38:02.61700000Z", "type": "cpu_usage", "cpu_usage": { + "percentage_usage": 10.1, "num_cores": 1, "clock_speed": 100, "start_time": 80843, @@ -846,6 +847,7 @@ "timestamp": "2024-06-13T13:37:59.61000000Z", "type": "cpu_usage", "cpu_usage": { + "percentage_usage": 10.1, "num_cores": 1, "clock_speed": 100, "start_time": 80843, @@ -890,6 +892,7 @@ "timestamp": "2024-06-13T13:37:53.60000000Z", "type": "cpu_usage", "cpu_usage": { + "percentage_usage": 10.1, "num_cores": 1, "clock_speed": 100, "start_time": 80843, @@ -934,6 +937,7 @@ "timestamp": "2024-06-13T13:37:56.60400000Z", "type": "cpu_usage", "cpu_usage": { + "percentage_usage": 10.1, "num_cores": 1, "clock_speed": 100, "start_time": 80843, @@ -1107,6 +1111,7 @@ "timestamp": "2024-06-13T13:38:05.62300000Z", "type": "cpu_usage", "cpu_usage": { + "percentage_usage": 10.1, "num_cores": 1, "clock_speed": 100, "start_time": 80843, diff --git a/self-host/session-data/sh.measure.sample/1.0/blobs/480057f6-cf5b-4e1d-80dd-734e18040157 b/self-host/session-data/sh.measure.sample/1.0/blobs/480057f6-cf5b-4e1d-80dd-734e18040157 new file mode 100644 index 0000000000000000000000000000000000000000..334309b2764b83025795282d3d22c12c8a95a1b0 GIT binary patch literal 34022 zcmeFX1yCMK*Dm_v4#6$B26su&1lQp1?(XhEg1fuBySqC9g1b8eKW}!j_x|Mn{(Jwr zw@%fmIzzoPYkHcQp6=CaJJI=Y34Z*n_?bf)761Sc0)On_fD&kc=%-Jg zu|R>R08p%-dvFE-z{1krR#x~Up|Xl9;m@)^Hyu4Y>p$)P;s^o&+|C1ldjMdD_P@CP z|5OB{Z(yeftaJ|i+1mmi4gi4Y18p>;U$*m4Tlbe8_S3eNm;D5+lL@pbjsC&b{Ri90 z-r62mXYglzJ!{*a_IIGoWnu2{^I1Q)pDl(ruvCx(9+iQ=w*WhUEI=6W5orJay8Yds zR@ndm#|;1g7WsFXZV~{{5C8yRE&W|anh5|P0mrU>!dk~x=a0sK1NWeYh5*220RVuY z0sx>+0sydTe>U{*|NVO`{=>Tx0{`bN@I9@7e?|avfB}FIAPTSq=mF?}788I0zzARi zdJJKvF91;K2%ZK)#Q|Ol%}W;DqgqbIo0oM}#C%Q~Y+(6>*R(mS8CBCk?lrlRvE#Mu zm3n=>;|0TG^h0{BeWpXt-T7o<@l}G(^BM0oVzuFM?HjL$*X--K8|bU{<-|?dW6mMe zgVqay0{sJT6VI7f{p-|o_YdTks+X1?Hx*H>wiilenB4_e;W*Vl#5muL69 zXRkG08LuYoE>F^rUZeDzpBCTBl7?1`x*T4zmGmVhJKopLX3pJ?5yf71 zQrhx;MYticRER3f$$-MeXs_s$I6oH}vx$@Z2|}l6zXm^Ramp8 zO@jD1(}ByMmuxMQPMDXBY9~z6XSnm-ByRupbU(%!Dg>>U=Ky#eNpZ%Ax@%tB?LqzW zAuAj9-#R1_^De4zg~%K$el@>rA)7wmGb_S^lV1`2Rg?1@sc;=0?W1X0PRT~ic%Ie< z{Nm@^Hy;je0iqZ=@U9`oI3G3P*3A*AJg?lzEyl3yNFNY`<<8Zn6S$m`01Vsib8D~b zgm~wymjgZ$eFtO+HsWlWnw9v07Vt~hwamtblVe#apV$IJ_B$8j$fl6iMXeJhQ6z>H z;VqwTFgdaMR3mQpztcPu`qE;w${g^^IerMD3Ro*Sg)M;-yN)w5Xt0(#uT{Sz-r`2b z(HVVg;*GiT)({eoRKN})Z=aB}Q6XTj31H^CoLNZw*n3Rteq{z>t)pQdI^8UFE{gEX z2tHvtyQkoO@=aE_8K>sP=x|~#ql8z{v-DZzq2|V*3df&D3`Z-57Z6!0bOXmeaZ0Gc zSaL6Aq#K7oOlOzk*>slzvs!x_YX|K%I_oT2tiSaBTPOf)1^EL{xwPQk6?=`;g`$e_ z-hR1_Cj9=4|Ji3qk zzq2$vFr&C=qKB{6`zq&2)*;C;ju#3 z{swd;{z4eV$tcAW=SA7Xm4Zrji8jpFXKGo9#w0m4EwQ!_f~-9ZDb=s1ILZlJ^ipz- zH0!r9KQQ|jm{Q{l5WisaJl@m4*(+feGXf>m9)l9SC=sK#D9;w>=pCFKq6rINL{nkJ z_G)z&ieE6dinYNbb?~LeOnz@Wi&M!N;CkS0p7_D=!3kSj%_baHR{wcUDRaFaAb$1OPRTQS0=*Geb>gb~%uEE!O^CWeB z1xKeS+uNvjhRzyHOFv8?jJuxYMuV@BMy+FjRLkp>Xybui7bS_e>6FsKt zWJ_yiWKEtw+h@ScxOlgOQ?XCrb0xGd9c<|*ZDQh!HH-1Bn0_7@&GtH7e~zxPXtPoM z0KypQq@$nZ0Beoy3z}eQWm@HJ(!rOyunKlmQN46CdhQgLD1o){`Qf{dCN#1}(~Z68 zyPJPndo}!;7QzaXzo&G;8E{rJ8yvGV6D7>;1O086mO}5Du(^^ASmMx)Li=)UtA7!^ z#aarL%Zye1f^MND^U&9`xmCn`psovhWy2Exj`{R`3{PA?;m_ym{+or8tH!yA$9|f0 z@j>UrJD;s*`b*Gr?57orjTJSuqoLww2dF_&`;SLfh=(2h6GDuJ;F<={>MyY)hpkm_ zccd*|`x2UC6@>{)n}Ao zvl{M19GcZSV@rtLKq5k2WO2nE5}|S^oMFMTf#8?TdREmtwkus~Ny>QKZnu$!-Uf~*a5hxvo16B#uhlwVD{t*X zClBGh6>_bSxPlUuhqXdW^msWj12++qS}{cLD!#$HcvPy&;MPdvHHcDH!d_-&bo$p} zu@-6Wx73Utac*xZuOb$`Ek_1tPW8h;jBKE57qi`fxzalwV|Ae1;*2wC*c^FidVW`C zcAsz_DB;DLIP_`Lv$Z2cOLJ&);6wqZbNhYHmKQEGpa{S8S^LMcswXhd7c&$ z{SQJl5@lojc9g->D0J%|4@|ha{&&#h4n#qnp`#ro8Ph;4)JsBB$h&|zk!SOTdaQR^ zIrqP@^0p$rhQ|s5k<;NGFtkvbAaLgrt$8DUBXfA;>!NxCdkV9Ek?6BiqWrG>6ey_22WiMxlErM zybBs}SJgkueW&(KiQMzc6!)>&=SYmPM*yljp0`bJcK2mnk1KxE zErxyFts@$E|4k5>=zQt2a=5dP)xC=A<@AF`0^o=`UFCmtFXK<3f7o$<-;0Z)+E}+8LdSLOtM>Wo9)AdD=V`89BS?l zTG2}#9V#NJaHlL#UZZR%g?dzGqf0(; zlkIm}$7i3GwH0Ke5n3~`z(Ne3=IfqD2bzH}(nv&cc0ne)D)Lb7LZrIXDUoI9rWfrM zy{!<4pa1mdEBXve$xdQ}+bv)W}}v zF(gt_b9PdM>`xG&t3N+2MfghhMZ;oE?&mb9eSWBg!O3NRY>Q30E@y;rX-pPJ`yW~6 zDR`Ob2S1Py-z6eD-}ggwRI2Mb_X6WOYClDoG*&tz*YDGBwRINk$85l>eKFAo;TmLb zl%!hBv`E`h`whkNGEp6DO|r zLP=KUWlEv#-Wh$L%B}mrfY=?s7^f_Fj!|INIP}2yC1#Mm^sNcxv=tHfaL-n{ zg^Zhw61pWt+fN_WHL`T@UUhAGyrKjLt(J!=#k3*rE28aP<~a`sE_yeTK*PBLW2>Ub zk#QQs6IFBZ&@>@+Bn2XrGCAVg1Ysn$04XA;;y0 zJF0bg2#^l>Tp@y;DTuE6ta-xEg>{LneL92CP3Rd?zGq}_G25iGDgraC0q`_G+^ z5Q2P|l{jMG$k)wyx4NO)`|+vA0i%jU*)tN6U%H3nu8SnXLj28>KG~^ASElwI9*lV z0E=?ci7&12;%C%A;TAn2(4qIJ6X{#6ykxnwj8%S%##;8ZDi({utiSX|Rk5|nsF;et zyfm;Cg)UlWfMzx`VCvZV{CeE1T4}rUPolk9B-Hoq{^j%6{He3Cp+jyChkN#BYnVh2eIN zw&&#+zud)IMhad=`h#@3aw}Tzb06jZHHSCiO0He3{$kue^Tr<>9Lb9AuW8p^===w* zGKIPLIn{sDEfgxhFfCF@yCN;fyB>KOwy-xF3>)>waw^q)byQNatjFhyFYVr_8}jb@ zS0&i4ncRSmU5G4OeabyOPgSPx{5)pnWOL(FpM)cX`ZAP03c}iFE4Sxn6xp(V5O7f2 zW%X~paQWj^=MfU_XV`!+;OFZYZr>NN;a_B_aVdm}ia>c+GdNx7By?lxNNr=A&e~Jm ze`ZS=3E+!jN=HByS(;9jTI9_zm1{wq3<%P^)8Hjot67zvhC!hi_{jJc)S`@(*E~hluuYi=MZvp>Z+$Qu7 ziNX)8wl(8f8xc4%tf;s^w52h|a<5J0^^+i~f=>YV4Zi~!CssPR)}N#F_jvuXd~%Hb zAk~(%z;*zG{4d7uzR64y*ztSBuz?x<4}ql8yd#gb>`#KZTs!d^Tjahgi0bu0je7R} z&oGQSIL~acz(TzGOHW~D1tyI@J;6RR!b4#X9k$+@r*>yzImP?aL_^^wnV6h|2Q^7_qCGH;UD z8e5202^HZ>{Qhlij|IRaFpCP);b}^X;3qpT12qD&=HMNk2=4knUGqGpnA~6-_ymz;L@vHny8*c3Z8zw&s}uz8BE}J$0ScE zdRDpv$Mz>4FzWXug8mXOyg(fMZ&Q*V_F}j#j==t>>cc}dRgeD-R?qyG{BxSy{fo*p z1Q}=W{z`Ox37gopoKb&@EFXKqP1rne1OA05rC`lkDSxd0Eh24}0ln@gd-)|Ujm>4U zZmuw&U*iY#h?sEb{Q(4lZllbmHJv>Fm%!$G!rFH!>gkkkEFt9PqQwCB8duNV0+{7j#qnz?_;NJiazyIOM-2NJ*A z#N9cctI+B}P2lg3g&+9FC9P>Yol*`%+31chG@b?Hq%~Mlk+EPAB|v!PmyR}ORKlyw z1N5w4jgy#K_D12Z;K%Hl^_bfKB~tNV@-n@Ydx`y;0`wcSNjZSVfJ31W*xBD8rS9&k zuDVSC|H^(&U?VJ9Rv3!`< zN_Z{)0ze@SthX}jYDx8#esNx~Dh3#N8LWrn@`X#Z#!Y^@4v&2w7{C4w1^*Phxbud+ zdZmlOx*s1@lOL1YoO{`M&c4Pc&HST(qh5+vf0hY;52F32Va;oZN@ihs_m}4Tw;WtPbbYvYI5Cgn$;f5+ zhYzW4(tZ196__%N9tgG#OK<yji&14-!&>3KHZL^#A>7Z-_RN?VN9M$@e_s69!HUGpXmFs=>)|uaj9_ya$DZwm z(EL_Jk+v$sUZlQo5Kg$YJ$z)MH(cozhnLOGcm(x9j?&{O(Z)=5a_rFi%loDNpf0Tqxt*T0Y~DY@9Rz`IntE9cjp6IWJJ0bhpbsTh3?l;h*?BV zhPlQAOE*Zbpcb1F)H^%&F$K+B*ENqnC^Ko{afMsTkHBqOJ{#H z4HOj>z>5LI45hgA2a;yLz{9AL*~`tp15MXRqAXzAOeW>|b1az`r_uCb$X;v`b&^?4 z$pv_FukK7m_p^D^ja4RWiqjdpYiRjYrWryPZU|8}I-W(wbR}_GayF(wr)H$uC*w|& zLC)}9m7xJmvNav$u=*9%fmYm#@`>?K{L?7Lp!OFB%U^dq7u;%uO%Q#I#Lhpd@@zOl z_c%6b5#C|gLrcg2Ga<7H@+bOTL+(EU=5^L}qU9#5aVUqbszbW%BI?gH2RJs3T- zh`!XM9~3bs`i7`kID#=Bcnn~a2{X<+Bnosc=;lk^5)OA3BJ5empd2T}*?AH~fdbJhm^1(>*#G7R*d%;rG9` z!TrR?qjSJiPVp;=+XrZxRqW@?b|5hkfwrf>--p(*wrPfR1z|3?b`CpjE&3_a6?RUe zQBHZFT|3T+$zA_WLZzs2+5&nt7Rwzg&CtTRE zs)12&3jJS*eb}WxkP(eMbXC8^{=%SRo{t|`2=6riOa1hpG}Vam*s95vwK5Q*5>gc} z=6?tZ@g(idoWe@Nl!uyEi9CO;lxB$)E1pfti-)~n_6RpK zt`zro3qK?1LO_6juB@#Eqf%p}YJB%u!ZF6i3qN_d*?hT;KNHqJmLs0{BJpXrBKo-F ztMk23ji}R0Sy+cU_;aG6zP8+el%Y386*(RkAt{jl&5e`APU>90uo@;$d6(AF4}5ns ztp1sx|ITav$nBzUpo>o!@@qki-joK>^?9I`BBdG=reGp`uiK@SKH#;1fSG9Ei9N)T z^37et!^qG5x@>=&Dkw)Y);^bqXzDTMsRv0ka@>K}vFpQ8O= zWlWh!b9H2w#rjb|;QaR_@pAmR0?-iTplxpQOP=riHod(D%;aWXym`!wr~kUN`q#p% zi0WVY_s><#e_qrKVqy!lBx~&Z=Rp7Wa`YcJ{~K)o`%3PYy8NHY^)J5q3-i^u~(vPrlZ?+|yjs z#zV@-@k`bEOXvDiNBN2SfvY}ASza|cY3iVx8h^0n-e#kXeQvm5`-z@OS4@Vd;a(%<~-PuBl0UmfrPUY<_YevGu>6BsIfR~w11^#*?FmBu}XrmYS92uQrLNfZru zl>U8Wc)GyBZh1B%F)>=#vKj}E9fM{y)*nl|ks^Ep4Gszd@aFrEhL`_cNHXwV&||3HV7dySx(`75#iB+&Jeapp->W$!Y#FO$rFrXiRRUTj9jR6}yCq32cw< zX78|26XiB9Z129~_hztJ1HeV^I$JO>?sv?r>MSo3MJgD(t&*s1-;Gw|wibN<9O($Di zmr1ci?NTM6_eXeQ^oqhT9foVC=@>B&GLeSI7>6T>?dnWR>3NDDtBMNHS`^|qWIq^! z+x@_~WSjfHloO{?JHKEu>Dw9Cwi%NobAg*mpU5{}_rflvfQ#&W%~q9|JjFeeE== z(8$Z9OI35_wlr2M8vdC38Fv*7e1h+refw_UIzR1PDlph1X*?U1c^++=*TQ|JMtH}57Z&66}Bzs^usFlIJAskNC zV2Ob$cGSUOMK>%8EHb8Y(s0dsCl?ZdBhz&~X6<7G#qqf}onPlnAG4+T$4=qtj@L=P zei34t>OhXeDR-lQiOQ2;(Fj z+`Y2a#p+?tf@y2;JzMyzZp@tL(Vy7r$0O$9%{(j_gT9)SU5%etuJjHz;8 z91-rG)Y$#vgdfV0mvF2I04z_E%DjBS%GrJJ(cW^E>9fUA)-DTeDl-8^X;#E?rI%^T zloo1j@Fo+QDrz8gvygruV9}{OQUeF5`sjX zBPYZ1L)Le6LaOMFqQGj0APBU!XU!E@XZ@sNH>W^11*zOQ^nSRT7_ zNNt?jjH2D1mE7u{W{$7oyXvKrfPChb_mMFrM1c0|{WMsv6>ScuVUt_XCFLqNeR~qk zLca$@b|aH$MlA(eFn%mq+cG*_pJW5qc?4$vo}GWGM_R^8 zjd3+(m5Qj>#GDT~5OaVEM%kHt%N5=)V9XQ3v196x$5OH;ask8M=4jt;vp+- zrcA+;lbynL7lObtZYNh<)fPL*CyS2ZB6{0{7iXZ^xzraydM+3i@IJ{5+F4#L1Sf=`51bH1tl+v#b;H2jbFvjQQbd)h%u-a>SP`lm1#eCJ5A>zAzl7opt&W@FV6I}c z&-5@$DXRkFpFY&<&x0^Ckt>7*J_T>2?J-J}%pS*gNV{>OYO1n zsf=X$3}(gP6?wCtb-&)@IVwg&`)#tgq6=GIkL24LyT{l@q(|Y7;bYs{<~(2X1mG5O zHjubr@q5d4H7A~in1Ro9;+xs=9^h8MYjnWMMuUZabM@4umUD<dmDYj)Xp&gjMGc;5mSlN7ic;=xSpW8?34Wet@ zqbK`*AJv=~3M_8LU6{OE{1qB+^P2{zfdRA~#+X!{tNe5p`$D(aI=6Z&9P0enW<<){ z5F}zsC=%%E(9eSO;I4ihq}&NWMG~NtqA_E?PXSOS3*GKtow=Dm4D>RHk<7gqTh>(9 z3q#fERi8mNj{;nZR%8W11>oDt=}3q;8#b9n$02|as%-~$(@*hL^}U&-#5?knn~#+) zaI-H7-9BEyc2<6y%IPf|&{a4E%>ST|pQSfhwUNwN+t`1e+7JRDQnic&68(DD$s@6@`10t&NS~BBU65-Uqrz$JG+gC20@ky!_!$@P9a9e; zG3RP4mFVjhGD5fev7aXYiyr4qs^|AYca`JU^WZfqp+G^w=!)wGh zx7+<;h~5y`hBG~~tUC>3imjPWQ;~Uq!)mFNI**TH>~6Jx6)6;Ck1IBCPVDBCWac1D zRe+6WToy0OWP*T8oFEqrw-EtOu-9E`MPlBEI97q&MRw=#$&n@*%Ma-joQGf0f{a+c zQv=E&%o#VQV!~2P?}H9v!z|=;USiGA1(w8KfUjV;^L#N>gGK5-GKw#l@49UyCQkb$$}y0`3Lp9AVWWr_mWE02j4Z5}`}B1D*_v38jyq3YS+d6w z{p#*$tcFH~#+0Oz;AqY=MarD?+Qx`iN+i>zLd>XD5p)q))Kx{z>i0+LAa7sr60MS0 zG#t>xJO_L0IXkP4!|(Y8_vkj?R*?nKTXpu(7BwzsxqHi>S|mEkZtRYLtjDS-yV>t%F&n5Np>20`&$d#}M; z&X<)pdfO7^UXCOgf2qJMULk2EKzUa48oVav6=|Gb2?Z%iu?8CqKlAoF^+Xtxpd)*(<|d(+HVfuOxcRj-AID6R;d=AG6EfU^YKwrQfU?lr43eB`GOL?tw=YlB%)w_R+-t*SEs4L>?5} zONR-R==56+(i6qKZdkl}B$$LSN9lH!j3!1!bQ9XY%m+O*!aXh?PrXOgDs?|oe>#7& zsINdK8QlsadW7T;y=G9D`1;+}r@(9{GGhGP8%Na(-NAl8jCQYAJ6?@W@1+y}%F*~x z>c+SKUfH>(8uqK?*WaeK*xh_?kzjQB2jH7I*)eBWfYmnQ%f?f@{Wh+O=(v z+ZUS)8y$A@(LhVb19uSgOQvMR!1j=@U6;9onUn4rgLiVmzR<)=3xL9gCQ;fqwt3|p z3uq^2r>&~ahR*fOPL8s=q_JUrN}s$42-)Kv{Qw=)!fFcX^j#^_iA^}jgoB!k{`th? z2V$Kt{QKYpBVn7`FzPptd_sDT)-$3Trjf(^b5K*-U_W4Pls@SJUJf1Lnoyp2QjH5P zwPjs(HVn}W7i02a8t$iku?FRjN%4c|a|jJ*qDHpP3&tcTu3c2^&`WE^B1~!h+HDP( zQ!e)}(ML2~WR(e!x0()i@3A>BkDWP(b49v4@h@p%7WDETiRY2MsqfZGQrH=`?*+m{ z$={~EyGiwZW5h-A%73j^+L}G8gd&=5S5l)Rw{pJ*R&xy2$Dq`k`$GNXy(2UltGTHf znSOSIUc_mQuzn=$xX{g@QmRhw{N;0&;+`I(>BSek)~;i&+WG)3B{La27@s<*KC18H z3-nmFu`S|(_2eQFN>OZcST=(Sk0Gs%&M-eHe9uuP-J6XPnq`o>+bz^Zq+RY|nE)EY zlgF{7c=4t^6*hI(z53S%Di{UsWpVzk^VheJX{k8)V%MZaC71n~WxO*=oGg)LQ*6;< zGv{v~o%MVR_H4s@NoyK!gbf)&qzKXX=snFf4`9BuPYqqRMXeAB$y*KM%^u=iP|6?F z7rOTkQt{{1Y}fGGr9fA^LU-+BX6WLC3QT>~KJlcB$9u9Ky@YWr+{a&oU8Qn5BzXXAD&7Thn2&@uA^0cXt9~K#?`FDhx|4y4uWc(0)BUGBB#%x_U^8r|l0N*iPe#KSxG%|PhQz2g z)4Co33)WUu75y8AMw_#b#&EW9L|-@_kdYfd%|yV2IDt*ehhw{mTd~hwmMGj?9Su+O zpW<+9(v@NQ?CaGe1`j$1XssY)uwHS}8k+Ivb<0&wgIjZk`onSdnd*XcrHQPFntF^z zBFe&{@$7Xgd>cn+8P;) zp}}FDNUTbRUh|=((-t8eebfTG278;jA?gRIxw8Reh{E&v<%v2m*GQKS`Z6DSqZVOy zL$L|ts4j5;M16~Yr%MGGe#dibUIGf*TG4xBZEXBt!ycZy4=()RGfvaul*1l#0MlGHSpWkV8aJ0&|B z%UYmXKZSx=x){Bhyr>#>^K@;Xil%ny?&B*Lp`*Shyf?(rz{}3(7Bau#I+J8IeN~-O zsDC_{9IpD(X17BJE@Tq0Pnw7>!aJ$7G^5qRNnfybu{i{{;~6{MaJI5^2dn8T0J7>J z@H!A(z(}k(9B4`E(Z}$JcVgxhCT!VahMCju#JGYj5O*0^5_{4xFiU%3II~~6*otjy zJ$1Ilu@Q>Mv*5?LAkDy&7hNNk4&%@3&Q6O~nL0pEj;r=&`ka@N95xMvuPhtaqoGFt zKrDg%AfoG^0cSb@rH0vkR(HA%y*2&42-$^M#)(IE<7-o2cXh=MEvjN{V$KnSZSLnr zsuo$N7jIic^zzQat~5QrG8ciB#pO3vhwcy$crP3)7Jaft%xwtZLLrK`?)cn&0^_vb z?CMNsBr(T4NXD1p28gyG`IHD`f&yK*9{H+5J##TxAnz1=q#$pd4~DH=;%0i!afa(L zDDk2NpO@apc(?B?LR~U1TsL2D;TW`=v?DaUEAH{Ip<4YUqwi6#z`(N`#^LZRW8UjY z0qe8+$!%R|?rYX9&HN9^=_*3Q2^>3nmMq6fyd@v+^(QoMevNa4bkdr5-LG08{1R_; zvV;Pxcv@s<4tO{orAS_(45f*THN|UFZ^@?B8su#uBC(PYP%OAWTBsle?`~A`lk|8X zqIfMuWX6tVwp92Rz_=C=kkW_ce3`CS)28uIWitFOXA%w>9B!RGK^%cWq3Q`bd$+Yh zrA)4JcJNj_^BG$r`A$iWdzg!_wVW@Yk}~E>&XIKaI^-LzWV9FEC$Hkd0y_&hQ;2*| zzX|6gP-yWN&oVSVLF?alGl@fLRjC1ea$>#G6eAuk(=Lk{%ar`^#=>k$yhmx8Wx>U4$%lJ4OP zUhwVOhW9qIA8nYJms%iS@6xXJ-)M9=X9SA3>7eI2KMqs{>D_9pUD^xe9p_m{HRg$n zV}X64MF}OH1pQQ#Rik#9+)ud_bAd8E3;A7En*2Q&V!dL#_}d>!HSyjCQgeo>$4MaE zDv0>vQdcZqEhcJJixQb*mB*ejF|urrkzvr!Br$SOD*0lF=wO|WiZ@v3En%1#eW7X1 zE9OogIAYxPX5Nl`MrA1EZq<~Zwv6H#AHM12_X*Z=ujN0;>MBjPg74DqGO>T7S#NMg z?`am;o|=!$lgNT$o=Nk-XCzGmbEoFHojUnSzk#|G(pg+7GG;i;%m3*hVUk+9iBf-4 zVwiKete@qie`_r8S!*rwyr8#nrzB*TN$Y zhY}qh)S)ZHDkMOH*#We2L@vpE6E+57f1l{6cxIc`vR%CGFHDMbyQgtrb> zTd5z@k`2*}2l+9#l);7#FNeLfmfoMB9EkTj<4qxqP8oK)B!#Q0oS%u3oQ^#n2uKBY z*h%2uKK4y*NSTtio=G@vUaw{nYx{}jdyD3%PnvRMNxt8F8sSOmUxxc6I)=m%k<^PC zYlKL+#fKO}QlS7oB}vO#IKxvP7PNH_g^h9UttSAc&TlTXReQ=ihrCg#=)*%>Th$eg z$Lt0l8}k6i+!0Et_tEA6&owC}e$%X6JPRkU6%PrtYvfX}*rZt~yOk4al#{(Br;$d+$jRf*k7?MAvK^v%>;^%IPJ=x$ zYZxIo5c*bz&fhEah#sbj_9M@^4i>?uZg@#e6r_W@~2DX`yej?0ubfG`g z&4E|~i$Qn@*NROiU5|Ou-K{or(aRJQ+m9|=!IHkkJr1U6yVX$0qc0sN&X8?QQ=eHu z&jP+a=n%f|$ER3SGObgP^JdQ;+cfqFSeNQ<#FSmK>sF754=r@PGW)I!oar1SlVt3+ z@8T{OcB{(Nc$p`3Q@}0r2t43gm2=!iC;RkSBHm~-@c5&bf^ix^dnK2&zLPJSz~leQ zVa(Paxu(akM~E%do5Agr2|2*5+-3f>&Z1RNOB=a@^^KxX+1{h1E~Ig#i{o4T;YVpl zG9L+0`KOO4bx0UFcB;{&uuLAXu~^A6Z|&kGa1;8RmicnTUn%0F-wC$s&b-li(xUI0 ztPD)y0ehn;;3Fixfcv7d)g@TWLwZ^+3X3K|^wM{KZ1TgiR(^*l#sI^+33TK_&wH=z zP0g4D>1a}jtI*sU8Li57W=R-!Ewad1M3?0nyo#s{a%OAG_aLe3Q1c^}MwcIeVo}_W z-G{=St9JvBs3O!mCkIvPmC8iTUWTybPYkoLZo_QLpTn!PGIaxj*HsxQo29-KKvz-l z#;dg;#lnEcuCRfI_d)kn!hi0z31XD*T_>y`5qfV9K+G~{eMjgJvb+EZy#h8z{Mc(a zE!dQwQ<~%zFb5|Bibk&Ijkak6E^Sn^czkoik;*Cc7I_5$qsanIM&(l57 z2oxtD5YOReqr5tKjZ(>c;0_^7q@w4dRbwQ|S7sTCOOya1=TSg4Hu>PcW4x1vQ;XMu z1g43h_}^|~k+OWr^_q&9egw#43~+NP zL+MpLcnhaHpsI+R1*Rb3l_D9|zpH4=Y9vw{uhjv_2|VFst)udjb_6ZFe{V+q%t#nv z!dWJM^twE(Vny6$lt6|UgT3mjptKx=!|)z}W?1(lQoBQC@3QKXu*ugZ3u?ufFk1}X z{g!JuqXV3nAYIjo9vg`9j|6)cVi9cigKBAWbu3%LBaVjr+PFX7XS);vXp;BU{?nv47&y)=+85 zJ$K|e?%y`>tZYm`RsJ@Q3?EyFZ%FlI&6vJU1vZ#FkPZQG2J{|&5VDKu_9Kj!ZG}<; zo$jyMY^{ab@Soyo^_cRb-)k{78`{2nl-B5j8L%~Y=G zXg66z$u|wTRY?&cz&Ac$ko9^T9CNI99DW6Y_$eQrtD;Wd z9NgJnB;SkJl+V;|+gQ^4tTr4;wF1AEEf6;NhrVS8gtxO3iUa@ry*9@5sx?$BYE(Rm zOSIyaH@J+f<~3V9>J_2E843uEANlOc9C8K=B7@d3Ek+Lk(_M+=1(_$kq|-BPcDiwK zR{G}W#`TtkmTP&Aw;`1^2eJkQZ6|(<~ z+)Y<`!RcDjHqm**Eevwi5VVp0)?<4eDOW;W54h^-}Jwr_`84$+-i`$cn37FVTsL&dqGHQA}(ozbtt4#&PG(7<&P| zc|;D!7w>G_`}vt~#?cCbfY6V3#6xXzF^C5TG*Y}FRP@H&W>ST7iSJdk=oYU(5u&%X z^XU`04AHQuV`37}_Y;@@DXs1n?EWA*tVF90L?_PI%PZa_+U zFf3o zkNF_EzROlwuM&B(KgO7Dxo!nq2y#OU5LUK03*jfEnT>o|C+bRO>0*zItMi3wJ|04} zy=hYje=As@!c#CdO09fqtt70x>p3v)?WYt28Y4g~0|^#9VA=4(?GSI_Ryn;>P~N$3 zz<;Qn;cO5?)}(zKGrDfR+j}LG;hZ=mXees79Bt_3{$>BVRvweghl>W{w77v7iu3}4 z*2uOiYOP}TP9Cr0VIxoE^Bz;W`(?uGY}bMP`it7`c{u9^Xq4} zX3OZX=-uTjZNgg~^VRLksrQ%&iulqu!3PsP_%<6cI#4XPGhq&CG!|H(^XCq#2rrx1K^IK%5aeS8C3SyxvjXOqcAn8BC&Gl$&23cm~+mO zysKU8)T>lA5oCF{rVj&#ASQybiRLOK8f(qb#dSwJjibI#AneePV@&9n=^uHi#dbj$ z)D$t?OkSmZlkAI%M>z!M4@{7;o(F$qu9@HvL1Q*H8S|$_19{SiefBa=24BJk_;+H;I z!_igHHs4!8+AdZhVl0$lVSB;D?@VDmMco;`|M7^++1{6oRf6)ZA*sWqV=E|NO7=-d z{l~W!@lO$>rFz}V2(ZEo%ydFoKosDVP25psaaqTXz#4+)p=WL)HFWTt2@4`d_l(6O zM1g6I(pCzMC}$BgQ{_GRaMdzJ1x%=(QC zzDkR;*KUG;LHDUuR|<6O5p(TGC#%qe+6RB`^r=1@dHp~#-8EpgcOGi_nmcxNMRdjT zhM+``-T;4N1wJ+`yOxcTj#+R8k7gX%;9dn|C5@{)JvW?~BK;g=bZv^Ghg=oBsoFI% z&!d?sM?gNNMj0N?9F@pVJRbTaJj|?`%>|Y4*%ByqVG#*W&3UQzMxw-}wjY#yp*HL5 zB5)yYDO}QM49j|2;yA6Uf&D>g&B3d`6Y^2U(^qr}(=OKFfn4ru2_&pCE+d@F$=Y{y zdTAXp=|IHl5zYc!F*L4egeSjlNMu3wl^6jOcsd>qnBx5U>Ay-4&S))|9YAOGOL|?pnRl_A)4U6R{U=xJ?jdZB@ ziMesE*PVWJZj65-nGMJfm|7#(C&d9qVS{sJi|XB%MgZp^!$xOKco%jK9-Eo`y0cN{ z$F@>rhQ?lf#OMWUm6Dhh=Qjtea}E^1NIf=rP)x9XyxXC&QEQTQ^gEwu1D=$8&VXu|B>P z%hHg{WMH3s>+;jNa+U{&`P{>~uii5->NHw4qbMg6cTydVGnb)D86-YDzFT=-$;=!% zfUzG0Ng?SqfGa6ERp_=GcF$TcfzU)^biA7d?R}z`i;T%v%0$AWD{i#!?QODG!V-bk zIZRP@5QshCn};ZEZJ8C?m7Q_heJ-2lzw)e00 zu^&r)4LWVp)vO>{f$ZmIlX72Xm=w3JM`Q7KG!G%DaOhkOj`(~_yl+n)U#{f4{=Y38 z_NQADpMnsA$1jFO+njrt=hEFduaJ`&D_^?8bBGxk)sH=qt;Ghl!$py=R}knRJZRe8 zTJ&D%@0X30`Q7hJ_NUUz;!eAN-FzS_a~U0c&jGK zh3&n8Ek<^_fr(COD-Y45#jX?It+8E(7YNKu{uK`^H@DYS2b(_aAm;ptw6@QCN=EKF z!TfmYF$K$c_f!6BBo29qMdZ~46S;x=BIXfO86Lsv^G_n4eEdj1DbsIByf*dTr=S=r zBpOij9qIFH2fxHc(!_|}vPE^_Z3MR@Ov2keu#Q-Nd#_vSWiG{^tVf$M{;UetH~_+) z-wf+oqyM${13CX4R$LsG!JLEGqV>*w$DmVDCy8EO;v1D-cO*@{v0{nw+kQVZO5V~^ zPak8XYEys0zB;Hsfw%+heYF0hEEMjLDcfN|OO=+(H*>M-rsRhC!4;fj;uX*uq^|df#P|mfcc- zsGctJ?9(^oq2IKC+-HTQ3?$ca2WB>G za|>#wX)Jd-%Mwl%XZ`%3iC-8rp2l%3QnjWPD8JASg8({_1^1N$xRy%qH*?e4%Da@R z42aUjK_bQ8x#5YAtL5TITd4vh4?1rEk>UC4>)D_*2fcESvrOF5H|j_M2#Ebekgm9R zm)ky9!pH8{P|YAP#$4Y{R-WzHcND`XrDw(>9aJhhHkJp;M;@S#1bi}zF9oX8A<8f1 zCBUkMR?q47HGntEM7;3|m0=u8$I%ff9Ox>#^+uid%;%r(8htWG#wDVSa8EGS|-i&hy)b?|Qz<($t6jg zBbzr*7~4}^3$fZYxu`Jf7{UUpi-L0dqSDBhB`VPgu=&rmV_IuqhA`slV>b7gQTT@2|eL(aWVw+ zUJRcMZKap23%lqO#eu&-4MeXgHAlE7YcN)0awW1ef%E5z{<^k?);^Vjx>N0Wco*xH zCgJ;S$cb<261nLR!Fw@qs=9B2yq=lHL^k89Tl<4lY zlqw4J8GrxSl7Q}?n?V5X#MS4Ky0HIFW&JXF*s~zIelv>e|grY}HJHkamab z&>7cXBThBv5qn&*+B0Dm!4hZ%RByr8HY4*K+JQYy)nD>@4DJSBO9QisUwzNyv@`8Q zWwkRi);S*%d{XytO*M-b!1X((-kgrKQd2d6H%=+y0*F#G5d;mc*iL9ZM?_v=yU8;5 z`oa+JPKGCXw~`^q=K-o*;gEx}d%n|k{;!ZDa6-+wbRl#=_h$W1Gt$N7mfC`$jlJBq z1!B~-FZp#R^EZfM{Ep{I7v4~-pUpLYChv=;n5JA0yd*szc7(`4_?6{2D8SKR7M+=O zy37O~C1o7!wEJosSS&~CR3qIv80rf4GMcc{x(4~}?H_8(3`y@C0G5&O=yYS08s;#R zN#d#~G*LChyFDLw6BJLZ^M_vJ;XqyKIAHuEY}KYEoH_f59{f4CiOj_{aKX@@eJ=}Y zari77z3!3zJt(YG0;d8bu8=Aov5X_YQbcHq2<3IVj5eiUTYnm`_Jw{eOpt|Wmz|z~ zM=?Xf{8r6di?&}@NVLO86|YM+O732%NCLqhnyJiokzSMG`l~EoT2!QzkZWKRS}R^L zYTsg2E~@z+D@tU@A+DrDrJ()rf`U3c(N_gmVqCYr&G8S!Jf;3LpcGY{FVpK|IZ&Up-%~+n`SpdGLkHFMeiH)j-XQT6PLAwnV7Ci0QT84 zVRmUZg_29I18G2ZJT(vjb&rI$qmM4iyFOaaWYKY@pKK4nN=hzG{(qet`hO%;@p+h^ zylai3RB|9MJN0S0D-6;+nK?&7xXGFhsdC6Hl6hb{zmTX@7jN|@_%(sYS7k0*fx7u< zYh%-;p1@jLg9t0T@)6o8Ro;HFKZ_56^ZSCfhAGc(QbzDaLlfh6D(L2QV1L=kx~YQ2 zGAA3fcj69+vyPLRQP@p+ zwj3*vSqj~Zb4{CmwS7yG^XQa0aigU%84m}$#_2Vim4>by^lW+cmW1>h;m6g@c?SJ6wv=N;rp6U7g#DEM^M?g_5S*n^>9D&$BJd?C< zWeg>NyJdgm-PI>rgH3I(OPWR-BYo!Nqt(%;~_hT#mB@^wQ&@!SqD-ZCmtJ^L2 znBzC&uKO`kfr$mAiR?Gd-;W> zZStcJ{&J?OKDAUP>yWGG6WcW#O5Wb^>mMLYO$FfDsDWhHdhzX{jba-mE}SYPyx5eF z_RH!1rS3=k>M$tnDNQCp!9B?}BPd!w-sc{g*c9>yvH2T+zS6HSwB!Xq1lJRRUW3QU z!vc$6AH~d|2S;x9mFk|2nHjh(Ca-_K&yA;pI0zWA+n^%v=Vg!@@QYC&2n2@fLtXjW z{p;x|@c7iX${z*IZNCRGISPQ@z=^yS(=8s7`Bz;50Nn=LBIXb+XYR(-&WabVfM@vz z%35qJl&M{{)&Da}V07&kIWYG$18`s`TL|r)wv7mu7(Mnlwfr*wU34S){hf!7ec=$> zs{u(`rh99~oP^cceXwLo!Rp)?CtEn6QRx#_wYeBSPA~=KYUC$oMpXP+AvyzKn(s9G zpHQ%w{)W&wL;;C&PYmTGl$DV;1v31nW$dp#$;GWz7(GRu9t>BQ*3?q1cua1VT_2W! z9Aydd-*qQSX=y04xd$}O=x^bcb6ImXgI;wAr zU2&n5 z)9w74)EY-3N>bCg?{j40;~dtnhsM$ESZ>kVev6>!b%#>RRCZ*sEk+?Q4~C|4spX`Q zw#rx+T<|GzT|Q9ar|3=mqi=#hD&>oI@{N-4;)I3PnIPvuEkmBZZiESg17KeSlbB12q~oA}*bRckP+9nNS2#YT&FhP@ zTGmJcJn{{c=$<6FmaVppRzvs8BcwasPusA`7TMVJv8%o{{9~Fo)akG#Mr`Cm$?cU| z-S$GgMAUZA(Lu$~6>3{2knm(X*PLWD4&*lQNg9kT#~zn`q(z%62NS@GpkdsBq;`gC z$e}t(8}1@TpD-qozcAN%aE!vKVN;8w3NABaOHXK4g}!R&URHz51p}kqI85$K$kw)G zltWoh>uxrldWes7WM21|zW2_+=YFpdNkz^^)RO4^vk~&~njx56-E$`n5G^n9M}Tv3H(UD zP;DxIB|Jeqq`Q`*zKql=dCH<{4ZI303c+6XN)R^1&qSBC+Bk$;%2n4K=n~A!2}SWJ zBth2}*~#|()Od=nTQ|o=u)d{Hi}Nn(Dbu@^F>y?me;JQNju!&AKMm$gj z7CBm1WNUtZTn(Y>fmt(>6%R2Pj6^brBOhxvodI)rJKXg9m&~lEgN&And!VElH^#xaPiB%>S|e=^Ln` zxDRnky}szJ-(Njuhp`3Cf<6_?-rM>=(Q>~kbX9T{g>50*9US+zRe#*dW&)AQJLoJf z4=~lnuqa%^JUK^f!=z}}K79cci9_bq?Iu?F$@;h+&}AE*hRo>-OhXWmrkT*0$d%i2 zS3!lFnW|dx@J}Xvk)4OOjHqSUJ8Guj@Ezxw&b$WKw~J|0nyHNCP#At@pr^`krC7?{*3tRhK+?GiA~01Z~>$n9icvAQxj8J5vY ziCmjrK?B*AQnR*sEBot8l}vb{SlMQa5mMujzfyJ9ojOPE^$XjIXk65E$w1WSaxx50 z;eNScCKryo+3?zrQ0%<9WVN`aRp=P59u@A29Ow+Uz2E=f%bz-JJGr#M%I`cC13^HV zF55cx_HMiYULyz|#;ODp~{=dYqX#13E!xbQftE7n2u_xVK7C%NNa;)SQ8394+$ z;{B2Z4FrhR=+a&1<+I(BB-IC}IZwb^D&(R(A+eFU(xPgU4}@f#MP1Omfe4xF^kzJu zS8ZG%Qn@9+O4F4BEfU#rD0j9R|0GSYmVO-lHBaXAQvfeKt8LErc$9C+Wz9NeSVjG7 z-XMm;0k_4kqvBJeJ(Li6YA@uy3^l3z6$k0}upAzBHZZBcsYXAI$GEG@RI$BA>*Y*N zL;y@eTKcdC-2FIRaROc-*+eh!QIS&k`*3WtO)rsOM4O*jHRUNUk#&JdW~yPsX;Ze` z%+D(BuKdzDo9)cSPY1!AyO`Y2m&ENYLwAB+@LU1idb%wTu1(+NAp;WP?a;4DPyzOZ zVcwwXUmu8rRe+UG2~XADy--hTNb&~XC$H6>SNB;QikPy&NMU@7)~HuClpcXar;7xMfVZHd6&3<=45gh1%drh!6xG;bR}d{rY7bw#lHn zrwL>Hei9iI;r%wi2?Z2Q{EGq0rrgz!g!#+13KY@g>A3ooHUYyaP$RGwkV%GhZ?wl^ z>BG+k5V2O6xfQ-;6Sd$s6nM8=lh5R*(6vuAj$K47#-LzVT`$ezSr+m4%r5jH(4~@9 zlf=9!h^P9LkT8dtxmX?DypecDGZwFt%2`i#k0YU|nx^}it zuqG8oZ-3&6GVe}-P^iXvsNFF?w(H+4i4SKB4Ih*@bQglp+O&WghvzD66g}zlgkHM( zL&Z3A`A7>ExNWc3x?gFr8g^K7zVW~Tc@OjdtQt!p#%w_SYc7m18F22+{v_Tw>XeDoTXzLM zOyW%vlI}VrcikhHeLEaeFw=T=SpaopX^0^W!L|Adv6D{yjlVS5C?np``jbT0zA|uo z*{A}<+Zen-+n>*rTHu)Xc>eA(9{uyfDVidKMXS(uV=H4W=l~b*e}@J__Au=_^)lNk zFOnlXWb>;X>epibm9&wFyk&!uhuR@|4koa(;c!lus6k{eg~rNy4jmT1A)UZ{Gk zLEZPfLVMl4XGj`~Y!zw!eSq9$&Un2fB>2hW+`yX30gzG0q$|o~rD`4yQ(&h)M(HmK(!paFSaU?Ae`b!=_r)4@M~wGjK@4E;Uu(ml~Z(&eU% zB4*%PMWM8L%EoPj=VG{GG%a#db7okrY5(%lhAe()_|vod2Sb1zV6wUR%Xj)mG4q4k z`UCni#Z22o{h^ipHES-r%|&MvXb=o8=y&&DUoj;qimQ(M!VqYU%)MPb)NMxk*N+Wa zu_4ToL$|DUjCH6tghxT`Tv`45L$|Y*2%nJE;WGGv((T#id*dC&U++t>)MN>6`6(4am1k0yHI3^F(D5(XZ}4p@z>8d) zifOH9K%;}8TYGdoHo9rj>Ck>e$-BsSnN`dp*BYqhP1^&s_Y?h zibMTuCL6YxLW%{Qi{)~mVxv9>eJ^0sZv0_y<%9mYt2wBKYI`xgR|IF)m(Ou2Kec5r z;7K0j;t61CRJM*k>wZDG0YZJIg?R}D{i)*o)O-3UD+6~!zy*G%sH)NyMa!a{rncTH z7p)um_cqTI^AA~T(E?%TVSO3p|5!EWv0+K&({r4IjlDVPRa%oF`2_iFVvlM3xrw}+ zXOwrS3v2uMEr}O^h8t@lpPph3N3scdY-PzHCNZ+)q@dDTuhYe3Z+Cpiv zm~GNRqwG`?JD67t{s0S@K&oQ2*)+7=J@$sn8rK=tY6YATTj13`{5otwifZrbG7p4X zZhOD{uQRm#2?wN2o*%aP+&p>59&d`#MOC%9f&$?v(cHH&jC7@7{G-f-EkR zmc>jhvUD>}T<_AWUNGUV<-0q|kvdWJLc+sQwRsTYTBkL-p~c|u>T}V9l^eWjuF7dK zMt%s0(PY*mk8MA7EtmfFE8hf2i`QPKA>e`Q~oJF}g~ z0r=HrKv>)rU(J<=FwOaO87M3^9NO`U^Als>lPWloZqGMZXr;0L^a4LvT1S#YS!l!h zThNj@RBmTOmdyQwzCad)pBd>gn}ACUuXngcFNbxZH*aQs2D`5PDkRYf!?+SG7K{V%B8_mJ3$@8~VL zT3z9A2coG|0&0h>gMvSxvx5&D&qs+*xf0{qY@9Hi6NoF`9IiKpAm?RPvdF+FvRAwj zy)_(9kloYGrVo+4n#*b~^M8wH*6$&Q*-GrQvMplZdwNr08iifOnvEx4;Js7BH0P$G zDjAYn!ux;YSFK9F4M|;Khu`rN!_x!=%@*kN#@1(55fSM1niHgIx+QQ;XrAorr{2kL~ za_YUs`kW#$K?MLe=@XMOxB!6COeDquPAJUqVQ&K?4Ikwxw8On_lF!siDgNMpS3!jZ@D&U##E0E)gGKtON;Hbz507r^ArwWkkI3eiC*ePK*6&p z=Kln(N#3UT=*bv9DK|%LqkVMXyTx5@x`4pp*%efS(;l6vWo!dz^>6ZK&w)kz7-1@FVlV}u0ulKKS8UX= z<-Ia>&CA72a=eH2a}R`|3Y#Rinm>;o=z5DceztGgI1m?g3#|6QbOF{5qq+1+dNn{*%P8W_<*JBK|_7gDhq6+J?>qq^M(n3JDMToKJ2}j-F1nz zr`Ou8Hwvu5IGcwg96b|>^pY6%bxY@kmVZ%G1?>vQw@)cyF|=WoFT^XeQ&Z!LygJLz zP6`ZnqovEN*K*&r=iwj_lsmF)i6DruScz6<)OYAGwt$lcamp}?8)PN&wceFSN=^}+vKT}~XG87y6VSn3B$T&^o5(7!b z(~ptq8|ztjjWdD}2`u=M{3SiJs}j_$|6JkvXCT3jvCJA>A{{81PBISvaURG7N25DfVj5nVIR6D< zi6tk(npc^CyLF!3?VUSE0%tnz&M%kuCY@1KeD?bdF3{)ee-tdTwCg0uWiH@1Tab3G zfbrt1WmhpqyOj!ZlC8?ESu)K2C*lhy@>5K={IEaIi2-3Jb#2Cxpaw7t9g$X9yYG!``+ z!NrQaj&ku+Xb@hnRD>-Ca8u}ciW%af<}l2?M^e2DUwuF% z|EanDsTk57nm5gyz|RhJQr>LaME;WaBm=>m|8spf+ss#qW%!ZGeI#TCqUr-k+mbo$ z`VKW_-w=FRiMslw+BEcm;T%`>DHgHQRTyMPyBp<~f4d}bFu|pVNe`A7EYhE+IZtt# z;xb9PmVuiLH6{#oILT07GK3AIx9UOzeMKfL#XNW#*S*?+QqEJ#=*&?y-(}}+s&vC_ zEpHijzUH^IIvdbpUe&a9HgDtOll?i4EcBT?y0MpQ7}M2@Ez@0LO{A2yR`G^JYUU;B zi-soBdaYM%o2+k7X#gXckbwUpDvbLMaKL)$)(-SWg~;D@a~zJ`6kyn#C+sr!G2K)D z9ZV=MwBzBm9;pe*Tv#yro5bpXp^Jl~O0uDK%_d6)J|QonarKg@o{uR1!u3%QJo%|u zaYb_q&dR|-%_$;L0#kn$P~?6H1qX#AyvZ3wm9wk8RG+lD0y1V7Svi{7 zb-Cmuw{1q9$@le84&bzAatL*Vozpcb9^Ixkp&TFX09!|}$9oIT3|DU#9nobcAC@DZ zbJB~OD(TUiZGtX*4{HBMpvTWTUeiC+A|_O%A%i0xf41B0Y`#Y6{zp>jx_lcb3JPYt zX8)tC|NrSu6+yU((aP|GMI%7HAy;7WW41YWm`uI~Z&^ofWXqxWaP;JqAVjTyW3Nd)i7(QLk1&6o$xmGG%wDcFF2OakCk&vJW(N`st5l}@uZ`mwj>@I^)}x0;8)tluc)m_(9Y^(16Dy^&o2M9wizo#qh!6ER z8TX9)ueyo?R6b6GFDDj?ChYohHE&dO=dXyDksKUQc{-_x=M>^GNPJ5LvN^vCH2afb z0=marjdd|9gPC0Ad&?23)fNR8k{r!tIQA%JjEg!&@eSNk>E|@X*%y^S=*s@ze^!^Kb6zF7Iw6b;ATF5wqwX0=$`%x@~oI#_sJBQl*3T3e>nF_h~yI{ z_EuIkDFmj|_vH@a;o&a0ow@!Eg~y^!E~Y2yMuAS6%2FpvId($DoK_11Ax}DO`g4Pe zs*_}6cGKg41IKoDM~k{zo-rvg>!}@MV0S3L*p!?W_&$dOes*o$uM2ZUCVCq-wX5jR zTFWAjzd*G50Rw}- zE0=&^p!S#uSIYZSH-A(tczuiwSytIW6S!9q)>8wpk(Hk_k(w|k)=UmK{ZXoluT3v&j-|>%h zn*H->S@t;rDTO1Spz98)z477+w)WC%8EJM9Bba%66NjA`uGsV>kf!L8IrpNqW{$d? zCbKN>tA6O1)QZ7d8%yb5oB#~HcjCn@iBWRr424d3V z18Vn-t>lIF{hf1Xo%jJJ@KGEerdy4*NQ4SEZIo7If_ljby8;hO%jzuHg4_u!e{DtB zCdYGFqy&+lL3d$v$2Z(*fKQ8Ut9_Bft3X*`*BwFJUVOn#m1wgzg1Wv;E>hb$zQ98SCR%Py0De{Akzj_PH}~8C+Vp1C zFO1G^OQDZbw#TdAYZ~SFy|i6=oK@_OHU^sOZLb_kQcMoT8^k)X6Lj0dF?Pq&z^b$m z@kA-Jm%L+EA-|ZUh^>1dc4aE*)eD0XVweau$-KmI(wm0m?#r+*y^JQs3v?+bfB4PV zja`FYv>%I5&B)n>ObUs17H$f-1@cErB|SOd9pv1M%{ZZPEdd+h8UsVwYV(A9lK70>zZx8Mu5H(#_X*1#R=%<~7V}Sk%#| zBN2xp4*!!-aTQIy?7sQq#yuSJpR3D%l|0#kWtLq=C!#1z9o0U%_!DX0^7JuURJ%jI zoMmhDIGbd_&Q#qvdsc8>p22hrgJpLXDHpS?U{nf{C`rLvoM$#_Z=%rH zCV=VS7hDHHCc)|9ZWvnd9A6bjjozng^d2eWCV;pzDPB(Bc+X>0sx- z{UxZd%oOIF`Nt`w1z~qE1`-=?2n~@v!H+LXIBEjcI6t`g0ORQ(U%UhbWs+L69TKj& zQ8cmb5Z5FG;R}cI@B|8NW#X3R4>#!N{fx=q0pYgq>a$Zv-w_ba+!S)yj|Urj&nCdAsR}>zE4#|>Ev3S#5NrK-Os%`SOPkK5Qmm*_WWTj813k=+;YCU| z^GW{{*kr(yPC;7_>uMwmoTFZ}RRJ;mZD9So?PPE8oq6Egpql|dj)pmC3bZn&VV@QsvnNUjRJ`=EA^Kq(wq3clI|5yh+JnBaZQ zKfot_P$sdN*#Wv~;T1QreL|D~3Y4w|OldgEdjp;9aZ<&(Pc*1~w`y}Wc^WDu42zpZ za)2LL^7f@^y`yWutUtoqk|KZ*XRCBJu^vY@!1biFS$qUKr=5|5BTiOrbE(}RdGzPh z1~&tvNp(b!F=gdqt10wwZWG*U%+Jp)t+FeL@@@iu<_60ick$YlII`3&&kb) zlG2D5=ZqXR^VjVlURCqOBSdQ@)oSK7*5x=eROCS(G(LgDg40136oeQ*#PibzV6bp! zXXF>`{=K+9J!K>l5&RAMhmJv6FH=yWln#lG{sfzIBUar$PD0T6s~im~^% z?E<2jD1<4zLwa7;m(uF(tMMA79WBgEUeobFIPLdFb`2LoF}f>-<2F9nHj#Jz>Hq=f zlqUw_hUC-df>PE{o0SWOTR|e4;&a#nbv25`+DO$k_Hh?>GSHW-+(DE67>6WqVf)B8 zf9;*#+P1WKDE7}d!)d=z`*u%UXQ0rU9Ke)x|An7$c%`^O?l=cooWb^MG9J-ZU0Yzr zNJ^3|S%2Btc?I7g9rVaVxJW^GU*Y&ZGcTiw#*`QcF+6zS2#T><;B)FY`%^rigMmIXstbgOfY^!pl({X!^Xo>2|AGW;U7+=WCS~P z!@P&SOasmQ1PM?#t#Yy%M98c4<5wx5-2QlI8-Z1=!>>emqcO@=(KtqbbImA*j9OQ; z;;=LsY2ip>rooaqr@bp11=0%CiFI={x|?pVnYbBd=1VoSSIB9{B-DeHg-KlSLo5Ft z>HDK*({+fGzb04*W${t9G|Lj6`XRn7(FMDS!gkHPE}02?!k)^vG#ONkDhU|40;IGOAkYWXT6~hQ;0kS)s`r6oMmRQvVz*AhWTgb7Wot|bj-uM4>Z?~q{QvZ07ip)ZM% zY_?KVbRy8^GoLJ+3O0m72k1zyw9tX{oQ;QgeeMnVygL&7eOcj0^p>raY1Zb7<}wiX}TuQ`w$Ep6F0 zJ*o9tehN1_2Su$;Q`WVhm$VwuoHf@|`6n9Xxnp)-J18)EQyl};36UhFQG++{Oy01u zTj7ZaXE!1e`hAf{Kn~PK;!q^EBRy!sljjShv;&THuJrpEiWUP+)Sf$F^=J{JPz$(Nmx%=;bW!+`ZEd_ zJeYvB$n!AP9Z_XX({t7iveHB-mvcGM7!2<)XHSZrS|&-2soAR|TwWQC{EcXGibnou zF6dQBtogEX`>si-Y+qfHdGhu#WT_!5>bzb|p=ls=`HHP8y4x@t>rW`3YWUZMa@8I8@vl^+qiM0xI;tj%U3j~VUQu6ZseSor?uK|)FEhv`?&-=fsDNhy|Nhp2}D!8yaY9&21h=Z`%jpT>J#*s zqPk4!-LC$XmyN7lQ|Ofa^oi|I6r5@XaM#mwR! zN{$M*vX((B84MJ{LB_p`oFubAupeDQG@()bB>(^)+-0=!EHncTh)5_fuk>MK+aO8s zSjFEC6(uFm`JX@{Al?2SGAkDUH~bgnCyN^VoLE}cXFxD)^YQ5p}g0gcp= zUoL%0@jc&cnv~)j{^=BHxp(Zt3DQ!J*xLh?r5^F;TW~YoKZDl+&D61<|LuYNh7SIJ R?*U+Pu>EKLumAlw|1T8_y^sI^ literal 0 HcmV?d00001 diff --git a/self-host/session-data/sh.measure.sample/1.0/blobs/5868e30d-da1e-4579-ae04-838a0e3c2c6f b/self-host/session-data/sh.measure.sample/1.0/blobs/5868e30d-da1e-4579-ae04-838a0e3c2c6f new file mode 100644 index 0000000000000000000000000000000000000000..82f5a7b0f19fcb625ac8474d3de5b5f7b82de886 GIT binary patch literal 33918 zcmd421ymf{wl>#pv!?)zwvNt!dvkXQ3z|D(V~v0H}!w%B#x1QHKQp07SqS2RNV<8XzGgB##XW z+y#JQzr2Gp0svOlj`oUTf<)>XnnW+h{@C;l9c=%Q|IH@|0B}7A0KNkNU+DhL_y6q> zjFGW}A@HO#;LFh-cyj;%#0V&(oBonrUu1({a>R>ludFBpJSPh%Q=0xoHu#I|;%Ms# zJZJFbd_!CN7kLFJzqPV-db!uj_A+94V`~*9;HNt9g%5B5C<4R)f6XfZ@@ z`~d)YNAOP|)NjDcp!vvRdo(Mk`SP>BgtDBy4mGxZK+)LzvXvl`Ho-yrX-0FYwZE-?s&ExUaiSFb2F;@G;A>TfaUq`jKi~Iil?BmQ8*dxu; zb4lSN(n{u22h#IrpP9$5TePRrr-|q1dZbdm9GA4`XF2oAqxAqDA`ZpPeGJLmHEy?v-lp94?M$N9%~{^${2z9&Cjt*_C> z-mA~gUoOn}*zZQpKyJ!U8=iDA*2mrbpM{=RkJz3ozkMtDw)}kcbnnscZ5I-pX4G+C zL%;;MWHB?D9Lr7-lHMyxaIj*2Unfdr#C%YYnJj*;cxWg^ zKfs|p(OM@O!?C6H6$v*OR`EvAC%7!gh z?A(?niK?pL`pb+!>y+werJc5(FBp*T4-Lg%hk#egIW~5Z`tdE88KCCk>Dnn>Lk4yi z^6i{P;K--HO}d0-BPBrVcG!rPvRQQ|)kDF>wW7|hqHyr!%u<1CG(mX*+2cqp)ZL@TX9 zN=Ls7hU1L+XR~BWY*|eMb=?#vp9_>&dVj%y?d$#@Y&XZ;JpAWS|2}f)MUwULMcBHO z;}QmNw?<9s%l`+`J$e(K4yFV`_)zes?^~aO31bCU(y{I-wY>i#8A`FHaNXI0T z(D6}1Wv7k26`O0ISe*IJP-#atc>jF9a|O487u-K2L(xs$0k@Oo{odJJqV%BLhz+u{ z(@#=2z$>tVL;Tfhe>QtIbN6A`qJc zcdDUJt^C$zHH`CwTrpCVU&CrA%Fa48UoA41f68@?X^szUMo(C@e2oojqU^FhQzxn2 z;9Vmp-T6$~P}*%*7oNm8Lu$wYlLVTndfby{l`sb$KbiR1(JE{!AfHCgqOs&Gj_H*lS`%5&lwB%32s;C3iCoV<#q~xc$jgU#aKk7bI z?(2BjyMETPam?VOhF*df#f(Yio!HCM;G7)e;-O5(ZdjUtDR=imVH>Ur$z#M5h@pAi zGKyM0n-Xh@Ulr*aSm#<=g5iXz3?;YCFf(F@8s> zqB}7PUE2hDn~8f%K^MRDX@xTcRcfHlm6SHE2PwhrjkZS1#Y2$A$Y z^E8tS(|eEhZGY_abL!zP{ftN>%5p;V3i^u0-B6bQ7f$mA#z4@rX}Q2E_W1||n0M%` z%SZ9Amt9>%A^Vf~juQ4Q%^jYabb|X6@y=RaW(K#~;y6~roQEgT;?ok;p@DG)yV;S% zqwb0>aMRZSUb(!4l9m4MLtc4fbsPRnYDIyqi0C&htYiG##P-FnOeSKdRcauV@1%mA zv=26n>i1#%{3r0QTEFc|VyP~tXnZ#w=%;hyvTdqw#%{*P#ieSwT}fj8eA0!1*QoI9 zXT+h$X7t(Z5~dNVqg7db1r-8 zwFrZkxX8SAkY;2oMS7ufP;>J6yM~4^i{3r9u!4Iyj7uI2v+8q(zfYb|Ezkyu$f$Li z17pm!j=IdKKJe~mI9u2xr(s|xr`5SYL{itJ*=$;=&!UpNf};U&Qz-bf(5=6n ze7q@CeuIvw92`Ppi|iJtfj*dYSaG`Qpwj*y<70$W)5B=x=sA+ z2#I~KFYH4;SH8)>teIxp_z{}5@#VwrTDAg1ec(OV^!7L-#dkujWe z_MfGXt(7528@rOfQqHa@5J06q>E6;m#$IODaXL(s#?&)TSP%UWN)ljVi8*4U`;{}x zwc%E<8orC@46hXyojeOxL%I+S%`yyWj)t{kT(vFI_I5PjREhA`pX4b=^K5cs))F$T z?Z=0SyY_g8V^(i&0(L7sRM2Kh{SrE_qUHEGoccPrXW$5tvu&-_g56`DyhSk!ur~Cn zXpo0<=dso;1b`?4b8=NWA>AI#*Yh#=bKO{t?xO}0`85#iEuO1>91>guH87Y$aaQ&% zZN!r|#UO)a5DiQOBY?GzDr=7zQy~~jdbM8buNlkmBT@%x=CkP6%M&M}`ug)=57QsR z#P4T6$y$w)>J|*9MNNUzjvfm3tUSp$>IT@gY$?COPF#DZtA3IW$H4Z38~R|9wdCy) zawl=XnoCW>JV?rtA!9A354C`eg^-?uF9HX#+AmCzIy(teiw~ra! zRC7EclM&q*;5kI zM)r~UpXB_+) z6m`3evVjf*af$#z;QQP%|6dIAKbfuQQ1uebc%}ys;B&^rV~OOmWk+cIMsmqumF&(= z6*F?R#c5-yxVx%DoRWESK#(_Ak+>UzZmhUp%{Lzo>p9bojDuIizBmB4bQ=2^&IBWA z9m~f!2_8F4Qv<>y0fnsi=7N{pYpcr}fjsb&2Y<}=?zh5~sX!-gM#P###0#NU3;s8x z7>=C`<(3{GOnEK3v`;XyP3WjV7IK>y5>{vZ3e2w;J|%Vty7h91j5P>OZ7_ty*c+jK z{Y~gAi59%0xDQ_gBN)v*pg;8n!FE^GR1eC$hb@w)=Lu)! zl_erZgDYjE1@Pa6iH*=Dq{_RkiMc7rYL0j5t*Y60OE==!AMaUE*r}spR!+SQX2^zZZB0r;}v2VM9g22JmMLDNxhd3j8#ymaJ)jluYcYHGw(X~Wxsz5~jK^-7m zMXDWn5YLMMV(jT|(dZ0+{Y^qXNSz+*94~kw6wdMo_A-C&RpfkCc|~dAc*Qe0>N-8T zH}Y-A6YBQhRDb*u3vN-p`IgzvY(B;Ru~Ktwy&quJB^V_<8*+cq88PP zT5>-(8dY45V{HKz*@7H~GTZR88|{aSE8$BPJ331p6-U(j{{J3`|E<0Ew$4d*h{FXU z1Nq-goK&E7@c))#(!~O!BM!?iDqK4y*@f+)@BWD=LF8*R2b_pb++UT99sxx4+cIU=WD)VailAX2bS*r{(YpG!ctC7K0H>SM6s=)mh?>6nT zAovI8?no;6Njg7{8jKt^odWX&@N|{EOk!R2tDa+@SC2=I6V=!aDwd5+-^N5thCruB zQ`Yg-gFNZz4-RsWN+KQx%lWvg{rO+fr#j6F^V$>6FNr`z1XZy-oWW7JhTA_f8_K1JrM^%0&v9!Dixip2@Z)6uS56 zdJ$N_5-`8w8dyKIGi&4Sc_1c3-YB)H3m2klA(wwrI3IR{5})4Ky-o0$ptW|$> z^$KB?l*%m$c-Mb`k>yPEGTjv^V3gnd73fnu)RKn#WG7ShySFh*JtdE#13)3N_YCEqjAk;O!9BlydWHGxCAPo{?4~pOT zEcA{#yo@@XgLz+N}Bw7%b2gLgLlv z!k0h~vTrgu;l}30LU)={FZEnXyoKyOZXu2;E$y5MHPesvnA^{+m<)o6u$6H|l^IH9 zjl>*Yamh#{#!mW-NJH?rW|aN|jS@2B*$FnOKGf*|=4N4jK+O2`8*3$fVH~bs?rCOxaY01`!GF6%piR2>uD8Xjf4^|(54bllQy~36?R5#~ z+u!C4Vo>v@1ecSXRG^8mlOD1e7}k6<2pL)B6ci$gE#BM zL-TYC1DMs2U8k!n27-Hf3t^5D*VI%6U)N|FHsX1EU_=EuB1(9GSXS_N2bmuk6-6lPk(n%)1#h_qT1{pNBx@ zz0k>DLxXrXHK>8owzZM>Cyd021v>Oi+;7;H;sLpXGbO30)Ud|!cMQ!-@ZE7%IG^Wt z<>=h}H%a;lvp}FvqJOhL+@%+A3S3b9L107*Hv9vzqe)p^FLK;2=oHHRwXovis_SNt zn)`c*FW?#%mKVsqUM@@Dva?oPUBCPiL0Z|iPe*bzX&jrkOqw9PnEke~U;!a2mlH&GInLxP+tS*QRt~bI z&$M6F2#7ybL+j z(YSvp-v)*MWbrFlEzW;fwI$5SljR>;Y!mpG@>mbgAICJ*ludy3=s#C|y0d?&6@lY} zTH4O^ch6=Wnf7Z3zxHN#F_l2kZ zvgi{X^>jchjfuXKoUd9DnrnXRk=Jtf^ju=j4pJ11ZFodEy4M;BcR$xF4IKVux8`2I zr&(o1LsX(1ZAtH@+wu)qSKiZbJAsgIXNc-uXWLJv>JK@uQo&_$o}!wfzhvFk;He|{ zLWNZLgrvYpq1`LJmQX2t+Dxfydu+7ZQe|CS6~lq&p?(HXqL7f=d2q6HRzwdLRGdmt z+DLN5qm&h~EKDr{t1T~i?T-=bA!hqWf+z##L%-nH(N>>kF#v?R6*7P194~?7>(qyL zj~XS`2r?Q-b`tq1hB8`L&2S$vm)VnKZV$pW z-Yx7DN7Yqrvi}zM{if_04J~>0w7@iO41`n}7Z$((HYUf!jQZDV*3Z%w)C=T#G2bh# zmvYkzmY?`-Nc;An%KuokmHH~A*KW`X^3q!PtHTbey>Fda`w#$lT*khF?Cy2>ZMp{hqOecYz4k? zN>HJ~@W*vT{!_(@eQn>eap?9drKi(<*wfUbjahC3<>W*tET#9#6q)@w`1Th9DFDLD zu~(oag%9%>&FPT1nMTg7#Y|sND#dtSU$U6}^pqDp0O4y$HpJa}kwn4;IM1+7bBu)^ zpxFwXtL}2}9o_hq;M?pUBaE)o@n2!y6o*zrfH)|j9y2qZy7G&t@uH$ZSsGSYIyxIo@$8fD$ixv*}I1O?9wNdg`cvYPd#8raoldlID2oi@Dft zVl~L{d`gs|mM3}1F)22{a$nRhTCJ0sZUt7lf`eyym53;r%1$2PyEvIh3z%Wrvp`HS zS6C$&h$$ksb@zp!u;iToqW6kA^~)!s*9!q~S|7A4dO0Lrp#BNQO-9XeCEiM?xQ}&w zzA-l-Rm7LF*6&%ZQrio9Veo&=yv@GodgOC9X-Ja)0wMnjE2Auj(p?gFNA1Ues4*F7 z@;n3vi0xi-+!X2`(7#gXClC03f%$?^e&Pc)9$?AoItc0;^_dkh?!O|Me+I9W1uoPX zRuk&d>utfm)9ud+W5;<^m3-0RODwcbv5r!hof_t9<`h#Cqj+3yz39lCjfn$R6*e`2 z0g>fBr(WT^4gvfS;)X3^V@}lfyX)>*x^Wt-IJFO%8pnPvjv*!|OiN5t)(l%;vN&iP z55YDAVpd7rX3zzy%A=>VQb-ww@Czhdp2{Oyw7?&+P4tYfbqbD&NNWlAZr(C95+3R` zi`4|BE?og)WiE_Air`I?6HQaU~S-bD0uYAo~H;%Pj z*P!8xH(4byAv!rQ75fIvpk6h+KE!F^hhvp`<>sDYV{VR)sqs-fAGJ`m{iCXuQL6l! zVmirnZ@_b=I0%T!Vy78rAg{gvi6qJV>490@o31c8r|`x;kfba^!!hW|AWEBwA8Zr~ z#f_WmR?I}F(Gc@zOJ=uGrmh_+=jruiU#HjIMbK(xkh)Z``;ulIfH1)-3CKJ23{Qsm z&tjcmu?1_{rMxA$!#w1aYT7PoyN4)dUwj zin!vh{E`gSa*yu|^ezS7reVJ~GL@2hbRt4<{hTy|GN^7S!b`1e_3`5!3M94XfU&iB zPQu+e5tt2xEr|lBtqT(sn-^PYw#QGJVwtiR!LDpryo?^}%=HP*gD)HLtRV?4WEZGb zA55TTe=><%Dv2psuTJT)EWYQ#9JzVJ|3q5^VIiKgHQai9X};Lje(Z}R%ro4ll{6JT#6-sRsnB45Jo z&$4FLAMpBDocqUWzF?ET)0e;ZEMF`Wh@-Mr{)F3qy}xvOX~r*L`zx>hO+P;;`NBK@ zG^?K^_wU+#N#3ErWcfn9{-6wht(U*hap#jS?8DrDcBKDe1a&NHGP*JrKs-6A@GGtS z29y7IuHc0sy@aC|yZy}s{?&@%7RR zYiN9_*}m}LzYhJ6-Iq}GcLw@*OM7AbFAWC-2tr^g`prfDV(lN8e-r!{2J?6Q{M!Bh zjS{F@SrNSlGT#|vkJ~4!Z?Y4fvq$7^UHZlEkuaL zaV2=4W4EhTMq=WM3w?DwT&?E{we0HrpB?HycMiF8f%TI8WmmnIZs0#u{FkWk4+=Lt zt6>LqFR;;`dv|Tk^-rHp|ZiCS-HVlCw1)joVl7i^O5Mr7TG%hqO`t)hjMDHMr)9| zx1DZUcClJZE>+|9G4~BJ6I&3u>9;wm_iS7-uZhhvqi1snDjv^s(F%9iO!NfUk5?TR z_}E~)8eB+qi|?W``m!oBDu0NjJB5C*?N0lKq)W;Td|IrV_ZG{*G##&ic%;Uj2&Dth zE`h^%tE|w}Y`lxr#tm;Hew(NUlfF?k0|(i(%$#@7;d4|}`nqa8mE?-kln4n+fe|AK z1F{X@Nudfr{2a+vaTcov1w~fq0oFtif{Yg@82p`csX3q1V^rwF9`k2g8=jH&PG}1`0y0b3}e_lV42(9cZ~3 zJ0|#;vz7JzmG&Vfzt|>yJH6b@2H8|(NFWSJk2_S zz)3?tw@;lNN;3ZqSI&M(CFwlMGZdZyz=k5q11foesuV>_`=y*c(Qc{aMoh; zHVSY+F;CBVy)kX3@v1KHq_DO3n-BPi>i0q*PwjRN*afgWAG5BYwZ1CTVeH+{*N6PR5 zJSsd8gnoXEc&6vZ)DVb26Kt$X)(Jn8qF`KLx%1(hPm6V4v&5Q2dWwHDi}Mx6IgE^N z`MS0|+UZsyPj^7GH%T#7-1R2h+zYZGe3AI9cg+j-pVse)aThf60fc`>%c5Z z$-X~$#rjD)Ryx73gR8cFH{rdd1;;8=Hrhy0%w;7rG6(=rJPn%%<=YFFmMV~Yn&C2M z&eatX4RfA9(ELE(=v8pZ^OYa_z+WY*XcTMa>hOKU+0!75#W<0B89vv3q9cl`dP;Qe zO*w*$VEi|PRgKeAKu zwr~C7%BNa{t++hvxDUqo6U&*q1J|e*a_OXTkme?m;T>V>AZhIvEDulDixj5aO|het z2nuY)?^&!SWEn>_F!#P#a0}=((&~$PP$2+edAel zZm(5p3(QALIue`GyGlPx=Qs9yUp3CC-%a8>4_vP`C>gaVu=cdF&@hN1%c2_-NTc+~ zcfGUe8_p8dRkHn3+p>|1FJpY_s^Z(t5obk~muPB^q)$~I=jOUH4A)Bg#^#Br&BuDs zMMObYfg_gy7A@&*pJ3C6YHL-iH1OK$7GP=!n!*oH;PK92YP%r)CgquBlP>&;n6H(0 zyR1utR+~oNIw8Qj^SGapL=NpFKW>qGbuDP?viozHJ~X<^K~Bgm;RI+|fo*WyoihI{ z&xhynw- z?WdYlJF5n_w7>Jf72xX#E8_>wJzwFo>hj&N;5DikrNA@=ZD7HCirKDjENd9u@M#y^ z8WV&-ljx-~kvH0^sXl|QMZ+W{?qWc%5g|&lkLPgv=OQfXDukx1@m}h*FkIHRCqsAB z@T?p+!UBXwPBHn2w#)h%XC>r(s51-*K^YsfBCHeg=b-{o+xvww9%XKE{Vmku63VHg zq4~))(55UwNX^uij2SH9_}bqW`X6h}#muvv!ngLud6lF>8b5q(2P|VkfdZhV1V8S& zTP+xYp~=PbXB)6|k@-rZj;fI0=QYy5Hhi_WZb|6Ynn5OWDqetR}tPWJ~sOR>)JWw3ct1P(8lxw~w zsHj7z1YTq3Nh)04Y^$fnA>dP~E<*bZSp`CJdJjd5WW%hz89^|$($A(~i-ZQMxoIUq zwe3B4u0x%$j>CpuMUh2!dgTiJ?g zI_Lrxa77%z*i2aEd^3>Iw_0kfhhbe+36HdR*$a*;6eHKcfl~Gw5dw*9oY?K$Afx7ZqKIMsD{y=BtDe+M$3$* z)wOm_90UEdknhG7?*?l)sc!2*-3hRpn71yGlnDZN=4V=W1nS zSJfpP7kZ-rurQq_o@B4t>4{W~@=H#t0I!fYH1$C1F}pN2Kj*GE+{P0W*~5BXS*%7s ztdA=lDk?_5He*J+8h>zu)#aQbqnB|`a4I6%->}kNa{F!=G`rs})o{cw->J9NRK?-g;lJDx=2^cx&yD-cT3-ejT7s^4|*>NGV;CeT;SUjFD6 zh;o;{j1WWmtvp)yBB6jU8m&~bYWRVRxfD>XC4pN})J)=O)q}`DhZdf#1;ewWS5JW) zeLhL|_M-H^VFK2sF>>;n@oS9IgW+lP1TFySj6aG)m}o_ zydJIXf(J{amuI9bkKEx$<4J{m6k39RYg@!+@3O}Y%_7&%xwgRy)S9&8 zN#rM^_f1!=;q${y)&soqD6h-77~W}exJEr@)eWV;2!x4&Mf2+Ut;+j*+}o;l<5~GI z>3UbKH|#N!-SiBTBx*un$=_n=!(c5lbJ zXcjeV_S44( zbKz{VO~0p!qYOecd8<2_9{=%eAj4j5!H!bMs5{mk$PZoIifxl2NFRh-Bc5PfDR3nz zcr#ZA0gepfWqCcM*rZaG8uu+W0ou7inxtdnufTY`>FDu2$}u#i3l%gY2&_SNfj2!p zv$Ok7kck2}EOMKt&z+UV{U8+1yQ8eE{b0FFZb3bZRZ?fvC9r)1_X+C}P-ev|hB_Ob{^}i{>uKiwr= zC_9s)+c`W|$!EYCl2h%T=BGlLMl}=YWQv**wbBUNoa6cZ0N(Ara#HDXo7PFSWTCA# zJWrg61wqJxurm00zhSoz0+ey!@2ILeC!LQRg7o9g_qe~3Eci(g)A#P}#G2Wv&L7RT zemXhz=mZNV#G*D+$6_~%KvGO`I!8oNBWi2*Sy-{k)ro>->F>|$^|Is(XY&X{m)_j5 z4E`L`yhO02y>}_!XzB(JGj0aErk{2SQHa+X`dWfJF2lN)Ps?#!63JFDiw9yYvwYaG zBOD#M#5mbAL)<~`ENQ!(Z{{|?XMY;?Gemkm;DbSZ;{_?@V zui?;{Z}Jy>az5ILp&|z>T9~O~zgE;n+hIrbm%zk&S}3P&-Ed4!>o3fA;fWYt&1v>D zF^I!cdHkpx0m8Ui_de7wT7mD2e$xB~fvrbbnn?eFj&aYmfb)Fs#qJrvG^}NOW8fUdCA(nNx38EQFb`R>L*7%NynNHnTR47QoBe@WO1 z7eg+g4a7$2JDDEq8_t_mtrU(NFcR;Xl94jfn;kj$IQ>mV%zIq990d@tVyne&0@axs zoe{@#?d5r29272ee;V0ZCo65G>HBD}-R4X@g<}Co06)G-{A+XY7>1fm5!KY1^Xnm` z4~Z#^?`<(IHPJa4&9`Q@RIj$32vL2bz&9uFD5k9{!j?R(!tAi$VU7{QD58lD@M53{ zFMX3tAbtTh4%joOlB#Uz8LdPZZ)t%C02rpP=->f-O-rQ=z&+4)DE{UB2XgCKQF*hA zu!&Upay88}j7HaI9NrnRy1agd&Q;H-F+%^&L@K93rTcYXHSi%{;18AZSQKo-ffBhY zL0vJnGw=|~GML>IkpuP`62C9O8OLH^drZ}kBC4hh8GY4LkR{ZsZOw%dB-vHxJqRv< zD7TACT>F%9o@ADfoe>JP-(%lL;S#7DOaas)!W9kh|LtKkr)uY(BTagAp9n!YW6?UX z1KZi$f>`^m)9(<>27V^@blw}jOoJ&!!efHu7AP$8p{aq=GbAS2Xl&5MrJx)-erk$b zHt4P*hDe&crC!Y&~@b!rsJ#IVzBK6tg>x?@ej^fVsI zxfE*Jc|T7UT~jU|9BZN`#Bvrjl=U7jH*SUiJ<58~P-O9D_FnA#V5(7a+pV>PWO{P1 zica79kKyv?>e{8ZR**L|^L)5u9)fZbE>P(P5NROz?%`8gG)X~$EN|8ti3H~C$X>_6 zOPW67TvMdxyM46@%V4s=ejngU(~U*V{ZqI;u~)NyN7>H8YyS_4}|cl`=9FC0!TMK)z)2*szl^<_@KD z$qmz_)FHzCQv0)ce01kc&np9j7@5#_c*{(9nkLK%%+Zw~E%*h~h_|a$G(K$(&_dSP4M7wU|0b-E=GG?8rUs_dy(as`uzF=oh zzivU*h!~%s-rWcb{6g(0G$1znX^NuOb=dDyTi(zc{Q1toprnyHw8eXHy60}$S#OD4 z*+Fnyzf(=Ch2PUu<8_+6gc^Q0Q|;H)8+Kb2sHRa^b-m(5Th+za zx(cYUt*m=xOQOECDwjtQr?X(L8j54C zLEGaRiv6A0DYnQWgbR>;W$XaWux zb=r`0r-r#B9UyKYQFLs&K0d}jCf!6<0RT=(@}&TRbszB*H4CvIzs(Sa4h0ASGfG^; z5)>O{Cd<^_GP4P^TuY-OCl z1}O5%1-W<{7qy_174z;LR%g;;HJ;6tJXItVN(zU;xM^?7-%q~xw;mdApKugK(U?HK zP@%;vsUhtAzI<*Pt44OpAdRKku){P>np{!wF_>E&v*Usz!62nQ^vnFMO2PN6xGwZf z-Q{o-C+8B&mb}$D?o?Jru1oUMmef62qX}ztvzeq-5el6AS)}xBxlX9!$Pl{&7Kp&& zp$B+|1#$aHC-SgnjZ0<$1~47}S25l^{V|p79yQGEbZ00v=a*Mm9sn1uz@0->ssX3# zWxFZcswrleuGi6rD9zk-!}ZS4qoK6gocfo_<=@hFZsVcB^^g%WJ6(+0G7ze&c<~rr zU7w*{r(P?aIzd)E^o%$NH#MEgB%Ypb5g@P+(%zm+NQC2sUD_VvFRybI#7YF#(|8RcN(#%xV{g zc}p%r0+cJu%6~X6-Zw59p_e*aInZHI#@sK|g^2sNkABCToGG(N-xGnYeCFCa(Fdc8 z_6`~2DE}tEJ7j*Gpn1xV6ZT*`v?KF4tQDT|1Np8yp;+x~F~! z=Blzv#3hdjl^9UcE0-fnX6&V)vyO##Lu}?$Sn$zPB&mD?>nPPG<(Cb+lZ7TX?xQmD zY1`g!cnT#}JJp^VYkI%uXatslIi+k3t=j5f6A&vI(VU4eCS1ff1sKLWf@&|*T*doh zJ>Rg17T8;H_EXlYocNBF!X~NWd=)Gz`f5&uyGvuPP8XK^nNy6bTbM_%dQn(ShdgI> zekv0JdOGoKwM4E+9OZRZE& zlyMn;h;#MYg;%0QmMQi0s}Bk%`O*U|D{oL1w0Y2Uys&e$afrp2Z~)2cHHMKL1OwBf zWBktxP?tkQI**`pEamAb3 zDf9(hVmt2FY*V>Ne?3=LWAGVU-hQV0xMc^a2wN{!>+ilir#vsM+skmOdvOwy`#6d^q zPJqCfFW$P}?GwRC{sNHA3lNKWJ2=xF&wP4f@xeW~vq>2EKe9{_o9Rj$bZXS_B~UPi zI=ny9ZYjLsQwtkA6?X*_X_T~fi-NCI>ypH8C`}5xm z8xi+;O=X>P1wu86B%$5R9mzjT`+nwb?$nf^{Qy|>tlB~?WJN)5_{z|tPWv9Pek#b1;qUO{(`znestY7u zAr3dkJppaK{E8b3J1MGdHw2UbR1`nfDq_|*s0AxFNfgsgHk}2<7}m2N0icw{ezU&t zl0jtnobRt8O+bsVOeruzzDyg^SZ6r}z+@D16`(OyOH;S(eZQ6O%yOWTg?w_p&>H>P z?|IFfn`y5K#RLR;Ab2IHRe~EMUdeV`^fGTV8YJl(s);oiB4TSL-z=oncwQ2Q61*?K zN9Nrb4_~`Ur`P?TH#Mo&@oX^nJ9I;70Q}KdwTRyr8Lj)!PW*lmGK0l9*6}5fPgFKL zI0x}9BYF;d`9&^?buMm}v_;*?c06=Kt)FvSM)VyrYr=R4x&1a#nv>ogycRk^woBf} zz?AC%gTWQ?>JEcGp7PEQ79{495@247+f(k4*f%arCuTD@g9O+6&~zQQBCR>vciK62 z`4~-V7p`<8i4yd-_EOA3SMzN#&h1X4KVJ3LVAeuW{85Bam>&=0KtesrRC*3FR{QS! zW_W|`21cndAw8cxZHWc2mufhPx%HA;bs##}g}k!bw{{z)2n!Y@hd?2|~`Cj6XXY+d3K-v#$Zo*uN4 z4+sB!foO1(;MXP9TF9ukmtlRSc99l2Z~0eTG)pTLt)>fU4x4TUS3l9c(-%${QVIHu zWImD-a4tZQ>lY^CAH3)!X*p^o>1Q_)8Xb0h;#L<@#t2BtKKBPz5iorVL6Qx*KW>*$ z_dbVtqc0EXrJO_7C8W6bruAI2e}_)lIFuR;Z*yx?8Lv&M$0Ok= zvm0Ws$T$dw!QCEBWx8AcdMaSM+AVpR-4&nk=719m(TDsJRvC`aW{J>i)HG9$!-$!% z<;1ROYt)tFyu_Mq=!Z<=EB8LQDh#NCf`Ika3@q0Tm*Y+@__o$g^H<;Tjrt5hk-!>u z^%LXs{73{1lY1zhD&C6C>X~9b2!FvX!|?oW9?37B)MF`ja7$SEA+a-Hd;v`(0}K5m68kdpPDHUe zEif`1K58+mXW>gLQ5K-4GFAG;1npzuLi%%L{_}-h=aSc5I!9)>=$r3{&%xs{tHuK0 zkdZ&j<8IC!Hm-(FL=J$n<>czb3F>DT)cuI`Oyf{0PrW)b;Buwo-8gr%E9WL7n7sp0 z4Q~!yD-I}%WRrKs6yg|wJ&G4xwXMTICBnm|sEGpt%Gv2_ z)UD9JR?aRamu-YI4S^?#SmSlub#?A2!&u@DUNbQ-Pu}eNbTq>_0xrFv;HtFpyYIky zH9*Pw*}4!{#ab_`Ae9_rVOKvcIOol*o$JI3XP8>7aaCk-P*}8!9Vb?)^nPuhaU9R# zq&b^6j8|$?K8gEqZnPd&?RAJU$x@5AM%xlfymumnD z`8TLyhuMu8b_0^FNb8^?s*Qu!&{4!-veHG_q+ zY0V1OrMIyQd_DDNkJXT=^%?stsP9C`?T{3&=Z;R4)YI+{?k|Fk!C#zm&@^(Bf2kQ!H3_@B-{*amn31#54lCq+MD;3FG zxP%thEid`FNz)19_L32w1FF=CNs5O4$~x?t9k=uXtZ(f+biP;cu}{0Nz|&2igRmw> z40e}Gp7Px)D)L46RJ%d-Jz^=>$RfP9n^WGxmv3lOu$E+NqFC!~J#|2mvr#y$vmzvq z^ogGErqA#d-;UT-eNZl7Jt~!WQ!n1Acd8(-i=xYEyt}BH&h_I-s?PB1wJ$wS{}nwG zpI=Ihc701uHbRNt`%i}aGaT`qP9lL+7+6p#UVAO3B)+ST>XbMAUjiuCz-tnJkhQ|c zuaoq^-0c?mu2c4RJH7HB^RvWh@8oLYnhE%roC>f-Wr^k^QJ#KH7&@+DV}|ZbWr5vU z1GX*BXbv9LuN$NVXF5IXmSQ;2DUT%0eJCLfhRtQvINq|s`b6GM|6VK%WrQ6r`R3!} z(0snYS2P_PLKsYDseaBcy(Z!Z>`R-wJ@~U5L(tAmPX&6 zBEc=KJo@JB8NJ?9@D0dz;%A1m@>k?OdU^wsdCDJQO=sW~h7rZtd3`+1g}cY5J6FGX zdzGMS*u~}IbOz}iY{l6U+@zu}vZvyJM`UF{5m&vQR&j>n0~h1=Eh*0|XUq74JZ#xh z_5PhXD}njEuwgCpfE@nDr!iR)7%b7{K{H~Go*YgLM07hK{Ui8MY9@M`ccgbf@mb$A z6?T$r#jjKV-|nLIe16uFn_X6xxCLe_7jx(9?PC+TO@frYXWTK$M}<--H%-a3mGrSz zuR0Y|n!bEGlmTiqIhQ!&Kv$8%AUMY^uOLr2I^2B4dO)WZ#~Sq2d#*#2n~1Ofr@3$J z5iMG_ZDY4>yL-27o4ak>wr$(CZQHhOo3~GLPjd5q!K)8*tyEGo%T=>#)L1n6x6%Mg z4J|)LKkruEXmsh$@w}8|oa+eYOu^E7R>#1^O<_-EQc|8@(?FJr2ccvSWwf#9c=A40Jv$R0c0I0hQnn_>=SW)!3~@}i|T4Xdoe9aQLFTEuhD zgEvkXHKtDp(N^Xl;jj_zy;h1weB zCk%~saF8D40c*7phx#ty$VJTyTZl_es%pLZFJIb`YsHj-DB=gMJ1nUtOBR=TPW7%U z7-~{5&P}4RXYx<6S@wz(E}ruSs1J#Yj@uSQm<+nyT;xURp0wumrxH;qB~fJ3sQKw>{b4NHX)> z2ir@{(%cHYBj3}~8I5m19O~W-uWEpJDwwb{TFxd%&cNN0bSwsuKN2A?=7T`emnd2a z^)`23B)6d!fnkh$W?(v{1yJQX9m|pPLYnQv_*s^74P-b(A1~WcqhCEA=zF|05&wYH z-OAh@96=9%>!F+v>jCoaD9IZd@VrH3Odb&aC+@E}&tNXx0Xf#Gf7{8N zO;xXU=HQvOa&VBaDveJ(N-6szpFjtPJt6_a_knE;`Kyo+CTA)^uv`2HUBpOAB|FOo zQ6DdOzr$(306_SljaOUdvrID0xZ4RORgasla|tMQSwh69aWa_4db2_EJ>Lwaczn2z zwNMPRKMqI{(J>Q!O&~cPH)2C&ak=r zYbLR_*}%?2-uyBE%4CT-+c{c~Xvvy-&DOumdPj?mX$z0j$obX+Z7@3K?ZiCEi?%8m z%UksRZ@dWG5#i-aN0;~!qw$NK zVGb@w>;>LDuZ|GjFtU+)+fnvst!v&(!XKSp^B)E<+X7m_h&*e?T7~GL1eVwt;PWq9`g%((n;A_UeXg zsJy3-^!-t6;))HfcU2*iaw7XT`X`|u zuRGy8u@X!<9YKno9~NBdssAF`Lc>;+_telWYAp)8p&{ zWIg%#Ox$Go4Q=!BPMZVX1oK^tF38`vZk5P3&NuTcJ!}cmBumTbZ=eof%UVA z73H;UzygUxmPl7FUkgwN-*iRe{l#7>t}BZM_U{Ys{5i{>s&>Yb)uQ)5j&p0%S=||0 zxB##HDDfbN$)}v}^D@tn=dYE_*3_c!7r@?OR1_S$Z5BTRo$rhG#? z?tyf5)1l>b(|AH#os5e~Lk}5xx_Laz!pEfe9({qHpe zJJ+W*JO4V76x?cV#d{#~K868czO{8HKQ6M3+G*(!-mXuU0}SNHaeerGv;4?Yqxxx1 zx<^>DY1xH)WGQ(Ih+fiod(7!T{*V~l#aDhB7C_B@3thoQjY4e9@8j**`cf)#zM~ly zv7pmovFOPp@HLH21?loxX^Uj^({N1*PB4|@FBZ)S$FEEtzGq1ca89`9Z8E<$Q}$R@ z%-&M<4Mb9bKJhlEQFzq`XcHU1kwBhCpweTm>g{23EjGjf9$$z(_%bu2gLKZE=fuC4 zsZ5^p7E{b7eItWjuY~bvaqLl_y||keSQm=8>Bmle=3z18siy6PEumGfnK(U>h~wn2 zrM9qe2-r?ps~%tCx`EP_0s$pSiEL@C-*WOzww5V$O>9~ z?g$%rRN9%AHtc{TDn_Uz8;Q<^@)(YR6wWErm+TmAk&e=IzGTwB5xpa8wlOhJzBWc3 z!Uv$2RZMdu{>yP8b%M?(nTGgMQBDQ1(Idqp2%u6u**}%69JWVQM1+9$PQ+|tr)<$~ zF*8|=;;v~Wb2C5SOg3C9OYV@^Dj0p;_dQO zX8rn_GxOn6t$f&XLh?VJIU~@v~|s@uTS>A#sy9+RIrAL+})|R~TQS6^s7M zzl8m0;pNowvf*u#LBs0WfN;Vpp2;WiU_6G1vy;suhu<2 z!DC7!+M4o1R41m8aGV-4@LoCdy-&plQTVy*ixbN%D8Gk)Ll3HXtpmK&@kNu zy&gjR${2L1MtpUl%HNl)qC?FW5zvxUf*ziO*blkTSiiZ9S2<)13vk>kkXRYciI763 z?jT53RKvyax>$Vd1*_zNHt<%+<4|jYF#J}MA*s4j6@8u_O1%>x)oP6{#Z?Q=rxG3X z4k4QD;u6GIdpe3f^Vtjs*9b%nG(Q<_N<))mz=xdNgM)OBXAOjjm(QgHM8`kCqC~%A zWn8lxI5lYRY$;~a*3w3SL~X16%pdNmqkiWr*twt*&Fei=yQSZFa@8Dk3LO*#+f{Bx zjcIt*Qr;fh@WmOZfqa4x*_lnj-%WZIYiOUeIfTtM*VTB?RTozVJ3FsJh_ty>z?#%w zEXCFM55IetzN$gC4n12oNyOdrV_c~KR^9~J_;`|PbpLi{nEkvw_u>8v+M6<<)7O%u zV$l$X+u16*6urm6U7?#0S1C%)XPu`PTG&;ijn9dG4`++ILK>Wo2UCRx zU-p5U-u1Ecs-1|YiV2Xx4l(iMj$0QcCXc_tTrE;jD2Z{MGemZn=@wBQ?E}y?AhfD} z;VE(fA?Be7Dw|HInQl#6f}`3F41pSUTPO~ z_hcnp+BtTdz02jcvZtA8StWnMQz@q@k7X_wGkDni`X$*N6oH)Ed>PpnJs#7`s(mQ* zM_$xIsgX)|Mz-*tQeCouLivRE41su{lJ)l#%HMo*r+q^KBvdE4g#VU3E~mVJ~d`DSW~*`@i0l6_|>5Xp3@vQ)As$Jzl1#wJAHf zJ<5!Y*qBn~)lcYR-5^zTOn`KY>NrMP236qUkuVCm?~O2X^WnVGIQ?5V>%H%F1ptPD zgZ<6<_&hFi^?xs_UI3ENV_G*fiq0Ay=4YUZNb zIDCp-P#1Or3#J9PJv*rlHgkw-(S-XN1(RqGELK}EW1AH|^duN|9^4-Txn2+n)+$~0 zNSN~sKNEGamPLxHa`7s zP}2+>sTkm+;WP{fR~wDerxS)@ZKFVn)|7;CcG!KD2i$XtwRvJWq05Dtwo!@!s5Dme z;v6^U3lERlh3@-fLH`<11R~s(K4#X3_lE?lbZ%`2#JzhQmYbXP2T<)PO{kekLBR^8 zynR8Jk{V!bFo|`)FR-MOXd!EL9f>U}0zvTHf_k zvk6ieNnq!MvA*69#kVakBLM8UqVpr5Lr*(+(l&t~5bjDZSOzDYux)t^vG&T zsPB#7<`x2!&n@$=ZM`kwAW?v<=QJ~BQywR6!Bg#c!ogVlRMQ*Cs|pk@Xshri$MO{8mousPO>?Z?Q= z4VbW?v$>KA(lqJ9AEM9XUFazpSjgD1cr`x8$q8sC5ZGf{&3JHlH4U=0Up;lNHzT3O z8eL4;H9Ke2ynn_myO!m28@Y25H+jPP0E~4Bc+^mkXB340;b2t$S$?Y`!jHK1tBj5d zOd$SVs$+;gt%*Kqe9wk!RQWkUnsU+k8FODjS!yp1zIvw^IB=`Y8H5<377%{C78n#4 zkaB1r<8#^2&7Zy=jX!AHLdZo2i6gUjn7Ys6>zMmisDgS8iy|F6V+4Ok4>ik^P{WI) z#V`c5r%*bO-x$Wj3t&Kkqd41og;Af#34AcE;g=N68~RGE#8Ox}Ys;OZydo)KU{xm!!(&F$OM~x>>5P`yVqT)-?6Ufs zOZCx-um?3SDfC*@S|J&i#1VUK&VBUZX*ZrbV94kN3cEVNH+lmN;qSJqEYb-=-$Fz zS4$rE^tt4f&T&k`24Y!23M^E8P2)O`_Csokqkssh^P#jpI95GJ|DI<>@~; zyFbl4qCC}9GFF3ik0#a-81xz6wn&WIOlsZHAx%da1B=NVwo>yBJ_ruUp^qGV4 z?Gob+=`UVP3@3?P>9usn*Ng1WVOqazf|r0slTAxoEfOIE)?8uFaddbGB4@ChV^4G> z>S!=ikB|C_{SK@b>Yb$%^??I^su}I#1f#4rV)EHqKsl49_*ZItJS*Hgp~oKELl2@# zf-nd93DSVI7^1BXfI``o79cczKj2kV!gbiI)PZ_q>1JpmX?B;WIfr(hv{Vk2}@%* zvIu4O2HUJ#WLU_i)z}Gdgn>+EYkUA1dlp!>iv>>kc3HiFzSyAFO5LW{iz;IQClNLOSfmPLv1H9Vf~llh4Q3msXR+vC zOb(;^+ifkpp>2^8g;lOEC3BXNP8>ecR|p2Vv0-76L+w(Z+N0rMn{h&Ezc&@Ik79^W zHwLXtoN!GuHF2y)75wGNLtu#)^GC@wK4H{zqVv{Qs)C()N8z%X1~7#jmNY5wnVKL? zOmKDA=Z*V?!UasByMcWVW!!N!yF3NnTOHm!&~+v1LdxLNOc}u-F9`wfrdj3~NjMES zbA9pAp<`O&WYGt7p}(7Y(J)8x{Jbh1$-9eq-uBx=Elk7gts<-uRLIU4yJ{0e7ubMO z8T$(FW2l7HK`{am^Xb0*Y(EN9;d!jyG=HB=#P3^E)ey5x_Cd@Zclk8sOwi7}r@(?p znEf&SL!$C;>uD^nVcni3=O)KEmpu~b&nVuf#OnLfE01hiync(vde!BJ#2@WH0lmFt zKm_xd&T$ir7~(Q&w#gMqVr=m|#AV@6nq}W#qjZWE+H!O2q$$e|&|k+}I$LhitpWW_ zZ;60ad9IOB(hb@&6v?(GwzTVt$sE(Q1s|?R}ozyW|ilV&-YHNxPUx;DH$d z2>A44c%EBh0PQ{ZP0>iHxCPiiU~^$ibDo(m&Kpl?$1kp=Ii14%eV;_z3%34Um%b=^ zlyk57Gxda2-NVr2R@v&gKJ_SuS;_&X{bsj+ze9i?NPCeyB+8BP^UprQWz9}`xWK6N z3YTRJ5*FOSL^g!+c|GqHZifqZ_g-WAl8CDDgUQ56c=xH*Zw2cx=t7;$e^(l1SM%}k z0kKM9B*@CS_Oz+^P=t#A_?bk?V^Z;tW?Tv(9s`ruvt6tHIb<>?u!F9X1?l~L;8nRF(vni z4)XQV1>5~XLgah30vkoEN9IayXwJpgi0)0lPcQ`xY_fTp)&?kq&G8hDW*PYoPZzBT zI6XGgn83jCvcO_1w^Zfi@3@Xm{MYC^Va6xpFF7v;S`M|CFo8zZi&RR4hNHz2sMcLE z@M2dO)oK|#yA7`IHH8&k^<-{Y=>q6wO4UnfOdrAe%cYB31k*us8ZU0vzZpk6MhoVn zM5XS(QA^9eEm|;_`y%dYp)EF7JQxOzCOO}SUdlvxwKjAqbaURzMZ9Vp0$7L0x)$>T zcB3@(rT`eJfC=4b4H8>1L=Gqbl_MuK{6AC_pq~tcB=A|v`L?fS>UYBjD97lH6=7S( z)6|`m5qwUh3J%=h^>ey*S}w9!i9$y~zHn{ns+#o0(y}t@hD&sEle%+rS?lR?%8hc%*3;M`cyr3sA6~2 zyjdgjEVl-jSCHd8pU6@Xa8)VFa8r}k%9O3|0F(X!nUsj6xjHEGMLE?_5By)`lL);1*Y_kj6eJ=+EgIpe(y7I-^@kU;s3p zYybtq@i%ihFSY;1h1-nIW9&)BjM%kKB-B$&#yZmyhAgI)=C9N;ty?mcNM$=r2;l6U zi*P|tP+=j9@lI6nZJGGd*Tu5i(SZ@&>H*U1dDX=)Mp(son#T(O07Naq#rm>iDa#Tr z2q5<&mjP6gBlkeZe*F~PK_O11QGUDEKqUJ@=Ha-Ta~dsrR3~(;h)@h2IA%=)7Hox}EbTt>g94MY5WR)BrD%ShBcoz)v; z*FM8dDZ8niSk1F-Yl^F(Ek4u3ut-s*j4TK(U)FU|`W|mVDfz;af!&W%KjohF8f$d* zINBCn6{L1b0<1*9uUq8d?WGnCKC88-fwyB%;`21ROjUuiX*nr$xWA;65%#e3781m% z_u-vt_|FDFUe;kTZdXdP&s85V49|qP>=7=W&6JgQO+%$2LCD!8=1c&ep?0+7`r%{? zeok{Vf?dF56UcWnX5n%|mg)yOF2}vaRp^+B6)3Nlmf%fUYJ$=$S9Z{)wmNsNwomoz zfQQ5xcPq{gPP>bKT8(f;eSc#v<{#h-umM8YhR;T^G1v}PD77i#EALi)hA%O=|dww%63D z2}&}BUS$&Lw+Kb;LHnRn7(1??3-fZy{Jv}p8X|%-8J!X|*Og9Q;Gd&X-oiDu^&?N1 zG0aF1<&5n@YLZr3wQ60aEX76^)&^L#rMqH~0djj;0%XDL+4s)so@!X(KW-}l$!wl` zg}H>IQjX2d4nR#BbN8RGr99C0)@_{h2A7(jgGWo8WD%~iZq$}#{%i*~(2{88KhU;E zZzG?!4{yiU!K$W=zS>j)8mgkgc!O2UG>|+_fW1t>jTcwWYOft9ixb^iImLWJP9A{3 zP*Z$1Ju3#LVdsJGN-U!MiEJ8*Wi^qFe)e91Z7-3~BTHm?ogVtzpuL(6yR$cgIuqS| zB69s|y%iaZANF8+tZHo!-Skqa4@eNJPTD38SmakLmVFcKQxjm1cbOFKSji(MSe*l< z;o}^DLyRqUSkp}l(9bgFBXG~4*w|Ag)R{CKDzPo?NnniBOy4|H(@dIznOn~d3|dRF zgab-9*A!t1c7+i4)s*nR%?S`l(z!txy)xXsIq|LM;A-DqITZ`VcEopgI?slui+bHZ ztL1B6;~&tBc_W&suJ}4V+C;y-1L6M)$PHFGO#EFv#v8=wVBizhjFw()I{Vm~q(0Vc zJvmxNcs0f2ECQ=r^I)?-x<%7obCFUOAI56VRnpH5W~JC77Df{+6j)z#3Lbk>b!%qj z^+az6){a6-L0DE2f&GihJ+D^Kz)X6O@+W6v5W(#9b7tgA%y3fF?$kwqB612cQ_91m zBcTf7w*7`GVv{iX?ndv|9;HQb_JS01^p2FE&!vj9a1^?=mgQCnfE7UKW>p$Wzhmjv z`DeB$pXJF!7@NL|jUjI^h)xHX5?_6rZb*l~k(Vd7CtKkKh^LN|lB`vUlCXtwzxmqF4kf5&dcRJoC%<2_x}y2FGq z6mh_^(`qTQDq}hj6e$0p1v79hA_N5%uw=A=} z6c96L$M>5cqLmVwrOUp2QhK?PmX+{EX|L!dk4H@ffMN89&cuqfwkC%Wr`S8DWDvW< zkFN(|gzjmD9{$tg&$g*!DA26yrss54s<6*`q!FxFX;9@!)u_ch-wlb{5vp3?av`ZB z@)m@O4HqiVGpu`5bs%Qp5kXZsW1L;+k1V%A$U}*YY_T9veV~Iay*I*FZsSTBIDvp# zfRQF@`mg`@&ob6vxuB$|GAUqYv@RCX*|k5c84;7ElmuaoM4#tC3b|4++p|?x4`5in ze(zYOU0ba{ooaO4vmmx3fjxHRU^VsG{C1?}TyNddrBTf=*&PYlCsN;1$8u$4i?7}3QL-eaCheD5ZE*ysG!}cu$cW%DLdse^{7{0uX{PCKVT^PZMaB}WP(h57z+uQL5O!N;d_%XsRm0Hm;IzA2O0C6!im_{)Dj&kaBk*ge;O zZr3>d4MLwEtuo(WLRNWxF)VpnfVy^lpzW%H@XX&G) zt@oWhMntz_TYSa#4oB3Fy($A8f0pqVPLUjZbh86AWoq$e$%c_wZBXz+U*w#&zh`HD z+Tq!$%7@p4b6>KVQ`n;Y1{m z1#M)w0}Z~BY9ZVBdA@KSfFKok3h43vgtaW>a~z7OpEJJFp0pyz;%)J)`n%pnDt}$} zySV5bv6jhrOr}KM{aF$W(bLWzvfKA6BbIXJ`hiGgtfC zva^1f_NT2OciXnfmv#k`Hk#!d<^=i0NXKG#s-yXqh}-h6lzIGm=dg__P7|Vj;pKBo z5gG+hmqo#CkO@x8iH5FyxOyYX6{^~udl2;nDLztcc#ezXsDA&XnMFF@_amElyJ0Z~ zwgk*+agvNb^j^@!Y$y$Q>uW-}E2^`Ho8*@$1q_cK_E>@?JXGL4D;_p#|GCI~#-(A8 zFTO~;N)`}1;|mfjA2M90Z^w8i!Hw3n^RM>iIpurLrBX;$uPe%;g_Fs#G&Pe~A!Ao| zWvrYdJ9o&iZMBTvqwc5^I>XrO1i)7CVxx4d-XT^VbN(X(sU1^6QU2tcX=A@y+JJ0V9y{D|&}WxE=8e zohN|t%PG%v=NklZ!)N{T<02@9g)w=aJ?j0(G%>7FPIWgIEEbUZ;gsgB^ z4lKO-TF($&7+Z*9RteP5>E9Noxd}PfA?>zI;z#C0G^mmAlvFOe&O+k&drZ_7)SmSI zw4n*nd&?*lcYIg_n4%JL>cqlHc`JhHm2J-3i;aM#X4=f|g`#r=;1MWqWOrd(MyjES z8$AjBEmk7yJ4`)z#NBw~VY^d7!^O>EMmVtOt}ZVoGOwdK?N{Mf(a$D0juxq|TA{Tk*3@CDRMazZl{JuC=|pxd^EV zanG@aSLq3T&lY)4cF~9klbHQHu<3`+DZ4eZnL%B&-n8yoqBqIAL3K7ajWlnBDSu9w zRkGG9nvPfK$&}v2ll}79S;fR`%WJH3tZx~HJQM67GsuX);vP9)JtQ1X{ff0rP5aOS zF{mgVlM+#4U@!PeLDR-9KW7<2zDHo@h;Ebon>Fk2qYySj##$42^)E=b=Vyt}P%4WSeJa8cN~grfU(?o z9MdL0Z6>CKNCAHW2#M!0aq;}{dfa!55w);)-JQYEl62X_0A^=CN@^dQE(@HS!Z579 z&6z|@(?+dRL%oaZEb2sUcRujpA#w?P6~IJ!m0RMdY};jX4)ts2wk2U9wSqMP?A-Cz z#xf@Q#@kmy0W2ulhhU$s*1f-|v@1&r^nvIX@s>(pdVb91-oPoc5bo>TO%eH$k*1^J zuTKWMwiKUVMOIj`QK2SMgkaAIx_G{bG?kd^`+X&BO;Qx{T#!N^nxDn!wG4XuzyOKB z;7rg(%1Y%e&Ow2|f7g=a^!{D8fwIz5|5IUP(&C-u`|6>$A{z`h!bTNAj#xUrrm10W zOlqYR5m9M!QwpYT3p?K7ASgC#vMWyRT5u)kD}hXpNM7SDqRPO>uL=Sx81Io+_1Cp- z?0{`un(Y~QQwJmQDAjeSfPOQV0H8VI6pp}e%0kk7a)(75BA>%vyRIUR95yBYf(75; zjSnj_*s&80I7*f=8K34*n0!VU<-z#wiunV4ofx~Bv=(|23)2W6IB+0ZgM9AdY)uUC zb(x)#7@hSM;Zh5k4scSB5?Dgqt`DU%Ev8lt?r7EG9^y(Y8?t{ioS1lb3nNyj>h#I^ zHhHcw&^ot4#9OdqAITE{;}qcdKT9woC(_Ro(lGQw?h8xTl2_~95WZQ0EplrFLvT7a zs;`;{i_eQH0P|P?%q38jX_Mky)Rsz{UDELbdh2y9B%D0%Ro*bWy zvfj`~81c0isLEDgxo}Qn5E{Q>gGk?T-%C9?FQYIc4x25kn6eJZqBjw2b%-g*L3Mrb zmH)hekJ~Q=F4g$B1ZuV|hL`fn&ApMxnEr>9f-_M{c^h33R_YFeV{q5!u;!d2gbRcX z%(K)T1$FB|{1*JqWukqQ-o@*weQ#4PIXJPNQUT-H%Zd;Y$j_nOo#-PF6kw8@vtx08 zUvUW!S6d63G*T z?cXkZbVzo-T671Nu*VG@bCi2ziWpF(b;sUnewhERhX=;o;nUi`YSsNm$p#lcg!lHi zqhxe02nqp`36`0@!1@BB=rqR5wr*rHp(wVF`GBLsQ(5PXmePD^)4OkQYCu>(=DV39 z)~jg5r2KBeaX;CXDw~^Io>K}@T__r(>gubWLvK4lH2{)nFA!8NKeek`jP{Is1p4|Q zuqf0brD9AxXKq{K_3Q@iEB-rP=%na7UWqg!`|lGO;7ZLw8k3y_r`%LY1ZJ~Vbp%gU zpEQ+Lh*VoLbp*A~%_jpIAexDMJ@ugOY+j_(I`r#fAf~P&z~`oi!}DmiuS5d)&@H;9Sn=U3+_$IHgy$QD$zJwIe1;v!T1fLD=NFQguNaic zEA={C!|(M;kgfR#dNV#$T?L+|RPTcX@;L|+?`>{y3JS^a7vHL;6KJWy2&^I2S@JBS zg7OdJtxH#KW8O6EN+|SVQTYu;gJS|j25G8ivh6l$xejRdn(Kl?Q_A@RQA|MvSz(lG zGyAn%fIZR!NrPnEd+WfKpi=?QXo`dEb_dfS+Re0}*A|Z|jEd4x_BAV-1NDtgTGQ>x zhRu>!{W7kGf;@MF-o%{rt|p)cacdc4s+SkG=!gQhoB*{y#5#!>v4PhN`!Dol!csFr zBzl)(Hn?QKIY|!F)ed-G*siu*$Nqr@%#x%0hmcs;{Rs>bcD(Wt5b2oDc`^0kT#NXP zdw=q)DUv_&)_x%@iJ>GJ*wh($dF%!cYuRX_2BjMtH0~7tC@?C;Cv*jA=o^47R{)kK z!%0{NWqg2RW~ekWirpGX!?7H({o_EIFKPrx#I{T=24T9F+YMzm$0)9&*(~b~bI|Kf zq{ZTm&V!0H+jfoqEl)p&H`S&Ps8{%`@mKp{b`iO2%m6MQ?N_g~dbA!3@GY#J)NzMS zKy$G%+G)7~AH7Oi?l2Pw5yT*?1v|y&f-XlBMB&{Eu-vgoOos|aONfw{^R1!7)iZn0_2-di-Y$eSE>Ob5^Q^hiG9 z;>2w{vb$g-p%sJupdYo?REifa-D~E!yOmP;zh%U^%~w6SH9fjn3WRe5Z&K(&&0A#z z0Msr-|GdXgjgtupSs?s_E8fba+L;1A5p0>M2x~og?l1X{2Ag8;HIcL3y0N9Xv=Dw} zSF0W40l=i@%sGCaq{E&{(D?dL$isu~sgAz$GK@*z$p+H#uc%&i7G2OU6=wP4f+ZSL zMo#2JrNFPaWR)aE5_&P$r`Ilu7YTmHmxl-b)OJJ|uqq|&NqJl|sj!iJ%OrMJVdZq~ zb!wOg{9AJ*OxK%E7Z{M@IQycIHMd%h2tiJBKhRvKToPmvBi(TKJ57As!OlYG1?(8u zF9)=p*eoIrrr8OZ;?u~#nkOpFUse`nW)+jY_-Hd zvJv36IO)XdD~e;O7F|(_YY*Y(jDrox#3$HUemhg4(p$<3#-d91q+LVx1g|udmiKTe<}>rKWlki_U=Aiq&TGj^2ER17BDTq#prM;rtM|& zP5D50%Zdxa_Msb(CX5Sa*q{iNtK^&cn|g-WjGd|l4rbn!U?U{>j0^s1V8AgO!o?Q2 z)AcbyJko5hT^5AX_I8WRAE(vTI-w7ClZ#b+H^dqjtMFFvzlK4_NzHqgyXZ44!;mp= zic*F&8m4URlsxE6#HeaWbeCLS31{WDcE3GTXeo zS*eHbo=`vzdFI+f2h{;QQx;%|-huGrc2AfpOXs}dsinnATyP~kwXj6W0$N}`zd(kl zgxC9iV9V^JGwsQ7PIZGnkP@K{I{lwy!krtrU z;zR|DzPE=?^p`tD95T86owKZts>?55ZQC1JZ)hUJ)eXeQ95eD{j zPxP=x&*oZlRw=ENv77-fH+Zq{3M(WXh@)3lsmSchJJYx5SdU@$gm=T%ni%37GMrGv zC7Fbj7S-DbC1CXmbM)adnUJSmWUJW8*PZK?G57;bxPk|ihULCO6F@w~v!$GfrW(m%j=;m~olB}gD#p*1o~ciy$sHf_0B!H1=W zhIqdL1~Nf8f&V*dkqul*yZYXwP$_vqxTR~hDe`jTqe3#Kk9FPw8T24~JF08iDFy2Kv2msNA$H`@^tq3nNg8PUH{Zu8(JA|7DzY~soAvUr#1ILV z#g#bAWLB`|e2`3VGTf2uXi29YdF9XJg(AV5Ha*(3cuYsbak*^^8vu7UO&&aNT4Te0 zD5Hj)k_4g075ym8sg5~3Vy4-~)lEK+rYKf;^bDYrr=L^`FMbY6836~4u#&hFXO!Z1 ziRzxcOG=OS{k^8}9k~@@%RRPhqrt~XR6WXA%=Sx#mk`d>O!TiX;A*$70|n;akte#F zENHkzMlegkDvb-3-5Kn;1O1iSxn30h4PBCw-%jAC6&7y$y`|O=m5Sb@(L{*+$+Ph7 ztIpyxADzEu3gnG@kvhKrfPcl3#mgy+m}3)OE>h;nlo58o8Uon#Cql67c@WmJcNwQK z#)`p6Ngu7I`^#H*WG;WA6;X`{G*dG9$G@@Tk;*yIX=iCYg=u)`pV(rBJj0tqR`|qy z2Abf!rtMHRo`}~9qEL+wLcIg$+x}Wz-0ySL$4Li@R0gEOVa}zTyPo+DYuIL{`4yz0 zI%%PWjH+nbf_HTltiF+HpODNZ*-d#kGWG&Dvb|@ng7i}FH_+ygk~Ongfafo?ygr`uuBALDy%bQN@TN7YQ6E)0R-L?tp$9H3=20SlPW* zUP3(_Sh#{@+L9wN4ZZio-Fp>$lxWp}msb3;QAWS>loBj0t_Map~ey$Mai zG+f<(^QkW5ZQk09%?Mm+2_~F~O)T%@T00AtBB(OtRkD)m8@SeV+Y*>y-NSNe@d4z= zK2KK56fIAb=Ul#Idx#F_-IA7X_yOhU*3E5hB zq=3^RvVrN-W1Sr4T8urD{m1l?MD7%K;zCoQW-Qd2Y<^040y5!aVp6tSs2y|Y6j;!4NSHm6BNu9Q?_A?cDd zYjtQ&-2nTL2P$J}qfVCN1&q?zPWMwj(XsS?ydCU71!5 z9*t7!-^4(fgdL;k=oIkOmz2zXBiYWk24K?W^qKe&mhkg<% zCJlluK)C9!#c!A<5&Jv-w?qv9@c)4lV1K$M4fnz&bcgNt(1fY|6K7m#Op2GmBuqL| z7#A#nNf@^#($1Rv;?u5=CLh;($E05De_3dC4U0Y69JpC(85FozzhZ2Af2{$E{t^5B Mo>gk^@BXj+4>%(N4FCWD literal 0 HcmV?d00001 diff --git a/self-host/session-data/sh.measure.sample/1.0/d1f4c376-b2cd-4d41-929d-cc8a07353887.json b/self-host/session-data/sh.measure.sample/1.0/d1f4c376-b2cd-4d41-929d-cc8a07353887.json new file mode 100644 index 000000000..1570ca06d --- /dev/null +++ b/self-host/session-data/sh.measure.sample/1.0/d1f4c376-b2cd-4d41-929d-cc8a07353887.json @@ -0,0 +1 @@ +[{"id":"14a0ddd7-d089-4f42-ba4c-07d299826170","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:03.94900000Z","type":"lifecycle_app","lifecycle_app":{"type":"foreground"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"2439914a-ebc2-43e1-9e43-25dbd8b6b137","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":true,"timestamp":"2024-07-25T07:26:03.80100000Z","type":"navigation","navigation":{"source":null,"from":"sample-from","to":"sample-to"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"398a40ba-c6c8-4130-9568-98a39e3010e2","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:03.79500000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1155003,"uptime":11551249,"utime":31,"cutime":0,"cstime":0,"stime":34,"interval":0,"percentage_usage":0.0},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"654adae5-aac8-4c7e-b3fb-055aca1793ee","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:21:01.17000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9547,"java_free_heap":2829,"total_pss":77389,"rss":149056,"native_total_heap":34716,"native_free_heap":3067,"interval":2099},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"87061750-fc4e-41dd-8005-aecd70db9c97","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":true,"timestamp":"2024-07-25T07:26:03.81900000Z","type":"exception","exception":{"exceptions":[{"type":"java.lang.RuntimeException","message":"sample-handled-exception","frames":[{"class_name":"sh.measure.sample.SampleApp","method_name":"onCreate","file_name":"SampleApp.kt","line_num":29},{"class_name":"android.app.Instrumentation","method_name":"callApplicationOnCreate","file_name":"Instrumentation.java","line_num":1277},{"class_name":"android.app.ActivityThread","method_name":"handleBindApplication","file_name":"ActivityThread.java","line_num":6759},{"class_name":"android.app.ActivityThread","method_name":"-$$Nest$mhandleBindApplication","line_num":0},{"class_name":"android.app.ActivityThread$H","method_name":"handleMessage","file_name":"ActivityThread.java","line_num":2133},{"class_name":"android.os.Handler","method_name":"dispatchMessage","file_name":"Handler.java","line_num":106},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":201},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.app.ActivityThread","method_name":"main","file_name":"ActivityThread.java","line_num":7872},{"class_name":"java.lang.reflect.Method","method_name":"invoke","file_name":"Method.java","line_num":-2},{"class_name":"com.android.internal.os.RuntimeInit$MethodAndArgsCaller","method_name":"run","file_name":"RuntimeInit.java","line_num":548},{"class_name":"com.android.internal.os.ZygoteInit","method_name":"main","file_name":"ZygoteInit.java","line_num":936}]}],"threads":[{"name":"LeakCanary-Heap-Dump","frames":[{"class_name":"android.os.MessageQueue","method_name":"nativePollOnce","file_name":"MessageQueue.java","line_num":-2},{"class_name":"android.os.MessageQueue","method_name":"next","file_name":"MessageQueue.java","line_num":335},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":161},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]},{"name":"msr-io","frames":[{"class_name":"android.os.BinderProxy","method_name":"transactNative","file_name":"BinderProxy.java","line_num":-2},{"class_name":"android.os.BinderProxy","method_name":"transact","file_name":"BinderProxy.java","line_num":584},{"class_name":"android.os.IUserManager$Stub$Proxy","method_name":"isUserUnlockingOrUnlocked","file_name":"IUserManager.java","line_num":2993},{"class_name":"android.os.UserManager$2","method_name":"recompute","file_name":"UserManager.java","line_num":2873},{"class_name":"android.os.UserManager$2","method_name":"recompute","file_name":"UserManager.java","line_num":2869},{"class_name":"android.app.PropertyInvalidatedCache","method_name":"query","file_name":"PropertyInvalidatedCache.java","line_num":999},{"class_name":"android.os.UserManager","method_name":"isUserUnlockingOrUnlocked","file_name":"UserManager.java","line_num":2932},{"class_name":"android.app.ContextImpl","method_name":"getSharedPreferences","file_name":"ContextImpl.java","line_num":571},{"class_name":"android.app.ContextImpl","method_name":"getSharedPreferences","file_name":"ContextImpl.java","line_num":557},{"class_name":"android.content.ContextWrapper","method_name":"getSharedPreferences","file_name":"ContextWrapper.java","line_num":217},{"class_name":"sh.measure.android.storage.PrefsStorageImpl$sharedPreferences$2","method_name":"invoke","file_name":"PrefsStorage.kt","line_num":22},{"class_name":"sh.measure.android.storage.PrefsStorageImpl$sharedPreferences$2","method_name":"invoke","file_name":"PrefsStorage.kt","line_num":21},{"class_name":"kotlin.SynchronizedLazyImpl","method_name":"getValue","file_name":"LazyJVM.kt","line_num":74},{"class_name":"sh.measure.android.storage.PrefsStorageImpl","method_name":"getSharedPreferences","file_name":"PrefsStorage.kt","line_num":21},{"class_name":"sh.measure.android.storage.PrefsStorageImpl","method_name":"setUserId","file_name":"PrefsStorage.kt","line_num":41},{"class_name":"sh.measure.android.attributes.UserAttributeProcessor","method_name":"setUserId$lambda$0","file_name":"UserAttributeProcessor.kt","line_num":29},{"class_name":"sh.measure.android.attributes.UserAttributeProcessor","method_name":"$r8$lambda$qsfL-0rd_f8BeBQ4Koz8oTx3q0c","line_num":0},{"class_name":"sh.measure.android.attributes.UserAttributeProcessor$$ExternalSyntheticLambda1","method_name":"call","file_name":"D8$$SyntheticClass","line_num":0},{"class_name":"java.util.concurrent.FutureTask","method_name":"run","file_name":"FutureTask.java","line_num":264},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask","method_name":"run","file_name":"ScheduledThreadPoolExecutor.java","line_num":307},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1137},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"msr-default","frames":[{"class_name":"android.os.Debug","method_name":"getMemoryInfo","file_name":"Debug.java","line_num":-2},{"class_name":"sh.measure.android.utils.DefaultDebugProvider","method_name":"populateMemoryInfo","file_name":"DebugProvider.kt","line_num":21},{"class_name":"sh.measure.android.performance.DefaultMemoryReader","method_name":"totalPss","file_name":"MemoryReader.kt","line_num":69},{"class_name":"sh.measure.android.performance.MemoryUsageCollector","method_name":"trackMemoryUsage","file_name":"MemoryUsageCollector.kt","line_num":65},{"class_name":"sh.measure.android.performance.MemoryUsageCollector","method_name":"register$lambda$0","file_name":"MemoryUsageCollector.kt","line_num":36},{"class_name":"sh.measure.android.performance.MemoryUsageCollector","method_name":"$r8$lambda$NV6WxYWPDRk9rkHp9K3kFwCVdhU","line_num":0},{"class_name":"sh.measure.android.performance.MemoryUsageCollector$$ExternalSyntheticLambda0","method_name":"run","file_name":"D8$$SyntheticClass","line_num":0},{"class_name":"java.util.concurrent.Executors$RunnableAdapter","method_name":"call","file_name":"Executors.java","line_num":463},{"class_name":"java.util.concurrent.FutureTask","method_name":"runAndReset","file_name":"FutureTask.java","line_num":305},{"class_name":"java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask","method_name":"run","file_name":"ScheduledThreadPoolExecutor.java","line_num":308},{"class_name":"java.util.concurrent.ThreadPoolExecutor","method_name":"runWorker","file_name":"ThreadPoolExecutor.java","line_num":1137},{"class_name":"java.util.concurrent.ThreadPoolExecutor$Worker","method_name":"run","file_name":"ThreadPoolExecutor.java","line_num":637},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"FinalizerDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":203},{"class_name":"java.lang.ref.ReferenceQueue","method_name":"remove","file_name":"ReferenceQueue.java","line_num":224},{"class_name":"java.lang.Daemons$FinalizerDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":300},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"ReferenceQueueDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":568},{"class_name":"java.lang.Daemons$ReferenceQueueDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":232},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"FinalizerWatchdogDaemon","frames":[{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":-2},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":442},{"class_name":"java.lang.Object","method_name":"wait","file_name":"Object.java","line_num":568},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"sleepUntilNeeded","file_name":"Daemons.java","line_num":385},{"class_name":"java.lang.Daemons$FinalizerWatchdogDaemon","method_name":"runInternal","file_name":"Daemons.java","line_num":365},{"class_name":"java.lang.Daemons$Daemon","method_name":"run","file_name":"Daemons.java","line_num":140},{"class_name":"java.lang.Thread","method_name":"run","file_name":"Thread.java","line_num":1012}]},{"name":"ConnectivityThread","frames":[{"class_name":"android.net.wifi.WifiInfo","method_name":"\u003cclinit\u003e","file_name":"WifiInfo.java","line_num":84},{"class_name":"java.lang.reflect.Field","method_name":"get","file_name":"Field.java","line_num":-2},{"class_name":"android.os.Parcel","method_name":"readParcelableCreatorInternal","file_name":"Parcel.java","line_num":4940},{"class_name":"android.os.Parcel","method_name":"readParcelableInternal","file_name":"Parcel.java","line_num":4804},{"class_name":"android.os.Parcel","method_name":"readParcelable","file_name":"Parcel.java","line_num":4775},{"class_name":"android.net.NetworkCapabilities$1","method_name":"createFromParcel","file_name":"NetworkCapabilities.java","line_num":2150},{"class_name":"android.net.NetworkCapabilities$1","method_name":"createFromParcel","file_name":"NetworkCapabilities.java","line_num":2139},{"class_name":"android.os.Parcel","method_name":"readParcelableInternal","file_name":"Parcel.java","line_num":4813},{"class_name":"android.os.Parcel","method_name":"readValue","file_name":"Parcel.java","line_num":4564},{"class_name":"android.os.Parcel","method_name":"readValue","file_name":"Parcel.java","line_num":4347},{"class_name":"android.os.Parcel","method_name":"-$$Nest$mreadValue","line_num":0},{"class_name":"android.os.Parcel$LazyValue","method_name":"apply","file_name":"Parcel.java","line_num":4442},{"class_name":"android.os.Parcel$LazyValue","method_name":"apply","file_name":"Parcel.java","line_num":4401},{"class_name":"android.os.BaseBundle","method_name":"getValueAt","file_name":"BaseBundle.java","line_num":394},{"class_name":"android.os.BaseBundle","method_name":"getValue","file_name":"BaseBundle.java","line_num":374},{"class_name":"android.os.BaseBundle","method_name":"getValue","file_name":"BaseBundle.java","line_num":357},{"class_name":"android.os.BaseBundle","method_name":"getValue","file_name":"BaseBundle.java","line_num":350},{"class_name":"android.os.Bundle","method_name":"getParcelable","file_name":"Bundle.java","line_num":913},{"class_name":"android.net.ConnectivityManager$CallbackHandler","method_name":"getObject","file_name":"ConnectivityManager.java","line_num":4167},{"class_name":"android.net.ConnectivityManager$CallbackHandler","method_name":"handleMessage","file_name":"ConnectivityManager.java","line_num":4125},{"class_name":"android.os.Handler","method_name":"dispatchMessage","file_name":"Handler.java","line_num":106},{"class_name":"android.os.Looper","method_name":"loopOnce","file_name":"Looper.java","line_num":201},{"class_name":"android.os.Looper","method_name":"loop","file_name":"Looper.java","line_num":288},{"class_name":"android.os.HandlerThread","method_name":"run","file_name":"HandlerThread.java","line_num":67}]}],"handled":true,"foreground":true},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"8a576b49-e4e1-408e-8466-43950158a0de","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:04.14000000Z","type":"cold_launch","cold_launch":{"process_start_uptime":11550650,"process_start_requested_uptime":11549672,"content_provider_attach_uptime":11551155,"on_next_draw_uptime":11551594,"launched_activity":"sh.measure.sample.ExceptionDemoActivity","has_saved_state":false,"intent_data":null},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"a715c099-f5e7-4016-9ec2-76175e5ce843","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:59.10200000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9547,"java_free_heap":2965,"total_pss":79789,"rss":158756,"native_total_heap":34716,"native_free_heap":3100,"interval":2052},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"affb83de-19b6-4b28-96cf-9e8573e5d53a","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:03.95000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":196608,"java_free_heap":185974,"total_pss":67843,"rss":154992,"native_total_heap":12376,"native_free_heap":1345,"interval":0},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"d1faff2e-1b1c-40c7-ae3d-f4d050e0fb2c","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:03.84800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"d366f29e-dc2a-4ab9-a704-c283ecab0b4f","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:03.95400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"d71bf809-c75e-43b8-99e6-e69d3b44c486","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:20:59.42900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1123023,"uptime":11246883,"utime":764,"cutime":0,"cstime":0,"stime":103,"interval":3001,"percentage_usage":74.00000000000001},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}}] \ No newline at end of file diff --git a/self-host/session-data/sh.measure.sample/1.0/ffc4531f-f6dd-4b51-85a1-46a433576361.json b/self-host/session-data/sh.measure.sample/1.0/ffc4531f-f6dd-4b51-85a1-46a433576361.json new file mode 100644 index 000000000..0b87feaf2 --- /dev/null +++ b/self-host/session-data/sh.measure.sample/1.0/ffc4531f-f6dd-4b51-85a1-46a433576361.json @@ -0,0 +1 @@ +[{"id":"039e5691-8199-41d1-803d-5b1fd472efd2","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:15.88000000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1155003,"uptime":11563334,"utime":94,"cutime":0,"cstime":0,"stime":71,"interval":3071,"percentage_usage":15.666666666666664},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"0894853a-75c5-4272-8e04-318ca01418f3","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:13.44500000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose","width":297,"height":132,"x":522.9602,"y":1238.9264,"touch_down_time":11560821,"touch_up_time":11560897},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"0a576bf9-b77d-4cf9-9d69-7a59004e35f4","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:18.06700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9926,"java_free_heap":2817,"total_pss":92135,"rss":178188,"native_total_heap":25348,"native_free_heap":2197,"interval":2011},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"2c19aba1-78f1-4d37-895d-99b007060bde","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:13.56600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"2e2ac2df-4d6a-4114-b391-5610906e3f18","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:10.01000000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32569,"total_pss":95310,"rss":181908,"native_total_heap":22780,"native_free_heap":1055,"interval":2024},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"325b83d2-99ce-4712-88e8-8860ef2a9e3e","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:18.88200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1155003,"uptime":11566336,"utime":119,"cutime":0,"cstime":0,"stime":80,"interval":3002,"percentage_usage":11.333333333333334},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"3421f183-dd9e-4f29-a6da-2359f2b20814","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:05.96700000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32777,"total_pss":94571,"rss":181192,"native_total_heap":22780,"native_free_heap":1064,"interval":2156},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"39174d56-6171-4f4e-af75-941a3ffd3ea0","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:16.05300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9926,"java_free_heap":930,"total_pss":93458,"rss":177844,"native_total_heap":25092,"native_free_heap":1451,"interval":2011},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"3b3e186a-b7e5-44a1-8fb3-d1492949d6ff","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:15.82100000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"414c770f-3ec0-4d98-9728-3bda2939da22","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:15.76300000Z","type":"gesture_click","gesture_click":{"target":"com.google.android.material.button.MaterialButton","target_id":"btn_compose_navigation","width":575,"height":132,"x":555.95215,"y":1335.943,"touch_down_time":11563162,"touch_up_time":11563215},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"45367194-17fb-420e-bbc9-4cd2d2593f36","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:19.67800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"5071e0d5-69ae-42b7-b00f-d47ca21d325f","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:07.99300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32689,"total_pss":94715,"rss":181256,"native_total_heap":22780,"native_free_heap":1036,"interval":2019},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"55b05517-a784-4817-9d9f-affb5d8835cf","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:16.79500000Z","type":"gesture_click","gesture_click":{"target":"androidx.compose.ui.platform.AndroidComposeView","target_id":null,"width":null,"height":null,"x":124.98047,"y":285.96863,"touch_down_time":11564177,"touch_up_time":11564242},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"74111702-366b-431c-ba24-3a865241764b","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:12.80900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1155003,"uptime":11560263,"utime":60,"cutime":0,"cstime":0,"stime":58,"interval":3007,"percentage_usage":2.0},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"763a7ac0-1fd5-44b5-ac27-9267b0ca4db9","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:09.80200000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1155003,"uptime":11557256,"utime":58,"cutime":0,"cstime":0,"stime":54,"interval":3003,"percentage_usage":1.6666666666666667},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"78832eb5-695a-41f2-980d-0c84aafbfabe","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:15.79800000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"78c8d646-dea9-4679-87cf-42be66cd4ba5","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:16.79500000Z","type":"navigation","navigation":{"source":"androidx-navigation","from":"home","to":"checkout"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"7a09baf2-414f-45c1-8324-dee879a83d6f","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:14.81400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"7a7174c0-9037-4c57-812a-5aad9a2db4d6","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:17.55100000Z","type":"navigation","navigation":{"source":"androidx-navigation","from":"checkout","to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"7edf31b8-dc31-4c23-a88a-2d3b2b516eae","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:06.79900000Z","type":"cpu_usage","cpu_usage":{"num_cores":1,"clock_speed":100,"start_time":1155003,"uptime":11554253,"utime":56,"cutime":0,"cstime":0,"stime":51,"interval":3004,"percentage_usage":13.999999999999998},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"7f078406-085c-4a9d-947b-ea0a207ffbd2","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:19.67000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"827e8f01-5fc7-4acd-ba5a-c5dfc0392628","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:15.44000000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"destroyed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"84a4995c-8a28-42b6-bccf-af80f32555fe","session_id":"b865efff-d4eb-4ccd-b483-9be490a5d773","user_triggered":false,"timestamp":"2024-07-25T07:26:04.33100000Z","type":"app_exit","app_exit":{"reason":"ANR","importance":"FOREGROUND","trace":"DALVIK THREADS (26):\n\"main\" prio=5 tid=1 Runnable\n at sh.measure.sample.ExceptionDemoActivity.infiniteLoop(ExceptionDemoActivity.kt:62)\n at sh.measure.sample.ExceptionDemoActivity.onCreate$lambda$4(ExceptionDemoActivity.kt:39)\n at sh.measure.sample.ExceptionDemoActivity.$r8$lambda$POUHF0-oHHqtPnqvf7LuUGjXulw(unavailable:0)\n at sh.measure.sample.ExceptionDemoActivity$$ExternalSyntheticLambda8.onClick(D8$$SyntheticClass:0)\n at android.view.View.performClick(View.java:7506)\n at com.google.android.material.button.MaterialButton.performClick(MaterialButton.java:1218)\n at android.view.View.performClickInternal(View.java:7483)\n at android.view.View.-$$Nest$mperformClickInternal(unavailable:0)\n at android.view.View$PerformClick.run(View.java:29334)\n at android.os.Handler.handleCallback(Handler.java:942)\n at android.os.Handler.dispatchMessage(Handler.java:99)\n at android.os.Looper.loopOnce(Looper.java:201)\n at android.os.Looper.loop(Looper.java:288)\n at android.app.ActivityThread.main(ActivityThread.java:7872)\n at java.lang.reflect.Method.invoke(Native method)\n at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)\n at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)\n\n\"msr-export\" prio=5 tid=22 Runnable\n at java.util.ArrayList$Itr.next(ArrayList.java:859)\n at kotlin.text.StringsKt__IndentKt.replaceIndent(Indent.kt:176)\n at kotlin.text.StringsKt__IndentKt.trimIndent(Indent.kt:65)\n at sh.measure.android.storage.Sql.getEventsForIds(DbConstants.kt:159)\n at sh.measure.android.storage.DatabaseImpl.getEventPackets(Database.kt:316)\n at sh.measure.android.exporter.EventExporterImpl.export(EventExporter.kt:41)\n at sh.measure.android.exporter.ExceptionExporterImpl.export$lambda$1(ExceptionExporter.kt:25)\n at sh.measure.android.exporter.ExceptionExporterImpl.$r8$lambda$e1EnLygEG-cik8KwN3-vAcV0RCY(unavailable:0)\n at sh.measure.android.exporter.ExceptionExporterImpl$$ExternalSyntheticLambda0.call(D8$$SyntheticClass:0)\n at java.util.concurrent.FutureTask.run(FutureTask.java:264)\n at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:307)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"Signal Catcher\" daemon prio=10 tid=2 Runnable\n native: #00 pc 000000000053a6e0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #01 pc 00000000006f0e84 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool, BacktraceMap*, bool) const+236) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000006fe710 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+208) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000364248 /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+440) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000006fceb0 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026, bool)+280) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000006fc8a4 /apex/com.android.art/lib64/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+292) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006d5974 /apex/com.android.art/lib64/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream\u003cchar, std::__1::char_traits\u003cchar\u003e \u003e\u0026)+184) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006e1a20 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::HandleSigQuit()+468) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 0000000000574230 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+264) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #09 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #10 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"ADB-JDWP Connection Control Thread\" daemon prio=0 tid=4 WaitingInMainDebuggerLoop\n native: #00 pc 00000000000a34b8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005dc1c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000099e4 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #03 pc 00000000000080ac /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1320) (BuildId: 3952e992b55a158a16b3d569cf8894e7)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"perfetto_hprof_listener\" prio=10 tid=5 Native (still starting up)\n native: #00 pc 00000000000a20f4 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000001d840 /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, ArtPlugin_Initialize::$_34\u003e \u003e(void*)+260) (BuildId: 525cc92a7dc49130157aeb74f6870364)\n native: #02 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Jit thread pool worker thread 0\" daemon prio=5 tid=6 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000047cc80 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 00000000004a9390 /apex/com.android.art/lib64/libart-compiler.so (art::OptimizingCompiler::JitCompile(art::Thread*, art::jit::JitCodeCache*, art::jit::JitMemoryRegion*, art::ArtMethod*, art::CompilationKind, art::jit::JitLogger*)+2968) (BuildId: 70657183580aee5e937c0bae4a70d0bf)\n native: #03 pc 000000000022e8d8 /apex/com.android.art/lib64/libart-compiler.so (art::jit::JitCompiler::CompileMethod(art::Thread*, art::jit::JitMemoryRegion*, art::ArtMethod*, art::CompilationKind)+260) (BuildId: 70657183580aee5e937c0bae4a70d0bf)\n native: #04 pc 00000000004d3720 /apex/com.android.art/lib64/libart.so (art::jit::Jit::CompileMethod(art::ArtMethod*, art::Thread*, art::CompilationKind, bool)+360) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #05 pc 00000000004d2fb8 /apex/com.android.art/lib64/libart.so (art::jit::JitCompileTask::Run(art::Thread*)+176) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #06 pc 00000000006199c0 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+100) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #07 pc 00000000006198c4 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+160) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #08 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #09 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"HeapTaskDaemon\" daemon prio=5 tid=7 WaitingForTaskProcessor\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000046cf20 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+196) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 000000000046ce10 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n at dalvik.system.VMRuntime.runHeapTasks(Native method)\n at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ReferenceQueueDaemon\" daemon prio=5 tid=8 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x08867716\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.Object.wait(Object.java:568)\n at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)\n - locked \u003c0x08867716\u003e (a java.lang.Class\u003cjava.lang.ref.ReferenceQueue\u003e)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerDaemon\" daemon prio=5 tid=9 Waiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0a8d9897\u003e (a java.lang.Object)\n at java.lang.Object.wait(Object.java:442)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)\n - locked \u003c0x0a8d9897\u003e (a java.lang.Object)\n at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)\n at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"FinalizerWatchdogDaemon\" daemon prio=5 tid=10 Sleeping\n at java.lang.Thread.sleep(Native method)\n - sleeping on \u003c0x0e922a84\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:450)\n - locked \u003c0x0e922a84\u003e (a java.lang.Object)\n at java.lang.Thread.sleep(Thread.java:355)\n at java.lang.Daemons$FinalizerWatchdogDaemon.sleepForNanos(Daemons.java:438)\n at java.lang.Daemons$FinalizerWatchdogDaemon.waitForProgress(Daemons.java:480)\n at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:369)\n at java.lang.Daemons$Daemon.run(Daemons.java:140)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"binder:7330_1\" prio=5 tid=11 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:7330_2\" prio=5 tid=12 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:7330_3\" prio=5 tid=13 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:7330_4\" prio=5 tid=14 Native\n native: #00 pc 00000000000a23d8 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000005b50c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 0000000000094690 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #03 pc 0000000000094540 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: ee18e52b95e38eaab55a9a48518c8c3b)\n native: #04 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #05 pc 00000000000c8918 /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: a31474ac581b716d4588f8c97eb06009)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Profile Saver\" daemon prio=5 tid=15 Native\n native: #00 pc 000000000004df60 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 000000000048771c /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #02 pc 000000000054380c /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #03 pc 0000000000538fc0 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+148) (BuildId: e24a1818231cfb1649cb83a5d2869598)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"LeakCanary-Heap-Dump\" prio=5 tid=16 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"msr-default\" prio=5 tid=17 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1188)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"msr-io\" prio=5 tid=18 Waiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1176)\n at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:905)\n at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"ConnectivityThread\" prio=5 tid=19 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"queued-work-looper\" prio=5 tid=20 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000015a56c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: a31474ac581b716d4588f8c97eb06009)\n at android.os.MessageQueue.nativePollOnce(Native method)\n at android.os.MessageQueue.next(MessageQueue.java:335)\n at android.os.Looper.loopOnce(Looper.java:161)\n at android.os.Looper.loop(Looper.java:288)\n at android.os.HandlerThread.run(HandlerThread.java:67)\n\n\"RenderThread\" daemon prio=7 tid=21 Native\n native: #00 pc 00000000000a33b8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000010dfc /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #02 pc 000000000057c4c0 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+220) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #03 pc 00000000000148e8 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 5a0d720732600c94ad8354a1188e9f52)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Okio Watchdog\" daemon prio=5 tid=23 TimedWaiting\n at jdk.internal.misc.Unsafe.park(Native method)\n - waiting on an unknown object\n at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)\n at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2211)\n at okio.AsyncTimeout$Companion.awaitTimeout(AsyncTimeout.kt:358)\n at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.kt:211)\n\n\"OkHttp TaskRunner\" daemon prio=5 tid=24 TimedWaiting\n at java.lang.Object.wait(Native method)\n - waiting on \u003c0x0348826d\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at okhttp3.internal.concurrent.TaskRunner$RealBackend.coordinatorWait(TaskRunner.kt:294)\n at okhttp3.internal.concurrent.TaskRunner.awaitTaskToRun(TaskRunner.kt:218)\n at okhttp3.internal.concurrent.TaskRunner$runnable$1.run(TaskRunner.kt:59)\n - locked \u003c0x0348826d\u003e (a okhttp3.internal.concurrent.TaskRunner)\n at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)\n at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)\n at java.lang.Thread.run(Thread.java:1012)\n\n\"hwuiTask1\" daemon prio=6 tid=25 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"hwuiTask0\" daemon prio=6 tid=26 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 0000000000250af8 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #05 pc 0000000000250d5c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #06 pc 0000000000250c9c /system/lib64/libhwui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, android::uirenderer::CommonPool::CommonPool()::$_0\u003e \u003e(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 5e787210ce0f171dbee073e4a14a376c)\n native: #07 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #08 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"Thread-2\" prio=10 tid=3 Native\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 000000000005f868 /apex/com.android.runtime/lib64/bionic/libc.so (sem_wait+108) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 0000000000001cb8 /data/app/~~KTLcXqDe3LsS-Y22KWpPbg==/sh.measure.sample-J-KKlUXdPXuR1TUdSD6drw==/lib/arm64/libmeasure-ndk.so (???) (BuildId: e23ee0345219016604eb133e4854624c44e96941)\n native: #04 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #05 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n (no managed stack frames)\n\n\"binder:7330_1\" prio=5 (not attached)\n native: #00 pc 000000000004df5c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #01 pc 0000000000052664 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #02 pc 00000000000b56cc /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+76) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #03 pc 00000000000699e0 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock\u003cstd::__1::mutex\u003e\u0026)+20) (BuildId: 6ae0290e5bfb8abb216bde2a4ee48d9e)\n native: #04 pc 00000000000a048c /system/lib64/libgui.so (android::AsyncWorker::run()+112) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #05 pc 00000000000a0878 /system/lib64/libgui.so (void* std::__1::__thread_proxy\u003cstd::__1::tuple\u003cstd::__1::unique_ptr\u003cstd::__1::__thread_struct, std::__1::default_delete\u003cstd::__1::__thread_struct\u003e \u003e, void (android::AsyncWorker::*)(), android::AsyncWorker*\u003e \u003e(void*)+80) (BuildId: 383a37b5342fd0249afb25e7134deb33)\n native: #06 pc 00000000000b63b0 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n native: #07 pc 00000000000530b8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 01331f74b0bb2cb958bdc15282b8ec7b)\n\n----- end 7330 -----\n","process_name":"sh.measure.sample","pid":"7330"},"attachments":null,"attribute":{"thread_name":"msr-io","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"8d4c0dcb-1974-4f42-b46c-73292c6ac2df","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:13.52700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ExceptionDemoActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"d60b1194-cb33-44f5-b252-5bb9dedefe38","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:14.80400000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"paused","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"e1190696-d00b-4e0d-b9d7-98667b29df94","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:15.81700000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"created","class_name":"sh.measure.sample.ComposeNavigationActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"e85b0c5e-498e-4720-840c-9d178f27e9d5","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:15.88200000Z","type":"navigation","navigation":{"source":"androidx-navigation","from":null,"to":"home"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"ee859096-7f9b-470c-b277-d609358dd885","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:13.59600000Z","type":"lifecycle_activity","lifecycle_activity":{"type":"resumed","class_name":"sh.measure.sample.ComposeActivity"},"attachments":null,"attribute":{"thread_name":"main","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"fe06ada7-3e23-4d38-8d1f-fccae569928d","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:12.03100000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":49152,"java_free_heap":32517,"total_pss":95349,"rss":181908,"native_total_heap":22780,"native_free_heap":1039,"interval":2018},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}},{"id":"fe499ecd-40db-4553-9a15-b0aabc4d6865","session_id":"e19be4bf-0896-42bf-a4a0-ba4529c57f1e","user_triggered":false,"timestamp":"2024-07-25T07:26:14.04300000Z","type":"memory_usage","memory_usage":{"java_max_heap":196608,"java_total_heap":9926,"java_free_heap":2582,"total_pss":89697,"rss":173852,"native_total_heap":23804,"native_free_heap":1692,"interval":2020},"attachments":null,"attribute":{"thread_name":"msr-default","user_id":null,"device_name":"emu64a","device_model":"sdk_gphone64_arm64","device_manufacturer":"Google","device_type":"phone","device_is_foldable":true,"device_is_physical":false,"device_density_dpi":440,"device_width_px":1080,"device_height_px":2154,"device_density":2.75,"device_locale":"en-US","os_name":"android","os_version":"33","platform":"android","app_version":"1.0","app_build":"1","app_unique_id":"sh.measure.sample","measure_sdk_version":"0.3.0","installation_id":"5a880181-0aef-499b-815a-224a8925c0ae","network_type":"wifi","network_generation":"unknown","network_provider":"unknown"}}] \ No newline at end of file From 329a4f1119dbee294f0a0550f8c4502f527c2b80 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 14:18:58 +0530 Subject: [PATCH 12/14] refactor(backend): improve interval calculation function for cpu and memory usage collectors --- .../android/performance/CpuUsageCollector.kt | 9 +++------ .../android/performance/MemoryUsageCollector.kt | 15 ++++++++++----- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt index ce63938d1..98c527f6d 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/CpuUsageCollector.kt @@ -89,13 +89,10 @@ internal class CpuUsageCollector( } private fun getInterval(uptime: Long): Long { - return if (prevCpuUsageData != null) { - uptime - prevCpuUsageData!!.uptime - } else { - 0 - } + return prevCpuUsageData?.let { + (uptime - it.uptime).coerceAtLeast(0) + } ?: 0 } - private fun getPercentageCpuUsage( utime: Long, stime: Long, diff --git a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt index d3479f012..19f327eee 100644 --- a/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt +++ b/measure-android/measure/src/main/java/sh/measure/android/performance/MemoryUsageCollector.kt @@ -51,11 +51,7 @@ internal class MemoryUsageCollector( } private fun trackMemoryUsage() { - val interval = if (previousMemoryUsageReadTimeMs != 0L) { - timeProvider.elapsedRealtime - previousMemoryUsageReadTimeMs - } else { - 0 - } + val interval = getInterval() previousMemoryUsageReadTimeMs = timeProvider.elapsedRealtime val data = MemoryUsageData( @@ -75,4 +71,13 @@ internal class MemoryUsageCollector( ) previousMemoryUsage = data } + + private fun getInterval(): Long { + val currentTime = timeProvider.elapsedRealtime + return if (previousMemoryUsageReadTimeMs != 0L) { + (currentTime - previousMemoryUsageReadTimeMs).coerceAtLeast(0) + } else { + 0 + } + } } From b9dacff73a385f4abc37f34e3f055b890ed5fe93 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 14:28:36 +0530 Subject: [PATCH 13/14] fix(backend): update memory usage struct --- measure-backend/measure-go/event/event.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/measure-backend/measure-go/event/event.go b/measure-backend/measure-go/event/event.go index ec60f3191..90271ab85 100644 --- a/measure-backend/measure-go/event/event.go +++ b/measure-backend/measure-go/event/event.go @@ -313,7 +313,7 @@ type MemoryUsage struct { RSS uint64 `json:"rss"` NativeTotalHeap uint64 `json:"native_total_heap" binding:"required"` NativeFreeHeap uint64 `json:"native_free_heap" binding:"required"` - Interval uint32 `json:"config" binding:"required"` + Interval uint32 `json:"interval" binding:"required"` } type LowMemory struct { From e388e9503aaa8d68ee846821b22a4ef184fe0936 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Thu, 25 Jul 2024 15:20:30 +0530 Subject: [PATCH 14/14] docs(android): update CPU usage calculation doc --- .../docs/features/feature_cpu_monitoring.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/measure-android/docs/features/feature_cpu_monitoring.md b/measure-android/docs/features/feature_cpu_monitoring.md index d22940fb9..66893ea7a 100644 --- a/measure-android/docs/features/feature_cpu_monitoring.md +++ b/measure-android/docs/features/feature_cpu_monitoring.md @@ -24,9 +24,15 @@ we are interested only in the following: 4. cstime - Amount of time that this process's waited-for children have been scheduled in kernel mode, measured in clock ticks. -The total time spent by the application in a given interval is calculated using: +The average %CPU usage by the application in a given interval is calculated using: -$\frac{{utime + stime + cutime + cstime}}{{clock\ speed \times interval \times number\ of\ cores}}$ +$\frac{{(utime - prev.utime) + (stime - prev.stime) + (cutime - prev.cutime) + (cstime - prev.cstime)}}{{clock\ speed \times interval \times number\ of\ cores}}$ + +Where: +* `prev.utime`, `prev.stime`, `prev.cutime`, `prev.cstime` are values from the previous event collected. +* `interval` is the time between two consecutive `cpu_usage` events. + +Note that the first event will have the CPU usage as 0 as there is no previous event to compare with. ## Data collected